/* ============================================
   MelhoresSpins24 — Design System
   Theme: Emerald Glow (Teal + Gold + Deep Navy)
   Fonts: Outfit (headings) + DM Sans (body)
   ============================================ */

/* --- Custom Properties --- */
:root {
    --bg-white: #ffffff;
    --bg-light: #F0FDF9;
    --bg-cream: #ECFDF5;
    --bg-dark: #0B1120;
    --bg-dark-card: #111827;
    --bg-dark-surface: #1F2937;
    --primary: #10B981;
    --primary-light: #34D399;
    --primary-dark: #059669;
    --primary-glow: rgba(16,185,129,0.15);
    --accent: #F59E0B;
    --accent-light: #FBBF24;
    --accent-warm: #F97316;
    --text-dark: #0B1120;
    --text-body: #374151;
    --text-muted: #9CA3AF;
    --text-light: #F9FAFB;
    --text-light-secondary: #D1D5DB;
    --border-light: rgba(0,0,0,0.06);
    --border-dark: rgba(255,255,255,0.08);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 8px 30px rgba(16,185,129,0.25);
    --font-body: 'DM Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --gradient-main: linear-gradient(135deg, #10B981, #34D399, #F59E0B);
    --gradient-soft: linear-gradient(135deg, #ECFDF5, #FFFBEB);
    --gradient-dark: linear-gradient(135deg, #0B1120, #1F2937);
    --gradient-text: linear-gradient(135deg, #10B981, #34D399, #F59E0B);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }

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

.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.15);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}
.section-tag--light {
    color: var(--accent-light);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-body); font-size: 1.05rem; }
.section-header--dark p { color: var(--text-light-secondary); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16,185,129,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.btn-outline--light {
    color: var(--text-light);
    border-color: rgba(255,255,255,0.2);
}
.btn-outline--light:hover {
    border-color: var(--accent-light);
    color: var(--accent-light);
}
.btn-lg { padding: 16px 38px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ================================
   ANIMATED BACKGROUND BLOBS
   ================================ */
.blob-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blobFloat 12s ease-in-out infinite;
}
.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(16,185,129,0.12);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}
.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(245,158,11,0.10);
    bottom: 10%;
    left: -8%;
    animation-delay: -4s;
}
.blob-3 {
    width: 350px;
    height: 350px;
    background: rgba(52,211,153,0.08);
    top: 40%;
    right: 20%;
    animation-delay: -8s;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(30px, -30px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-20px, 20px) scale(0.9) rotate(240deg); }
}

/* ================================
   NAVBAR
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
    box-shadow: 0 1px 10px rgba(0,0,0,0.04);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 100;
}
.navbar-logo .logo-icon { width: 36px; height: 36px; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(16,185,129,0.05);
}
.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 100;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================
   HERO
   ================================ */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 0 100px;
    overflow: hidden;
    background: var(--bg-white);
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, rgba(245,158,11,0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroFloat 8s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52,211,153,0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroFloat 10s ease-in-out infinite reverse;
}
@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.05); }
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--gradient-soft);
    border: 1px solid rgba(16,185,129,0.12);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.15); }
    50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 { margin-bottom: 24px; color: var(--text-dark); }
.hero-description {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 24px 12px;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
.stat-item { flex: 1; text-align: center; padding: 0 28px; }
.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
    flex-shrink: 0;
}

/* ================================
   LIVE ACTIVITY TICKER
   ================================ */
.ticker-section {
    padding: 20px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}
.ticker-wrap {
    display: flex;
    gap: 48px;
    animation: tickerScroll 35s linear infinite;
    width: max-content;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--text-body);
}
.ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    animation: tickerPulse 2s ease-in-out infinite;
}
.ticker-item strong { color: var(--text-dark); font-weight: 600; }
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes tickerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ================================
   GAMES SECTION (Dark)
   ================================ */
.games-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-dark);
    color: var(--text-light);
}
.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 600px 400px at 10% 20%, rgba(16,185,129,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 500px 300px at 90% 80%, rgba(245,158,11,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.games-section .section-header { position: relative; z-index: 1; }
.games-section .section-header p { color: var(--text-light-secondary); }

.games-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Game card */
.game-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16,185,129,0.5);
    box-shadow: 0 0 30px rgba(16,185,129,0.2), 0 20px 60px rgba(0,0,0,0.4);
}
.game-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(16,185,129,0.5), transparent 40%, transparent 60%, rgba(245,158,11,0.4));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.game-card:hover::after { opacity: 1; }

.game-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.65);
}
.game-card:hover .game-card-img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,17,32,0.95) 0%, rgba(11,17,32,0.4) 50%, rgba(11,17,32,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.game-card-content {
    position: relative;
    z-index: 2;
    padding: 28px 28px 32px;
}
.game-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.25);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}
.game-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.game-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.btn-play {
    background: var(--gradient-main);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(16,185,129,0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16,185,129,0.5);
}

/* ================================
   CATEGORIES SECTION
   ================================ */
.categories-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-card {
    position: relative;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16,185,129,0.15);
}
.category-card:hover::before { opacity: 1; }
.category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: var(--radius);
    background: rgba(16,185,129,0.08);
    color: var(--primary);
    transition: var(--transition);
}
.category-card:hover .category-icon {
    background: var(--gradient-main);
    color: #fff;
}
.category-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.category-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ================================
   FEATURES (Light)
   ================================ */
.features-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-light);
}
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 400px 300px at 0% 0%, rgba(16,185,129,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 100% 100%, rgba(245,158,11,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: all 0.4s ease;
}
.feature-card:hover {
    border-color: rgba(16,185,129,0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:nth-child(1) { grid-column: span 2; }
.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.1);
    border-radius: var(--radius);
    margin-bottom: 20px;
    color: var(--primary);
    transition: all 0.4s ease;
}
.feature-card:hover .feature-icon {
    background: var(--gradient-main);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(16,185,129,0.3);
}
.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: var(--text-dark);
}
.feature-card p {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ================================
   HOW IT WORKS (Dark)
   ================================ */
.how-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}
.how-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(16,185,129,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.how-section .section-header { position: relative; z-index: 1; }
.how-section .section-header p { color: var(--text-light-secondary); }
.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.steps-row::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    opacity: 0.3;
}
.step-card { text-align: center; position: relative; }
.step-num {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(16,185,129,0.4);
}
.step-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.step-card p {
    color: var(--text-light-secondary);
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials-section {
    padding: 120px 0;
    background: var(--bg-white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--accent);
}
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}
.testimonial-author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}
.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    padding: 120px 0;
    background: var(--bg-light);
}
.cta-card {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: var(--gradient-main);
    border-radius: var(--radius-xl);
    overflow: hidden;
    color: #fff;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: ctaOrb 6s ease-in-out infinite;
}
@keyframes ctaOrb {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.2) translate(-20px, -10px); }
}
.cta-card h2 {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    color: #fff;
}
.cta-card h2 .gradient-text {
    background: linear-gradient(135deg, #ECFDF5, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-card > p {
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}
.cta-card .btn {
    position: relative;
    z-index: 1;
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ================================
   FAQ
   ================================ */
.faq-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-white);
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--bg-white);
}
.faq-item:hover { border-color: rgba(16,185,129,0.15); }
.faq-item.active {
    border-color: rgba(16,185,129,0.3);
    box-shadow: 0 4px 20px rgba(16,185,129,0.08);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    background: var(--bg-white);
    transition: var(--transition);
    color: var(--text-dark);
}
.faq-question:hover { background: var(--bg-light); }
.faq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ================================
   FOOTER (Dark)
   ================================ */
.footer {
    padding: 72px 0 0;
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16,185,129,0.3), transparent);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-dark);
}
.footer-brand { max-width: 340px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo .logo-icon { width: 30px; height: 30px; }
.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-light);
}
.footer-brand > p {
    color: var(--text-light-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}
.footer-links-row {
    display: flex;
    gap: 60px;
}
.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.footer-links-group li { margin-bottom: 10px; }
.footer-links-group a {
    font-size: 0.9rem;
    color: var(--text-light-secondary);
    transition: var(--transition);
}
.footer-links-group a:hover { color: var(--primary-light); }
.footer-bottom {
    padding: 28px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.footer-disclaimer {
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   LEGAL PAGES (privacy, terms)
   ================================ */
.legal-page-header {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    background: var(--bg-white);
}
.legal-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 3px;
}
.legal-page-header h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 12px;
}
.legal-page-header p {
    color: var(--text-body);
    font-size: 0.95rem;
}
.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}
.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.legal-content p {
    color: var(--text-body);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}
.legal-content ul {
    margin-bottom: 16px;
    padding-left: 0;
}
.legal-content li {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}
.legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--primary-dark); }

/* ================================
   HERO SPLIT LAYOUT
   ================================ */
.hero--split { text-align: left; padding: 160px 0 80px; }
.hero--split::before { top: -100px; right: -100px; width: 500px; height: 500px; }
.hero--split::after { bottom: -50px; left: -100px; width: 350px; height: 350px; }
.hero-split-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    max-width: 100%;
}
.hero-text { flex: 1; min-width: 0; }
.hero-text .hero-description { margin: 0 0 40px; }
.hero-text .hero-actions { justify-content: flex-start; margin-bottom: 0; }
.hero-illustration {
    flex: 0 0 360px;
    max-width: 360px;
}
.hero-illustration svg { width: 100%; height: auto; }

/* ================================
   STATS STRIP
   ================================ */
.stats-strip {
    padding: 28px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
}
.stats-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.stats-strip .stat-item { flex: 1; text-align: center; padding: 0 24px; }
.stats-strip .stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stats-strip .stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light-secondary);
    margin-top: 2px;
    font-weight: 500;
}
.stats-strip .stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-dark);
    flex-shrink: 0;
}

/* ================================
   CATEGORY PILLS
   ================================ */
.category-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.cat-pill {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light-secondary);
    transition: var(--transition);
    cursor: default;
}
.cat-pill.active,
.cat-pill:hover {
    background: rgba(16,185,129,0.15);
    border-color: rgba(16,185,129,0.3);
    color: var(--primary-light);
}

/* ================================
   FEATURED GAME CARD
   ================================ */
.game-card--featured {
    min-height: 380px;
    margin-bottom: 24px;
    border-radius: var(--radius-xl);
}
.game-card--featured .game-card-content {
    max-width: 500px;
    padding: 40px;
}
.game-card--featured h3 {
    font-size: 1.8rem;
}
.game-card--featured .game-tag {
    font-size: 0.8rem;
    padding: 6px 16px;
}

/* ================================
   GAMES GRID 3-COLUMN
   ================================ */
.games-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* ================================
   NOTICE CARD
   ================================ */
.notice-section {
    padding: 80px 0;
    background: var(--bg-white);
}
.notice-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 36px;
    background: var(--gradient-soft);
    border: 1px solid rgba(16,185,129,0.12);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.notice-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-main);
}
.notice-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
}
.notice-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.notice-text p {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* ================================
   STEPS INLINE
   ================================ */
.steps-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}
.step-inline {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.steps-inline .step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
    margin: 0;
}
.step-inline h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.step-inline p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ================================
   TESTIMONIALS DARK VARIANT
   ================================ */
.testimonials-section--dark {
    background: var(--bg-dark);
    color: var(--text-light);
}
.testimonials-section--dark .section-header p { color: var(--text-light-secondary); }
.testimonials-section--dark .testimonial-card {
    background: var(--bg-dark-card);
    border-color: var(--border-dark);
}
.testimonials-section--dark .testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(16,185,129,0.1);
}
.testimonials-section--dark .testimonial-card blockquote { color: var(--text-light-secondary); }
.testimonials-section--dark .testimonial-author-info strong { color: var(--text-light); }
.testimonials-section--dark .testimonial-author-info span { color: var(--text-muted); }

/* ================================
   CTA BANNER (Full-bleed)
   ================================ */
.cta-banner {
    padding: 100px 0;
    background: var(--gradient-main);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: ctaOrb 6s ease-in-out infinite;
}
.cta-banner-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-banner-inner h2 {
    color: #fff;
    margin-bottom: 16px;
}
.cta-banner-inner h2 .gradient-text {
    background: linear-gradient(135deg, #ECFDF5, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-banner-inner > p {
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
}
.cta-banner-inner .btn {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner-inner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ================================
   SCROLL REVEAL ANIMATIONS
   ================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Shimmer effect on game cards */
.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    z-index: 3;
    transition: left 0.6s ease;
    pointer-events: none;
}
.game-card:hover::before {
    left: 100%;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .hero-split-inner { gap: 40px; }
    .hero-illustration { flex: 0 0 280px; max-width: 280px; }
    .games-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .games-grid-3 .game-card:last-child { grid-column: span 2; }
    .features-bento { grid-template-columns: repeat(2, 1fr); }
    .feature-card:nth-child(1) { grid-column: span 1; }
    .steps-inline { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:nth-child(3) { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        z-index: 90;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1.2rem; padding: 14px 24px; color: var(--text-dark); }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero--split { padding: 140px 0 60px; }
    .hero-split-inner { flex-direction: column; gap: 40px; }
    .hero-text { text-align: center; }
    .hero-text .hero-actions { justify-content: center; }
    .hero-illustration { flex: 0 0 auto; max-width: 260px; margin: 0 auto; }
    .hero h1 { font-size: 2.2rem; }

    .stats-strip-inner { flex-wrap: wrap; gap: 16px; }
    .stats-strip .stat-divider { display: none; }
    .stats-strip .stat-item { flex: 0 0 45%; }

    .games-grid-3 { grid-template-columns: 1fr; }
    .games-grid-3 .game-card:last-child { grid-column: span 1; }
    .game-card { min-height: 280px; }
    .game-card--featured { min-height: 300px; }
    .game-card--featured h3 { font-size: 1.4rem; }

    .notice-card { flex-direction: column; text-align: center; align-items: center; }
    .notice-card::before { left: 0; top: 0; right: 0; bottom: auto; width: 100%; height: 4px; }

    .steps-inline { grid-template-columns: 1fr; padding: 24px; }
    .features-bento { grid-template-columns: 1fr; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:nth-child(3) { grid-column: span 1; }

    .footer-inner { flex-direction: column; gap: 40px; }
    .footer-links-row { gap: 40px; }

    .blob { display: none; }
}

@media (max-width: 480px) {
    .hero-text .hero-actions { flex-direction: column; align-items: center; }
    .stats-strip .stat-item { flex: 0 0 100%; }
    .category-pills { gap: 6px; }
    .cat-pill { font-size: 0.75rem; padding: 6px 14px; }
    .cta-banner { padding: 60px 0; }
    .footer-links-row { flex-direction: column; gap: 28px; }
}
