/* ==========================================================================
   XON BET CASINO - COMPLETE CSS
   Full static export - All pages supported
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Orbitron:wght@500;600;700;800;900&display=swap');

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

/* ==========================================================================
   CSS VARIABLES (Design Tokens)
   ========================================================================== */
:root {
    /* Dark casino background palette */
    --background: hsl(230, 25%, 7%);
    --foreground: hsl(45, 20%, 95%);
    
    /* Card surfaces */
    --card: hsl(230, 25%, 10%);
    --card-foreground: hsl(45, 20%, 95%);
    
    /* Popover/Dropdown */
    --popover: hsl(230, 25%, 12%);
    --popover-foreground: hsl(45, 20%, 95%);
    
    /* Primary - Gold/Amber accent */
    --primary: hsl(43, 96%, 56%);
    --primary-foreground: hsl(230, 25%, 7%);
    
    /* Secondary - Deep blue */
    --secondary: hsl(220, 60%, 18%);
    --secondary-foreground: hsl(45, 20%, 95%);
    
    /* Muted */
    --muted: hsl(230, 20%, 15%);
    --muted-foreground: hsl(220, 15%, 55%);
    
    /* Accent - Cyan glow */
    --accent: hsl(190, 95%, 50%);
    --accent-foreground: hsl(230, 25%, 7%);
    
    /* Destructive */
    --destructive: hsl(0, 72%, 51%);
    --destructive-foreground: hsl(0, 0%, 100%);
    
    /* Borders */
    --border: hsl(230, 20%, 18%);
    --input: hsl(230, 20%, 15%);
    --ring: hsl(43, 96%, 56%);
    
    /* Custom tokens */
    --gold: hsl(43, 96%, 56%);
    --gold-light: hsl(45, 100%, 65%);
    --gold-dark: hsl(40, 90%, 45%);
    --cyan: hsl(190, 95%, 50%);
    --navy: hsl(230, 25%, 7%);
    --navy-light: hsl(230, 25%, 12%);
    --green: hsl(142, 76%, 45%);
    --orange: hsl(25, 95%, 53%);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, hsl(43, 96%, 56%), hsl(45, 100%, 65%));
    
    /* Shadows */
    --shadow-gold: 0 0 30px hsla(43, 96%, 56%, 0.3);
    --shadow-card: 0 8px 32px hsla(0, 0%, 0%, 0.4);
    
    --radius: 0.75rem;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary);
}

p {
    margin-bottom: 1rem;
}

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

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

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.text-green {
    color: var(--green);
}

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

/* ==========================================================================
   CARD CASINO (Base card component)
   ========================================================================== */
.card-casino {
    background: linear-gradient(145deg, hsl(230, 25%, 12%) 0%, hsl(230, 25%, 8%) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    box-shadow: 0 0 40px hsla(43, 96%, 56%, 0.5);
    transform: translateY(-2px);
    color: var(--primary-foreground);
}

.btn-gold-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-gold-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-hero {
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: var(--shadow-gold);
}

.btn-hero:hover {
    box-shadow: 0 0 50px hsla(43, 96%, 56%, 0.6);
    transform: translateY(-3px);
    color: var(--primary-foreground);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: hsla(230, 25%, 7%, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 1rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);
}

/* Desktop Navigation */
.header-nav {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--foreground);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: hsla(43, 96%, 56%, 0.1);
}

.nav-link.active {
    color: var(--primary);
    background: hsla(43, 96%, 56%, 0.15);
}

/* Header Right */
.header-right {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-right {
        display: flex;
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--muted);
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--foreground);
}

.lang-btn.active {
    background: var(--card);
    color: var(--primary);
}

.lang-flag {
    font-size: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: var(--muted);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon, .close-icon {
    width: 24px;
    height: 24px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav.active,
.mobile-nav.open {
    display: flex;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    padding: 0.75rem 1rem;
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: hsla(43, 96%, 56%, 0.1);
    color: var(--primary);
}

.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.mobile-lang {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-lang-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ==========================================================================
   HERO SECTION (Homepage)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/img/casino-slots.jpg') center/cover no-repeat;
    opacity: 0.3;
}

/* ==========================================================================
   IMAGE GALLERY & CONTENT IMAGES
   ========================================================================== */
.content-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .content-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-image-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px hsla(0, 0%, 0%, 0.5);
}

.content-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-image-card:hover img {
    transform: scale(1.05);
}

.content-image-card figcaption {
    padding: 1rem;
    background: var(--card);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
}

/* Feature Image Block */
.feature-image-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

@media (min-width: 768px) {
    .feature-image-block {
        flex-direction: row;
        align-items: center;
    }
    
    .feature-image-block.reverse {
        flex-direction: row-reverse;
    }
}

.feature-image-block img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .feature-image-block img {
        width: 280px;
    }
}

.feature-image-content {
    flex: 1;
}

.feature-image-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.feature-image-content p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Promo Image */
.promo-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius);
    margin: 2rem auto;
    display: block;
    box-shadow: 0 10px 40px hsla(0, 0%, 0%, 0.4);
}

/* Gallery Section */
.gallery-section {
    padding: 3rem 0;
    background: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, hsla(230, 25%, 7%, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Inline Image with Text */
.inline-image-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: center;
}

@media (min-width: 640px) {
    .inline-image-text {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .inline-image-text.reverse {
        flex-direction: row-reverse;
    }
}

.inline-image-text img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.inline-image-text .text-content {
    flex: 1;
}

.inline-image-text .text-content p {
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, hsla(230, 25%, 7%, 0.6) 0%, hsla(230, 25%, 7%, 0.95) 100%);
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.hero-glow-1 {
    top: 10%;
    left: 10%;
    background: var(--primary);
}

.hero-glow-2 {
    bottom: 10%;
    right: 10%;
    background: var(--accent);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    color: var(--primary);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Hero Bonus Card */
.hero-bonus-card {
    display: inline-block;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid hsla(43, 96%, 56%, 0.3);
}

.bonus-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.bonus-card-header svg {
    color: var(--primary);
}

.bonus-card-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .bonus-card-value {
        font-size: 2rem;
    }
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

/* Hero Trust Items */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.trust-check {
    color: var(--green);
}

/* ==========================================================================
   PAGE HERO (Subpages)
   ========================================================================== */
.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, var(--popover) 0%, var(--background) 100%);
}

.page-hero-center {
    text-align: center;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .page-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-hero-content {
    text-align: center;
}

@media (min-width: 768px) {
    .page-hero-content {
        text-align: left;
    }
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 2.75rem;
    }
}

.page-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .page-subtitle {
        font-size: 1.125rem;
    }
}

/* Login Form Card */
.login-form-card {
    padding: 2rem;
    text-align: center;
}

.login-icon {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.form-field svg {
    color: var(--muted-foreground);
    flex-shrink: 0;
}

.form-field input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--foreground);
}

.form-field input::placeholder {
    color: var(--muted-foreground);
}

/* App Phone Wrapper */
.app-phone-wrapper {
    display: flex;
    justify-content: center;
}

.app-phone-image {
    max-width: 280px;
    border-radius: 24px;
    box-shadow: 0 20px 60px hsla(0, 0%, 0%, 0.5);
}

@media (min-width: 768px) {
    .app-phone-image {
        max-width: 320px;
    }
}

/* ==========================================================================
   TABLE OF CONTENTS
   ========================================================================== */
.toc {
    max-width: 800px;
    margin: -2rem auto 3rem;
    padding: 1.5rem;
    position: relative;
    z-index: 10;
}

.toc-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.toc-icon {
    font-size: 1.25rem;
}

.toc-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    list-style: none;
}

@media (min-width: 640px) {
    .toc-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.toc-link:hover {
    color: var(--primary);
    background: hsla(43, 96%, 56%, 0.1);
}

.toc-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================================================
   CONTENT SECTION
   ========================================================================== */
.content-section {
    padding: 3rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.intro-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
}

.intro-text {
    font-size: 1rem;
    color: var(--foreground);
    line-height: 1.7;
    margin-bottom: 0;
}

.intro-author {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
    margin-bottom: 0;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 1.75rem;
    }
}

/* Content Images */
.content-image-wrapper {
    margin: 2rem 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.content-image {
    width: 100%;
    border-radius: var(--radius);
}

.content-image-short {
    max-height: 250px;
    object-fit: cover;
}

.content-image-small {
    max-width: 400px;
    margin: 0 auto;
}

.image-caption {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Mobile Content Layout */
.mobile-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mobile-content {
        flex-direction: row;
        align-items: flex-start;
    }
}

.mobile-image {
    width: 150px;
    height: 150px;
    border-radius: var(--radius);
    object-fit: cover;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .mobile-image {
        width: 192px;
        height: 192px;
    }
}

.mobile-text {
    flex: 1;
}

.mobile-text p {
    margin-bottom: 0;
}

/* Warning Block */
.warning-block {
    background: hsla(0, 72%, 51%, 0.1);
    border: 1px solid hsla(0, 72%, 51%, 0.3);
    border-left: 4px solid var(--destructive);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin: 2rem 0;
}

.warning-block p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.warning-block.warning-orange {
    background: hsla(25, 95%, 53%, 0.1);
    border-color: hsla(25, 95%, 53%, 0.3);
    border-left-color: var(--orange);
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .payment-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.payment-card {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-card {
    padding: 1.25rem;
    text-align: center;
}

.info-icon {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.info-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-card p {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Platform Grid (App page) */
.platform-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.platform-card {
    padding: 1.5rem;
}

.platform-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.platform-title svg {
    color: var(--primary);
}

.platform-specs {
    list-style: none;
}

.platform-specs li {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

/* Steps List (App page) */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    align-items: flex-start;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Features Mini Grid (App page) */
.features-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .features-mini-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-mini {
    padding: 1.25rem;
    text-align: center;
}

.feature-mini-icon {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.feature-mini h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.feature-mini p {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--muted);
    font-weight: 600;
    font-size: 0.875rem;
}

.comparison-table td {
    font-size: 0.9375rem;
}

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

/* Stats Grid (Bonus page) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* Promo Codes Grid (Bonus page) */
.promo-codes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .promo-codes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.promo-code-card {
    padding: 1.25rem;
    text-align: center;
}

.promo-highlight {
    border-color: hsla(43, 96%, 56%, 0.5);
    background: linear-gradient(145deg, hsla(43, 96%, 56%, 0.1) 0%, hsl(230, 25%, 8%) 100%);
}

.promo-code-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.promo-type {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted-foreground);
    background: var(--muted);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.promo-type-primary {
    color: var(--primary);
    background: hsla(43, 96%, 56%, 0.15);
}

.promo-sparkle {
    color: var(--primary);
}

.promo-code {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.promo-value {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
    padding: 4rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px hsla(0, 0%, 0%, 0.5);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ==========================================================================
   BONUS SECTION
   ========================================================================== */
.bonus-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--popover) 50%, var(--background) 100%);
}

/* Bonus Cards Layout (Homepage) */
.bonus-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .bonus-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .bonus-cards {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.bonus-main-card {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid hsla(43, 96%, 56%, 0.3);
}

.bonus-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
}

.bonus-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .bonus-title {
        font-size: 1.75rem;
    }
}

.bonus-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .bonus-value {
        font-size: 2.5rem;
    }
}

.bonus-extra {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.bonus-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-features li {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.bonus-side-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus-card-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.bonus-card-info {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* Bonus Grid (Bonus page) */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.bonus-highlight {
    border-color: hsla(43, 96%, 56%, 0.5);
}

.bonus-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.bonus-icon {
    width: 64px;
    height: 64px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--muted-foreground);
}

.bonus-icon-primary {
    background: hsla(43, 96%, 56%, 0.15);
    color: var(--primary);
}

.bonus-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.bonus-card-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.bonus-card-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-section {
    padding: 4rem 0;
    background: var(--background);
}

.update-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.update-badge svg {
    color: var(--primary);
}

/* Rating Overview Card */
.rating-overview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .rating-overview {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.rating-score {
    text-align: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .rating-score {
        text-align: left;
        min-width: 180px;
    }
}

.score-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-score .stars {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.review-count {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Rating Bars */
.rating-bars {
    flex: 1;
    max-width: 400px;
    width: 100%;
}

@media (min-width: 768px) {
    .rating-bars {
        margin-left: auto;
    }
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.rating-bar span:first-child {
    min-width: 24px;
    text-align: right;
}

.rating-bar span:last-child {
    min-width: 36px;
    text-align: right;
}

.bar {
    flex: 1;
    height: 8px;
    background: var(--muted);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: var(--primary);
}

.rating-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.rating-quote {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Pros & Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pros-card,
.cons-card {
    padding: 1.5rem;
}

.pros-header,
.cons-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.pros-header h3,
.cons-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.pros-icon {
    width: 40px;
    height: 40px;
    background: hsla(142, 76%, 45%, 0.15);
    color: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cons-icon {
    width: 40px;
    height: 40px;
    background: hsla(0, 72%, 51%, 0.15);
    color: var(--destructive);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pros-list,
.cons-list {
    list-style: none;
}

.pros-list li,
.cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.check {
    color: var(--green);
    font-weight: 600;
}

.minus {
    color: var(--destructive);
    font-weight: 600;
}

/* User Reviews */
.user-reviews {
    margin-top: 3rem;
}

.reviews-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    padding: 1.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.review-avatar,
.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-meta,
.reviewer-info {
    flex: 1;
}

.review-name,
.reviewer-name {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    display: block;
}

.review-rating {
    color: var(--primary);
    font-size: 0.875rem;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.star-sm {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.review-text {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.review-date {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    opacity: 0.7;
    margin-bottom: 0;
    display: block;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--popover) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    color: var(--foreground);
    cursor: pointer;
    transition: color 0.2s ease;
}

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

.faq-icon,
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--muted-foreground);
}

.faq-item.active .faq-icon,
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   COMPREHENSIVE FAQ (Subpages)
   ========================================================================== */
.comprehensive-faq {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--popover) 50%, var(--background) 100%);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-main-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .faq-main-title {
        font-size: 1.75rem;
    }
}

.faq-paragraphs {
    margin-bottom: 2rem;
}

.faq-paragraphs p {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-checklist {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.checklist-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.checkbox {
    color: var(--primary);
    font-size: 1rem;
}

.faq-cta {
    text-align: center;
}

/* ==========================================================================
   CHANGELOG SECTION
   ========================================================================== */
.changelog-section {
    padding: 4rem 0;
    background: var(--background);
}

.changelog-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.changelog-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    align-items: flex-start;
}

.changelog-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted-foreground);
    min-width: 100px;
    flex-shrink: 0;
}

.changelog-content {
    flex: 1;
}

.changelog-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.changelog-tag.new {
    background: hsla(142, 76%, 45%, 0.15);
    color: var(--green);
}

.changelog-tag.update {
    background: hsla(43, 96%, 56%, 0.15);
    color: var(--primary);
}

.changelog-tag.fix {
    background: hsla(220, 60%, 50%, 0.15);
    color: var(--accent);
}

.changelog-text {
    font-size: 0.9375rem;
    color: var(--foreground);
    margin-bottom: 0;
}

/* ==========================================================================
   AUTHOR SECTION
   ========================================================================== */
.author-section {
    padding: 3rem 0;
    background: var(--background);
}

.author-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.author-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 640px) {
    .author-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
}

.author-avatar {
    width: 64px;
    height: 64px;
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .author-header {
        justify-content: flex-start;
    }
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.author-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: hsla(43, 96%, 56%, 0.15);
    color: var(--primary);
}

.author-bio {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .author-meta {
        justify-content: flex-start;
    }
}

.author-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.author-meta-item svg {
    color: var(--primary);
}

.author-disclaimer {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

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

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

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.age-badge {
    width: 40px;
    height: 40px;
    background: var(--destructive);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.flag-badges {
    display: flex;
    gap: 0.5rem;
}

.flag-badges img {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.footer-disclaimer {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    opacity: 0.7;
    margin-bottom: 0;
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 900;
    box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px hsla(43, 96%, 56%, 0.5);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
    .header-nav { display: none; }
    .header-right { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .hero { min-height: 70vh; padding: 3rem 0; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .bonus-card-value { font-size: 1.25rem; }
    
    .section-title { font-size: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .pros-cons-grid { grid-template-columns: 1fr; }
    
    .toc { margin: -1.5rem 1rem 2rem; }
    
    section { padding: 2.5rem 0; }
    .container { padding: 0 12px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .hero-trust { flex-direction: column; gap: 0.75rem; }
    .hero-ctas { flex-direction: column; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .promo-codes-grid { grid-template-columns: 1fr; }
    
    .page-title { font-size: 1.5rem; }
    .section-heading { font-size: 1.25rem; }
}
