/* ========================================
   CSS Variables - WestLotto Brand Colors
======================================== */
:root {
    --primary-lime: #32cd32;
    --primary-lime-hover: #28a428;
    --primary-yellow: #ffd700;
    --primary-teal: #008b8b;
    --primary-red: #dc143c;
    --heading-green: #228b22;
    --hero-gradient: linear-gradient(135deg, #32cd32 0%, #228b22 50%, #006400 100%);
    --bonus-gradient: linear-gradient(135deg, #2d7a5e 0%, #1e5f4a 50%, #0d4735 100%);
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --text-dark: #000000;
    --text-light: #333333;
    --text-muted: #666666;
    --footer-bg: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 25px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 30px;
    --transition: all 0.3s ease;
}

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* ========================================
   Container
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header
======================================== */
.header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-lime);
    background: rgba(50, 205, 50, 0.08);
}

.nav-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    cursor: pointer;
}

.country-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-lime);
    color: var(--primary-lime);
}

.btn-outline:hover {
    background: var(--primary-lime);
    color: white;
}

.btn-primary {
    background: var(--primary-lime);
    border-color: var(--primary-lime);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-lime-hover);
    border-color: var(--primary-lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span {
    display: none;
}

.burger-menu.active::before {
    content: '\2715';
    font-size: 28px;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1;
}

/* ========================================
   Breadcrumbs
======================================== */
.breadcrumbs {
    background: var(--bg-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumbs-item:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--text-muted);
}

.breadcrumbs-item a:hover {
    color: var(--primary-lime);
}

.breadcrumbs-item.active span {
    color: var(--text-dark);
    font-weight: 500;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    background: var(--hero-gradient);
    min-height: 25vh;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 25vh;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 550px;
    color: white;
    z-index: 2;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-rating-score {
    font-size: 24px;
    font-weight: 700;
}

.hero-rating-stars {
    display: flex;
    gap: 5px;
}

.hero-rating-stars span {
    font-size: 20px;
}

.hero-badge {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-btn {
    display: inline-block;
    background: white;
    color: var(--text-dark);
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    transition: var(--transition);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-disclaimer {
    font-size: 12px;
    opacity: 0.8;
}

.hero-disclaimer a {
    text-decoration: underline;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50%;
    z-index: 1;
}

.hero-image img {
    max-height: 100%;
    object-fit: contain;
}

/* Hero Home (main page unique hero) */
.hero-home {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.85) 0%, rgba(34, 139, 34, 0.9) 50%, rgba(0, 100, 0, 0.95) 100%);
}

.hero-home-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-bonus-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-home-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-home-title-styled {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-feature svg {
    opacity: 0.8;
}

.hero-rating-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-rating-box .hero-rating-score {
    font-size: 22px;
    font-weight: 800;
}

.hero-rating-box .hero-rating-stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
    font-size: 18px;
}

.hero-rating-box .hero-rating-text {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Hero Compact (for inner pages) */
.hero-compact {
    min-height: auto;
    padding: 50px 0;
}

.hero-compact .hero-inner {
    min-height: auto;
    padding: 30px 20px;
}

.hero-compact .hero-title {
    font-size: 36px;
    margin-bottom: 15px;
}

/* ========================================
   Content Section
======================================== */
.content-section {
    padding: 30px 0;
}

.content-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.content-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--heading-green);
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.3;
}

.qa-question {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-green);
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.qa-question:first-of-type {
    margin-top: 0;
}

.content-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-text:last-child {
    margin-bottom: 0;
}

/* Content Buttons */
.content-btn-wrap {
    text-align: center;
    margin: 30px 0;
}

.content-btn {
    display: inline-block;
    background: var(--primary-lime);
    color: white;
    padding: 15px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

.content-btn:hover {
    background: var(--primary-lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.5);
}

/* ========================================
   Bonus CTA Section (New Design)
======================================== */
.bonus-cta-new {
    margin: 30px 0;
}

.bonus-cta-grid {
    background: linear-gradient(135deg, #2d7a5e 0%, #1e5f4a 50%, #0d4735 100%);
    border-radius: var(--radius-md);
    padding: 50px 30px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bonus-cta-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-cta-grid::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-cta-col {
    color: white;
    text-align: center;
    z-index: 2;
}

.bonus-cta-icon {
    margin-bottom: 15px;
    opacity: 0.9;
}

.bonus-cta-icon svg {
    stroke: white;
}

.bonus-cta-col-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.bonus-cta-col-text {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
}

.bonus-cta-center {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px 0;
}

.bonus-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bonus-cta-main-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.bonus-cta-amount-big {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.bonus-cta-plus {
    font-size: 28px;
    font-weight: 300;
    margin: 5px 0;
    opacity: 0.8;
}

.bonus-cta-spins {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.bonus-cta-btn-new {
    display: inline-block;
    background: var(--primary-lime);
    color: white;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(50, 205, 50, 0.5);
}

.bonus-cta-btn-new:hover {
    background: var(--primary-lime-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(50, 205, 50, 0.6);
}

.bonus-cta-disclaimer {
    font-size: 12px;
    opacity: 0.7;
}

.bonus-cta-disclaimer a {
    color: white;
    text-decoration: underline;
}

/* Old Bonus CTA (keep for compatibility) */
.bonus-cta {
    margin: 30px 0;
}

.bonus-cta-inner {
    background: var(--bonus-gradient);
    border-radius: var(--radius-md);
    padding: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bonus-cta-content {
    max-width: 450px;
    color: white;
    z-index: 2;
}

.bonus-cta-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bonus-cta-amount {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.bonus-cta-btn {
    display: inline-block;
    background: var(--primary-lime);
    color: white;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 15px;
    transition: var(--transition);
}

.bonus-cta-btn:hover {
    background: var(--primary-lime-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.5);
}

.bonus-cta-image {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 45%;
    z-index: 1;
}

/* ========================================
   Tables (.table-wr)
======================================== */
.table-wr {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    -webkit-overflow-scrolling: touch;
}

.table-wr table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    min-width: 600px;
}

.table-wr thead {
    background: var(--hero-gradient);
}

.table-wr thead tr {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.table-wr th {
    background: transparent;
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.table-wr th:first-child {
    border-radius: var(--radius-md) 0 0 0;
}

.table-wr th:last-child {
    border-radius: 0 var(--radius-md) 0 0;
}

.table-wr td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
}

.table-wr tr:last-child td {
    border-bottom: none;
}

.table-wr tr:last-child td:first-child {
    border-radius: 0 0 0 var(--radius-md);
}

.table-wr tr:last-child td:last-child {
    border-radius: 0 0 var(--radius-md) 0;
}

.table-wr tbody tr:nth-child(even) {
    background: #f9f9fb;
}

.table-wr tbody tr:hover {
    background: #f0f0f5;
}

/* ========================================
   FAQ Section
======================================== */
.faq-section {
    padding: 30px 0;
}

.faq-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--heading-green);
    text-transform: uppercase;
    margin-bottom: 25px;
    text-align: center;
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-light);
}

.faq-question {
    padding: 20px 55px 20px 25px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-lime);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-lime);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ========================================
   Bonus Cards
======================================== */
.bonus-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.bonus-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: var(--transition);
}

.bonus-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.bonus-card-content {
    flex: 1;
}

.bonus-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-green);
    margin-bottom: 8px;
}

.bonus-card-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.bonus-card-desc {
    font-size: 14px;
    color: var(--text-light);
}

.bonus-card-btn {
    flex-shrink: 0;
}

/* ========================================
   Inline Bonus Cards (in content)
======================================== */
.bonus-inline-card {
    background: var(--bonus-gradient);
    border-radius: var(--radius-md);
    padding: 25px 30px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.bonus-inline-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.bonus-inline-content {
    flex: 1;
    color: white;
}

.bonus-inline-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.bonus-inline-amount {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.bonus-inline-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

.bonus-inline-btn {
    flex-shrink: 0;
}

.bonus-inline-btn .content-btn {
    background: white;
    color: var(--text-dark);
    font-weight: 700;
}

.bonus-inline-btn .content-btn:hover {
    background: var(--primary-lime);
    color: white;
}

/* ========================================
   App Download Cards
======================================== */
.app-download-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.app-download-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-lime);
    transform: translateY(-3px);
}

.app-download-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-gradient);
    border-radius: var(--radius-md);
}

.app-download-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.app-download-content {
    flex: 1;
}

.app-download-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-green);
    margin-bottom: 8px;
}

.app-download-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.app-download-btn {
    flex-shrink: 0;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 50px 0 30px;
    margin-top: 50px;
}

.footer-inner {
    text-align: center;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-payments {
    margin-bottom: 30px;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-icon {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.payment-icon:hover {
    opacity: 1;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-icon {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

.badge-18 {
    height: 35px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-lime);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Responsive Design
======================================== */

/* Tablet */
@media (max-width: 992px) {
    .header-inner {
        padding: 15px 20px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-home-title {
        font-size: 42px;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .hero-image {
        max-width: 45%;
        opacity: 0.8;
    }
    
    .content-card {
        padding: 30px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .bonus-cta-inner {
        padding: 40px;
    }
    
    .bonus-cta-title {
        font-size: 26px;
    }
    
    .bonus-cta-amount {
        font-size: 22px;
    }
    
    .bonus-cta-grid {
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 20px;
        padding: 40px 20px;
    }
    
    .bonus-cta-amount-big {
        font-size: 44px;
    }
    
    .bonus-cta-spins {
        font-size: 22px;
    }
    
    .bonus-cta-col-title {
        font-size: 16px;
    }
    
    .bonus-cta-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-inner {
        padding: 12px 15px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .header-actions {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-rating {
        justify-content: center;
    }
    
    .hero-home-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .hero-feature {
        font-size: 12px;
    }
    
    .hero-rating-box {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 10px 20px;
    }
    
    .hero-rating-box .hero-rating-score {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        padding: 14px 35px;
        font-size: 14px;
    }
    
    .hero-image {
        position: relative;
        max-width: 80%;
        margin-top: 30px;
        transform: none;
        right: auto;
        top: auto;
        opacity: 1;
    }
    
    .content-section {
        padding: 20px 0;
    }
    
    .content-card {
        padding: 25px 20px;
        border-radius: var(--radius-sm);
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .bonus-cta {
        margin: 20px 0;
    }
    
    .bonus-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .bonus-cta-content {
        max-width: 100%;
    }
    
    .bonus-cta-title {
        font-size: 22px;
    }
    
    .bonus-cta-amount {
        font-size: 20px;
    }
    
    .bonus-cta-image {
        position: relative;
        max-width: 80%;
        margin-top: 25px;
        transform: none;
        right: auto;
        top: auto;
    }
    
    .bonus-cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px 25px;
    }
    
    .bonus-cta-col {
        order: 2;
    }
    
    .bonus-cta-center {
        order: 1;
    }
    
    .bonus-cta-left {
        order: 2;
    }
    
    .bonus-cta-right {
        order: 3;
    }
    
    .bonus-cta-amount-big {
        font-size: 48px;
    }
    
    .bonus-cta-spins {
        font-size: 24px;
    }
    
    .bonus-cta-col-text {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .faq-title {
        font-size: 22px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 18px 45px 18px 20px;
    }
    
    .bonus-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .bonus-inline-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .bonus-inline-btn {
        width: 100%;
    }
    
    .bonus-inline-btn .content-btn {
        width: 100%;
    }
    
    .app-download-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .app-download-btn {
        width: 100%;
    }
    
    .app-download-btn .content-btn {
        width: 100%;
    }
    
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-badges {
        gap: 15px;
    }
    
    .badge-icon {
        height: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-home-title {
        font-size: 26px;
    }
    
    .hero-bonus-badge {
        font-size: 12px;
        padding: 6px 18px;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        text-align: left;
    }
    
    .hero-btn {
        padding: 12px 35px;
        font-size: 14px;
    }
    
    .content-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .bonus-cta-btn {
        padding: 12px 35px;
        font-size: 14px;
    }
    
    .table-wr {
        margin: 20px -20px;
        border-radius: 0;
    }
}

/* ========================================
   Utility Classes
======================================== */
.text-center {
    text-align: center;
}

.text-orange {
    color: var(--primary-lime);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}
