/* ============================================
   UNIQUALIZATION: gauntletandtea.com (site25-in)
   
   CSS ARCHITECTURE: Feature-First (grouped by features)
   PALETTE: Mystic Tea Garden (tea-amber, garden-emerald, lantern-gold, mystic-purple)
   CSS EFFECT: Animated Gradients
   TYPOGRAPHY: Technical (Space Mono + IBM Plex Sans)
   BUTTONS: Split Color
   HTML STRUCTURE: Feature-based (interactive-*, animated-*, scrollable-*)
   JS NAMING: Short Names (gc, sm, hc, etc.)
   ============================================ */

/* ============================================
   ROOT VARIABLES - MYSTIC TEA GARDEN PALETTE
   ============================================ */
:root {
    /* Mystic Tea Garden Theme */
    --tea-amber: #d4a574;
    --tea-amber-light: #e6c9a8;
    --tea-amber-dark: #b08050;
    --garden-emerald: #2e8b57;
    --garden-emerald-light: #3cb371;
    --garden-emerald-dark: #228b22;
    --lantern-gold: #ffd700;
    --lantern-gold-glow: rgba(255, 215, 0, 0.4);
    --mystic-purple: #9370db;
    --mystic-purple-light: #b19cd9;
    --mystic-purple-dark: #7b68ee;
    --winter-frost: #e0ffff;
    --night-indigo: #1a1a2e;
    --night-indigo-light: #252540;
    --night-indigo-dark: #0f0f1a;
    
    /* Functional Colors */
    --text-light: #ffffff;
    --text-muted: #b8b8d1;
    --text-dark: #1a1a2e;
    --success-green: #28a745;
    --danger-red: #dc3545;
    --border-glow: rgba(211, 165, 116, 0.3);
    
    /* Layout */
    --header-height: 70px;
    --container-max: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Typography */
    --font-heading: 'Space Mono', monospace;
    --font-body: 'IBM Plex Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   BASE RESET & GLOBAL
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--night-indigo);
    min-height: 100vh;
}

/* Animated Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--night-indigo) 0%,
        var(--night-indigo-light) 25%,
        rgba(147, 112, 219, 0.1) 50%,
        var(--night-indigo-light) 75%,
        var(--night-indigo) 100%
    );
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    z-index: -1;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

a {
    color: var(--tea-amber);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--lantern-gold);
}

ul {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.25rem); }

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    color: var(--lantern-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--lantern-gold-glow);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   SPLIT COLOR BUTTONS
   ============================================ */
.btn-split {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    background: linear-gradient(90deg, var(--tea-amber) 50%, var(--garden-emerald) 50%);
    background-size: 200% 100%;
    background-position: left;
    color: var(--text-dark);
}

.btn-split:hover {
    background-position: right;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.btn-split.btn-primary {
    background: linear-gradient(90deg, var(--lantern-gold) 50%, var(--mystic-purple) 50%);
    background-size: 200% 100%;
    background-position: left;
}

.btn-split.btn-primary:hover {
    background-position: right;
}

.btn-split.btn-secondary {
    background: linear-gradient(90deg, var(--garden-emerald) 50%, var(--tea-amber) 50%);
    background-size: 200% 100%;
    background-position: left;
}

.btn-split.btn-secondary:hover {
    background-position: right;
}

.btn-split.btn-play {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(90deg, var(--garden-emerald) 50%, var(--lantern-gold) 50%);
    background-size: 200% 100%;
    background-position: left;
}

.btn-split.btn-play:hover {
    background-position: right;
    color: var(--text-dark);
}

.btn-split.btn-yes {
    background: linear-gradient(90deg, var(--garden-emerald) 50%, var(--success-green) 50%);
    background-size: 200% 100%;
    background-position: left;
    color: var(--text-light);
}

.btn-split.btn-no {
    background: linear-gradient(90deg, var(--mystic-purple) 50%, var(--danger-red) 50%);
    background-size: 200% 100%;
    background-position: left;
    color: var(--text-light);
}

.btn-split.btn-cookie {
    background: linear-gradient(90deg, var(--tea-amber) 50%, var(--lantern-gold) 50%);
    background-size: 200% 100%;
    background-position: left;
}

/* ============================================
   MODAL OVERLAYS
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.modal-box {
    background: linear-gradient(145deg, var(--night-indigo-light), var(--night-indigo));
    border: 2px solid var(--tea-amber);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--lantern-gold-glow);
    animation: modalAppear 0.4s ease;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-title {
    color: var(--lantern-gold);
    margin-bottom: 1rem;
}

.modal-text {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.modal-question {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.modal-actions .btn-split {
    min-width: 140px;
}

.modal-note {
    color: var(--garden-emerald);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    background: linear-gradient(145deg, var(--night-indigo-light), var(--night-indigo));
    border: 2px solid var(--tea-amber);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: none;
}

.cookie-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--lantern-gold);
}

@media (max-width: 480px) {
    .cookie-banner {
        right: 10px;
        left: 10px;
        bottom: 10px;
        max-width: none;
    }
}

/* ============================================
   HEADER
   ============================================ */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glow);
    z-index: 1000;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lantern-gold);
    letter-spacing: -0.02em;
}

.free-badge {
    background: var(--garden-emerald);
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

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

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

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lantern-gold);
    transition: width var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--lantern-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Burger Toggle */
.burger-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-toggle span {
    width: 25px;
    height: 3px;
    background: var(--lantern-gold);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.burger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: calc(var(--header-height) - 1px);
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.98);
    border-bottom: 1px solid var(--border-glow);
    padding: 1.5rem;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-muted);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
    background: var(--night-indigo-light);
    color: var(--lantern-gold);
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }
    
    .burger-toggle {
        display: flex;
    }
    
    :root {
        --header-height: 60px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 1.5rem 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(147, 112, 219, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(46, 139, 87, 0.1) 0%, transparent 60%);
    animation: heroGradient 20s ease infinite;
}

@keyframes heroGradient {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.hero-emoji {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(46, 139, 87, 0.2);
    border: 1px solid var(--garden-emerald);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--garden-emerald-light);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 1rem 60px;
        min-height: auto;
    }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.5);
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 0 1 320px;
    background: linear-gradient(145deg, var(--night-indigo-light), var(--night-indigo));
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--tea-amber);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    color: var(--lantern-gold);
    margin-bottom: 0.75rem;
}

.benefit-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section {
    padding: 80px 0;
}

.games-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex-wrap: wrap;
}

.game-card {
    flex: 0 0 auto;
    width: clamp(280px, 25vw, 340px);
    max-width: 340px;
    min-width: 280px;
    background: linear-gradient(145deg, var(--night-indigo-light), var(--night-indigo));
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--lantern-gold);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
}

.game-image-wrapper {
    position: relative;
    padding-top: 100%;
    background: var(--night-indigo-dark);
}

.game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-free-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--garden-emerald);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
}

.game-info {
    padding: 1.5rem;
}

.game-title {
    color: var(--lantern-gold);
    margin-bottom: 0.75rem;
}

.game-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    font-size: 0.9rem;
}

.rating-text {
    color: var(--tea-amber);
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .games-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .game-card {
        width: 100%;
        max-width: 380px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.5);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--tea-amber);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--night-indigo-light);
    border: none;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(37, 37, 64, 0.8);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--lantern-gold);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

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

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    background: var(--night-indigo);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 0 1 340px;
    background: linear-gradient(145deg, var(--night-indigo-light), var(--night-indigo));
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--mystic-purple);
    box-shadow: 0 15px 40px rgba(147, 112, 219, 0.15);
}

.testimonial-stars {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    color: var(--lantern-gold);
    font-family: var(--font-heading);
    font-weight: 600;
}

.author-location {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   LEADERBOARD SECTION
   ============================================ */
.leaderboard-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.5);
}

.leaderboard-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.leaderboard-card {
    flex: 0 1 280px;
    background: linear-gradient(145deg, var(--night-indigo-light), var(--night-indigo));
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-medium);
}

.leaderboard-card:hover {
    transform: scale(1.02);
}

.leaderboard-card.rank-1 {
    border-color: var(--lantern-gold);
    box-shadow: 0 0 20px var(--lantern-gold-glow);
}

.leaderboard-card.rank-2 {
    border-color: #c0c0c0;
}

.leaderboard-card.rank-3 {
    border-color: #cd7f32;
}

.rank-badge {
    font-size: 2rem;
}

.player-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.player-name {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
}

.player-score {
    color: var(--tea-amber);
    font-size: 0.9rem;
}

.leaderboard-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */
.disclaimer-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(220, 53, 69, 0.1));
}

.disclaimer-box {
    background: linear-gradient(145deg, var(--night-indigo-light), var(--night-indigo));
    border: 2px solid var(--danger-red);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
}

.disclaimer-title {
    color: var(--danger-red);
    margin-bottom: 1.5rem;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.disclaimer-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.disclaimer-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.disclaimer-badge {
    background: rgba(46, 139, 87, 0.2);
    border: 1px solid var(--garden-emerald);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--garden-emerald-light);
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-main {
    background: var(--night-indigo-dark);
    border-top: 1px solid var(--border-glow);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: var(--lantern-gold);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-free-tag {
    background: var(--garden-emerald);
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--lantern-gold);
}

.compliance-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.compliance-link {
    display: block;
}

.compliance-logo {
    height: 35px !important;
    width: auto !important;
    max-width: 120px !important;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.compliance-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.age-badge {
    background: var(--danger-red);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid var(--border-glow);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 600px) {
    .modal-box {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn-split {
        width: 100%;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .disclaimer-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .leaderboard-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .leaderboard-card {
        width: 100%;
        max-width: 300px;
    }
}

/* Prevent horizontal scroll */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-card,
    .testimonial-card {
        width: 100%;
        max-width: 400px;
    }
}

