/* ============================================
   FLORNIDAS - GLASSMORPHISM MOBILE GAME SITE
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --secondary-light: #a78bfa;
    --accent: #ec4899;
    --accent-light: #f472b6;

    --bg-deep: #0a0a1a;
    --bg-dark: #0f0f2e;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-hover: rgba(255, 255, 255, 0.1);

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dark: #1e293b;

    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-bg-strong: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-border-strong: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 1000;
    --z-cookie: 1100;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-light);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- UTILITY CLASSES --- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.glass-badge i {
    color: var(--accent);
}

.glass-mini {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px 24px;
}

/* --- BUTTONS --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    color: #fff;
}

.btn-primary span, .btn-primary i {
    position: relative;
    z-index: 2;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-strong);
    color: var(--text-primary);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.btn-glass:hover {
    background: var(--glass-bg-strong);
    border-color: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--glass-border-strong);
    color: var(--text-secondary);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-secondary-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: 16px 0;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: transform var(--transition-spring);
}

.nav-logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--glass-bg);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 10px 24px;
    font-weight: 600;
}

.nav-link.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(236, 72, 153, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -5%;
    right: -5%;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    top: 30%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(20px, 20px) scale(1.02); }
}

.hero-section > .container,
.hero-section > div:not(.hero-bg-mesh):not(.hero-orb):not(.hero-particles):not(.scroll-indicator) {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 24px 0;
}

.title-line {
    display: block;
}

.title-line-1 {
    animation: fadeInUp 0.8s ease-out 0.3s both;
    color: var(--text-secondary);
    font-size: 0.6em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.title-line-2 {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.title-line-3 {
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.hero-stats-row {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease-out 1.3s both;
}

.hero-stat {
    text-align: center;
    min-width: 120px;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* --- Hero Visual / Phone Mockup --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 40px !important;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--bg-deep);
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 36px);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.screen-game-preview {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.game-landscape {
    position: absolute;
    inset: 0;
}

.landscape-mountains {
    position: absolute;
    bottom: 40%;
    left: 0;
    right: 0;
    height: 60%;
    background:
        linear-gradient(135deg, #1a1a4e 0%, #2d1b69 30%, #1a1a4e 60%, #2d1b69 100%);
    clip-path: polygon(0% 60%, 15% 30%, 30% 50%, 50% 15%, 70% 45%, 85% 20%, 100% 55%, 100% 100%, 0% 100%);
}

.landscape-hills {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
    clip-path: polygon(0% 50%, 20% 30%, 40% 45%, 60% 25%, 80% 40%, 100% 30%, 100% 100%, 0% 100%);
}

.landscape-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(180deg, #1e1b4b 0%, #0f0f2e 100%);
}

.game-character {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.character-body {
    width: 32px;
    height: 48px;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    border-radius: 8px 8px 4px 4px;
    position: relative;
}

.character-body::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    border-radius: 50%;
}

.character-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.4), transparent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.game-hud {
    position: absolute;
    top: 16px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.hud-hp {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: #fff;
}

.hp-bar {
    width: 80px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.hp-fill {
    height: 100%;
    width: 87%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: 4px;
    animation: hpPulse 3s ease-in-out infinite;
}

@keyframes hpPulse {
    0%, 100% { width: 87%; }
    50% { width: 82%; }
}

.hud-level {
    background: rgba(99, 102, 241, 0.5);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

.game-particles-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 80% 50%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(236,72,153,0.5), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(99,102,241,0.5), transparent);
    animation: particlesDrift 8s linear infinite;
}

@keyframes particlesDrift {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.phone-reflection {
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    z-index: 5;
    animation: floatCard 6s ease-in-out infinite;
}

.float-card-1 {
    top: 15%;
    right: -30px;
    animation-delay: 0s;
}

.float-card-2 {
    top: 50%;
    left: -40px;
    animation-delay: -2s;
}

.float-card-3 {
    bottom: 15%;
    right: -20px;
    animation-delay: -4s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--glass-border-strong);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- SOCIAL PROOF TICKER --- */
.social-proof-ticker {
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 48px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.ticker-item i {
    color: var(--accent);
}

.ticker-item .ticker-name {
    font-weight: 600;
    color: var(--text-primary);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- SECTION STYLES --- */
.section-bg-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.features-section .section-bg-mesh {
    background:
        radial-gradient(ellipse 50% 40% at 10% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 50%, rgba(236, 72, 153, 0.04) 0%, transparent 60%);
}

.gameplay-section .section-bg-mesh {
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}

.stats-section .section-bg-mesh {
    background:
        radial-gradient(ellipse 40% 40% at 30% 60%, rgba(99, 102, 241, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 70% 40%, rgba(236, 72, 153, 0.04) 0%, transparent 60%);
}

.features-section,
.gameplay-section,
.stats-section,
.reviews-section,
.faq-section,
.signup-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.section-tag {
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.6;
}

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

.feature-card {
    padding: 32px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: var(--glass-border-strong);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.feature-large {
    grid-column: span 2;
}

.feature-icon-wrap {
    position: relative;
    margin-bottom: 20px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-light);
    transition: all var(--transition-smooth);
}

.feature-icon.accent {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
    border-color: rgba(236, 72, 153, 0.3);
    color: var(--accent-light);
}

.feature-icon.secondary {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--secondary-light);
}

.feature-icon-glow {
    position: absolute;
    width: 56px;
    height: 56px;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
}

.feature-icon-glow.accent {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent 70%);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-detail {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-bar span {
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 100px;
}

.bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: width 1.5s ease-out;
}

.feature-chapters {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.chapter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.chapter-item.active {
    border-color: var(--accent);
    color: var(--accent-light);
    background: rgba(236, 72, 153, 0.08);
}

.chapter-num {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--primary-light);
}

.chapter-item.active .chapter-num {
    color: var(--accent);
}

/* --- GAMEPLAY SECTION --- */
.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.showcase-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.showcase-tab:hover {
    background: var(--glass-bg-strong);
    color: var(--text-primary);
}

.showcase-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: #fff;
}

.showcase-display {
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.showcase-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.showcase-panel.active {
    display: grid;
}

.panel-visual {
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

/* Combat Scene */
.combat-scene {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 320px;
}

.combat-arena {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
}

.arena-floor {
    position: absolute;
    bottom: 0;
    left: -20%;
    right: -20%;
    height: 100%;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.02));
    transform: perspective(500px) rotateX(60deg);
    border-radius: 50%;
}

.arena-pillar {
    position: absolute;
    width: 20px;
    height: 80px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.05));
    border-radius: 4px;
}

.arena-pillar-1 { left: 10%; bottom: 40%; }
.arena-pillar-2 { right: 10%; bottom: 40%; }

.combat-player {
    position: absolute;
    left: 20%;
    bottom: 35%;
}

.player-figure {
    width: 40px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    border-radius: 10px 10px 6px 6px;
    position: relative;
}

.player-figure::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    border-radius: 50%;
}

.player-spell-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: spellCircle 3s linear infinite;
}

@keyframes spellCircle {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); opacity: 0.6; }
}

.combat-enemy {
    position: absolute;
    right: 20%;
    bottom: 35%;
}

.enemy-figure {
    width: 50px;
    height: 70px;
    background: linear-gradient(180deg, var(--accent), #be185d);
    border-radius: 12px 12px 8px 8px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 20%, 100% 100%, 0% 100%, 0% 20%);
}

.enemy-health {
    width: 50px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.enemy-hp-bar {
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, #ef4444, #f87171);
    border-radius: 3px;
    animation: enemyHp 4s ease-in-out infinite;
}

@keyframes enemyHp {
    0%, 100% { width: 60%; }
    50% { width: 45%; }
}

.combat-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.spell-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: spellParticle 2s ease-in-out infinite;
}

.sp-1 { left: 35%; top: 40%; background: var(--primary-light); animation-delay: 0s; }
.sp-2 { left: 45%; top: 35%; background: var(--accent); animation-delay: 0.4s; }
.sp-3 { left: 50%; top: 45%; background: var(--secondary-light); animation-delay: 0.8s; }
.sp-4 { left: 40%; top: 50%; background: #fbbf24; animation-delay: 1.2s; }
.sp-5 { left: 55%; top: 38%; background: var(--primary-light); animation-delay: 1.6s; }

@keyframes spellParticle {
    0% { opacity: 0; transform: translate(0, 0) scale(0); }
    50% { opacity: 1; transform: translate(20px, -20px) scale(1.5); }
    100% { opacity: 0; transform: translate(40px, -40px) scale(0); }
}

/* Explore Scene */
.explore-scene {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.explore-sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 30%, #4338ca 60%, #6366f1 100%);
}

.explore-mountains-far {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    height: 40%;
    background: #1e1b4b;
    clip-path: polygon(0% 80%, 10% 40%, 25% 60%, 40% 20%, 55% 50%, 70% 30%, 85% 55%, 100% 35%, 100% 100%, 0% 100%);
    opacity: 0.6;
}

.explore-mountains-near {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    height: 35%;
    background: #312e81;
    clip-path: polygon(0% 60%, 15% 35%, 35% 55%, 50% 25%, 65% 50%, 80% 30%, 100% 50%, 100% 100%, 0% 100%);
}

.explore-forest {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    height: 20%;
    background: #1e1b4b;
    clip-path: polygon(0% 40%, 5% 20%, 10% 35%, 15% 10%, 20% 30%, 25% 5%, 30% 25%, 35% 15%, 40% 35%, 45% 10%, 50% 30%, 55% 5%, 60% 25%, 65% 15%, 70% 35%, 75% 10%, 80% 30%, 85% 20%, 90% 40%, 95% 15%, 100% 35%, 100% 100%, 0% 100%);
}

.explore-path {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15%;
    background: linear-gradient(180deg, #1e1b4b, #0f0f2e);
}

.explore-character {
    position: absolute;
    bottom: 13%;
    left: 40%;
    width: 16px;
    height: 24px;
    background: linear-gradient(180deg, #fbbf24, var(--primary));
    border-radius: 6px 6px 3px 3px;
    animation: walkCharacter 4s ease-in-out infinite;
}

.explore-character::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #fbbf24;
    border-radius: 50%;
}

@keyframes walkCharacter {
    0%, 100% { left: 40%; }
    50% { left: 55%; }
}

.explore-light-rays {
    position: absolute;
    top: 0;
    right: 20%;
    width: 100px;
    height: 100%;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.15), transparent 60%);
    transform: skewX(-15deg);
}

/* Craft Scene */
.craft-scene {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.craft-table {
    width: 200px;
    height: 120px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    position: relative;
}

.craft-items {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
}

.craft-item {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    animation: craftBounce 2s ease-in-out infinite;
}

.ci-1 { background: linear-gradient(135deg, #ef4444, #f87171); animation-delay: 0s; }
.ci-2 { background: linear-gradient(135deg, #3b82f6, #60a5fa); animation-delay: 0.3s; }
.ci-3 { background: linear-gradient(135deg, #22c55e, #4ade80); animation-delay: 0.6s; }

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

.craft-result {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.craft-result-item {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    animation: craftGlow 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

@keyframes craftGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 0 40px rgba(251, 191, 36, 0.6); }
}

.craft-sparkles {
    position: absolute;
    inset: -20px;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fbbf24;
    border-radius: 50%;
    animation: sparkle 1.5s ease-in-out infinite;
}

.sk-1 { top: 0; left: 50%; animation-delay: 0s; }
.sk-2 { top: 50%; right: 0; animation-delay: 0.5s; }
.sk-3 { bottom: 0; left: 30%; animation-delay: 1s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(2); }
}

.craft-forge-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.2), transparent);
    border-radius: 50%;
}

/* PvP Scene */
.pvp-scene {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.pvp-arena-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.08), transparent 70%);
}

.pvp-player {
    text-align: center;
    position: relative;
    z-index: 2;
}

.pvp-figure-1 {
    width: 48px;
    height: 72px;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    border-radius: 12px 12px 6px 6px;
    margin: 0 auto;
}

.pvp-figure-1::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    border-radius: 50%;
}

.pvp-figure-2 {
    width: 48px;
    height: 72px;
    background: linear-gradient(180deg, var(--accent-light), var(--accent));
    border-radius: 12px 12px 6px 6px;
    margin: 0 auto;
}

.pvp-figure-2::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(180deg, #f87171, #ef4444);
    border-radius: 50%;
}

.pvp-rank {
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.pvp-vs {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    animation: vsPulse 2s ease-in-out infinite;
}

@keyframes vsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.pvp-sparks {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2), transparent 70%);
    border-radius: 50%;
    animation: pvpSparks 2s ease-in-out infinite;
}

@keyframes pvpSparks {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

/* Panel Info */
.panel-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.panel-info > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.panel-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.panel-features li i {
    color: var(--primary-light);
    font-size: 0.9rem;
}

/* --- STATS SECTION --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat-card {
    padding: 32px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.stat-icon-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    border: 2px solid rgba(99, 102, 241, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--primary-light);
}

.stat-icon-ring.accent {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    border-color: rgba(236, 72, 153, 0.25);
    color: var(--accent-light);
}

.stat-icon-ring.secondary {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border-color: rgba(139, 92, 246, 0.25);
    color: var(--secondary-light);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.stat-growth {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #4ade80;
    background: rgba(34, 197, 94, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* Live Feed */
.live-feed {
    margin-top: 48px;
    padding: 24px;
    position: relative;
    z-index: 1;
}

.live-feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 0.95rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.live-feed-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow: hidden;
}

.live-feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
    animation: feedSlideIn 0.5s ease-out;
}

.live-feed-item i {
    color: var(--primary-light);
    font-size: 0.85rem;
}

.live-feed-item .feed-time {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes feedSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- REVIEWS CAROUSEL --- */
.reviews-carousel {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform var(--transition-smooth);
}

.review-card {
    min-width: calc(33.333% - 16px);
    padding: 32px;
    flex-shrink: 0;
    transition: all var(--transition-smooth);
}

.review-card:hover {
    background: var(--bg-card-hover);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.author-avatar.accent {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.author-avatar.secondary {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--glass-bg-strong);
    border-color: var(--primary-light);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* --- FAQ SECTION --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.faq-item {
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    transition: all var(--transition-fast);
}

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

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all var(--transition-smooth);
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* --- SIGNUP SECTION --- */
.signup-section {
    position: relative;
}

.signup-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 0;
}

.signup-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: -10%;
}

.signup-orb-2 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    bottom: 10%;
    right: -10%;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.signup-info {
    padding-top: 24px;
}

.signup-info h2 {
    margin-top: 16px;
}

.signup-info > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 16px;
    font-size: 1.05rem;
}

.signup-benefits {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Signup Form */
.signup-form-wrap {
    padding: 40px;
}

.signup-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.signup-form-wrap > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 0 16px;
    transition: all var(--transition-fast);
}

.input-wrap:focus-within {
    border-color: var(--primary-light);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.input-wrap i {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 14px 0;
    font-size: 0.95rem;
}

.input-wrap input::placeholder {
    color: var(--text-muted);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #f87171;
    margin-top: 6px;
    min-height: 18px;
}

/* Checkboxes */
.form-checkbox {
    margin-bottom: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border-strong);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Success / Error Messages */
.signup-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    color: #4ade80;
    margin-bottom: 16px;
}

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.signup-success p {
    color: var(--text-secondary);
}

.success-small {
    font-size: 0.85rem;
    color: var(--text-muted) !important;
    margin-top: 8px;
}

.signup-error-msg {
    text-align: center;
    padding: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.error-icon {
    font-size: 1.5rem;
    color: #f87171;
    margin-bottom: 8px;
}

.signup-error-msg p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- RESPONSIBLE GAMING --- */
.responsible-gaming-section {
    padding: 60px 0;
    position: relative;
}

.responsible-gaming {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
}

.rg-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.rg-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.rg-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.rg-badges {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.rg-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.rg-badge i {
    color: #4ade80;
}

/* --- FOOTER --- */
.site-footer {
    position: relative;
    padding: 80px 0 32px;
    border-top: 1px solid var(--glass-border);
}

.footer-bg-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 30% at 50% 0%, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 12px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    background: var(--glass-bg-strong);
    color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

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

.footer-links-col a i {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: #4ade80;
}

.footer-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 32px 0;
    margin-top: 48px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-address {
    font-size: 0.8rem !important;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    color: var(--text-muted);
    max-width: 600px;
    margin: 8px auto 0;
    line-height: 1.5;
}

/* --- COOKIE CONSENT --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 20px 24px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 300px;
}

.cookie-icon {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cookie-accept:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-cookie-reject {
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cookie-reject:hover {
    background: var(--glass-bg-strong);
    color: var(--text-primary);
}

.btn-cookie-settings {
    padding: 10px 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.btn-cookie-settings:hover {
    color: var(--text-primary);
}

/* Cookie Settings Panel */
.cookie-settings-panel {
    max-width: 1200px;
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-setting-row strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.cookie-setting-row p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    transition: var(--transition-fast);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.toggle-switch.disabled .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* --- AGE MODAL --- */
.age-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.age-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.age-modal-content {
    position: relative;
    max-width: 480px;
    width: 100%;
    padding: 48px;
    text-align: center;
    animation: modalIn 0.4s ease-out;
}

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

.age-modal-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.age-modal-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.age-disclaimer {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin-top: 12px;
    line-height: 1.5;
}

.age-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    justify-content: center;
}

/* --- LEGAL PAGES --- */
.legal-hero {
    position: relative;
    padding: 140px 0 60px;
    overflow: hidden;
}

.legal-hero .hero-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 70% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.legal-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-top: 16px;
    letter-spacing: -0.02em;
}

.legal-hero-content p {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 0.95rem;
}

.legal-section {
    padding: 60px 0 100px;
}

.legal-content {
    padding: 48px;
    background: rgba(255, 255, 255, 0.04) !important;
}

.legal-toc {
    margin-bottom: 48px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

.legal-toc h3 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 16px;
}

.legal-toc ol {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 8px;
    list-style: decimal;
    padding-left: 20px;
}

.legal-toc li {
    list-style: decimal;
}

.legal-toc a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.legal-toc a:hover {
    color: var(--primary-light);
}

.legal-block {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-block h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-block h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 12px;
    color: var(--text-primary);
}

.legal-block p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.legal-block ul, .legal-block ol {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-block ul li, .legal-block ol li {
    list-style: disc;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.legal-block ol li {
    list-style: decimal;
}

.legal-block a {
    color: var(--primary-light);
    text-decoration: underline;
}

.legal-info-box {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 16px 0;
}

.legal-info-box p {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

/* Reveal on Scroll */
[data-reveal] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-description {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.feature-large {
        grid-column: span 1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signup-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-panel {
        grid-template-columns: 1fr;
    }

    .panel-visual {
        min-height: 280px;
    }

    .review-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 8px;
        transition: right var(--transition-smooth);
        z-index: var(--z-dropdown);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1.05rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-tabs {
        gap: 6px;
    }

    .showcase-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .showcase-tab span {
        display: none;
    }

    .review-card {
        min-width: calc(100% - 0px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-trust {
        gap: 16px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: center;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .floating-card {
        display: none;
    }

    .age-modal-content {
        padding: 32px 24px;
    }

    .age-modal-actions {
        flex-direction: column;
    }

    .legal-content {
        padding: 24px;
    }

    .legal-toc ol {
        grid-template-columns: 1fr;
    }

    .responsible-gaming {
        flex-direction: column;
    }

    .signup-form-wrap {
        padding: 24px;
    }

    .hero-stats-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* --- NOISE TEXTURE OVERLAY --- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}
```

Now the JavaScript:

```js