/* ============================================
   KLADI MOBILE — Ana Stil Dosyası
   ============================================ */

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

:root {
    --bg-primary: #0A0A1A;
    --bg-secondary: #12122A;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);

    --primary: #7C5CFC;
    --primary-dark: #5B3EE8;
    --primary-glow: rgba(124, 92, 252, 0.3);
    --accent-pink: #FF6B9D;
    --accent-teal: #00D4AA;
    --accent-yellow: #FFC107;
    --accent-orange: #FF6B35;

    --text-primary: #FFFFFF;
    --text-secondary: #9E9EC8;
    --text-muted: #6B6B9B;

    --gradient-1: linear-gradient(135deg, #7C5CFC 0%, #FF6B9D 100%);
    --gradient-2: linear-gradient(135deg, #7C5CFC 0%, #00D4AA 100%);
    --gradient-3: linear-gradient(135deg, #FF6B9D 0%, #FFC107 100%);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --nav-height: 72px;
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 24px;

    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: white;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* === CUSTOM CURSOR === */
@media (pointer: fine) {
    .cursor-dot {
        position: fixed;
        top: 0; left: 0;
        width: 8px; height: 8px;
        background: var(--primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background 0.2s;
        mix-blend-mode: difference;
    }

    .cursor-outline {
        position: fixed;
        top: 0; left: 0;
        width: 40px; height: 40px;
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        transition: all 0.15s ease-out;
    }

    .cursor-dot.hover {
        width: 16px; height: 16px;
        background: white;
    }

    .cursor-outline.hover {
        width: 60px; height: 60px;
        border-color: var(--primary);
        background: rgba(124, 92, 252, 0.1);
    }
}

/* === CURSOR GLOW === */
#cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.3s ease-out, top 0.3s ease-out;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 36px; height: 36px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 15px rgba(124, 92, 252, 0.3);
}

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

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-cta-btn {
    padding: 8px 20px;
    background: var(--gradient-1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: white !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(10, 10, 26, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-link {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--text-primary);
}

.mobile-cta {
    padding: 12px 32px;
    background: var(--gradient-1);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.4) 0%, transparent 70%);
    top: -200px; left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

.orb-4 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.15) 0%, transparent 70%);
    top: -100px; left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.orb-5 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
    bottom: -200px; left: -100px;
}

.orb-6 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.2) 0%, transparent 70%);
    top: -150px; right: -100px;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-30px) scale(1.05); }
    66% { transform: translateY(20px) scale(0.95); }
}

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

.hero-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--primary-glow);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(8px); }
}

/* === REVEAL ANIMATIONS === */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* === SECTIONS COMMON === */
section {
    position: relative;
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    padding: 4px 14px;
    background: rgba(124, 92, 252, 0.1);
    border: 1px solid rgba(124, 92, 252, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === FEATURES === */
.features {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
    width: 52px; height: 52px;
    background: rgba(124, 92, 252, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--icon-color, var(--primary));
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(124, 92, 252, 0.2);
    transform: scale(1.05);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === PREVIEW === */
.preview {
    background: var(--bg-primary);
    overflow: hidden;
}

.preview-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    flex-wrap: wrap;
}

.preview-steps {
    flex: 1;
    min-width: 300px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(124, 92, 252, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.step-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Phone Mockup */
.phone-mockup {
    flex-shrink: 0;
    perspective: 1000px;
}

.phone-body {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e, #12122a);
    border-radius: 40px;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 80px rgba(124, 92, 252, 0.1),
        0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    transform-style: preserve-3d;
    transition: var(--transition);
}

.phone-body:hover {
    transform: rotateY(-5deg) rotateX(5deg);
    box-shadow:
        0 0 100px rgba(124, 92, 252, 0.15),
        0 40px 80px rgba(0, 0, 0, 0.5);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #0A0A1A;
    border-radius: 0 0 16px 16px;
    z-index: 5;
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px; height: 8px;
    background: #1a1a2e;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0A0A1A;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0 16px;
}

.screen-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.screen-icons {
    display: flex;
    gap: 6px;
    color: var(--text-secondary);
}

.screen-app {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 12px;
}

.screen-app-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.screen-app-logo {
    width: 28px; height: 28px;
    background: var(--gradient-1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: white;
}

.screen-app-header span {
    font-size: 14px;
    font-weight: 600;
}

.screen-balance {
    background: rgba(124, 92, 252, 0.08);
    border: 1px solid rgba(124, 92, 252, 0.15);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.balance-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance-amount {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screen-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.screen-btn {
    padding: 14px;
    background: var(--gradient-1);
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.screen-referral {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 10px;
}

.ref-label {
    font-size: 11px;
    color: var(--accent-teal);
}

.ref-count {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-teal);
}

.phone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

/* === STATS === */
.stats {
    background: var(--bg-secondary);
    padding: 80px 24px;
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    display: block;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
}

.stat-suffix {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-left: 2px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.06);
}

.stats-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.2;
}

/* === DOWNLOAD / VERSION === */
.download {
    background: var(--bg-primary);
}

.version-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-xl);
    padding: 48px;
    text-align: center;
    transition: var(--transition);
}

.version-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
}

.version-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.version-tag {
    padding: 4px 12px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-teal);
}

.version-number {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.version-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.version-date, .version-size, .version-sha {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.version-sha {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--primary);
    opacity: 0.7;
}

.version-changelog {
    list-style: none;
    text-align: left;
    margin: 0 auto 32px;
    max-width: 400px;
}

.version-changelog li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.version-changelog li:last-child {
    border-bottom: none;
}

.version-changelog li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.version-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.download-note {
    font-size: 12px;
    color: var(--text-muted);
}

/* === FAQ === */
.faq {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.faq-item.active {
    border-color: rgba(124, 92, 252, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

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

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* === CTA SECTION === */
.cta-section {
    text-align: center;
    padding: 120px 24px;
    overflow: hidden;
    position: relative;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* === FOOTER === */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 80px 24px 32px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 240px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 240px;
}

.footer-links {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-col h5 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: var(--transition);
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* === LOADING ANIMATION === */
.download-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.download-btn.loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === PULSE ANIMATION === */
.btn-primary {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px var(--primary-glow); }
    50% { box-shadow: 0 4px 40px var(--primary-glow), 0 0 60px rgba(124, 92, 252, 0.1); }
}

/* === HERO ADDITIONS === */
.hero-highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
    opacity: 0.3;
}

/* === GUARANTEE SECTION === */
.guarantee {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0D0D22 100%);
    overflow: hidden;
}

.guarantee-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb-g {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: float 25s ease-in-out infinite;
}

.guarantee-main {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-xl);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.guarantee-main:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
}

.guarantee-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF6B9D);
    opacity: 0.6;
}

.guarantee-badge-tag {
    display: inline-flex;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 1.5px;
    animation: pulse-glow-gold 2.5s ease-in-out infinite;
    margin-bottom: 24px;
}

@keyframes pulse-glow-gold {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.1); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.25); }
}

.guarantee-amount {
    margin-bottom: 20px;
}

.guarantee-amount-value {
    display: block;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 40%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -3px;
    line-height: 1;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.guarantee-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 28px;
}

.guarantee-description strong {
    color: #FFD700;
    font-weight: 700;
}

.guarantee-countdown-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 32px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--border-radius);
    margin-bottom: 28px;
}

.gcb-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.gcb-value {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-mono);
    color: #FFD700;
    letter-spacing: 1px;
}

.guarantee-methods {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.gm-box {
    flex: 1;
    min-width: 240px;
    display: flex;
    gap: 14px;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: left;
    transition: var(--transition);
}

.gm-box:hover {
    transform: translateY(-2px);
}

.gm-free {
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.15);
}

.gm-free:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.25);
}

.gm-paid {
    background: rgba(124, 92, 252, 0.06);
    border: 1px solid rgba(124, 92, 252, 0.15);
}

.gm-paid:hover {
    background: rgba(124, 92, 252, 0.1);
    border-color: rgba(124, 92, 252, 0.25);
}

.gm-box-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.gm-box-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.gm-box-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.gm-box-content p strong {
    color: var(--text-primary);
}

.guarantee-cta {
    justify-content: center;
}

.guarantee-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 780px;
    margin: 32px auto 0;
    flex-wrap: wrap;
}

/* Prize Distribution Grid */
.guarantee-distribution {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto 28px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

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

.gd-row:last-child {
    border-bottom: none;
}

.gd-rank {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    min-width: 100px;
}

.gd-rank strong {
    color: var(--text-primary);
    font-weight: 600;
}

.gd-amount {
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.gd-amount.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gd-amount.purple {
    color: #7C5CFC;
}

.gd-amount.teal {
    color: #00D4AA;
}

.gd-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 4px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gd-total-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gd-total-value {
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 40%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gd-people {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.gs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 8px;
    min-width: 100px;
}

.gs-icon {
    font-size: 24px;
}

.gs-value {
    font-size: 20px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.gs-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gs-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
}

/* === LEADERBOARD === */
.leaderboard {
    background: var(--bg-secondary);
}

.leaderboard-container {
    max-width: 720px;
    margin: 0 auto;
}

.leaderboard-podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
}

.podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 20px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    min-width: 140px;
    position: relative;
    transition: var(--transition);
}

.podium-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.podium-item[data-rank="2"] {
    transform: translateY(20px);
}

.podium-item[data-rank="3"] {
    transform: translateY(20px);
}

.podium-item[data-rank="2"]:hover {
    transform: translateY(16px);
}

.podium-item[data-rank="3"]:hover {
    transform: translateY(16px);
}

.podium-first {
    min-width: 160px;
    padding-top: 32px;
    border-color: rgba(255, 215, 0, 0.15);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.06) 0%, var(--bg-card) 100%);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.05);
}

.podium-crown {
    position: absolute;
    top: -14px;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
}

.podium-avatar {
    font-size: 36px;
}

.podium-first .podium-avatar {
    font-size: 42px;
}

.podium-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.podium-first .podium-name {
    font-size: 14px;
}

.podium-score {
    font-size: 14px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
}

.podium-first .podium-score {
    font-size: 16px;
}

.podium-medal {
    font-size: 20px;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 400px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.leaderboard-list.expanded {
    max-height: 2000px;
}

.lb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: default;
}

.lb-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.lb-rank {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 28px;
    text-align: center;
}

.lb-rank.top-1 { color: #FFD700; }
.lb-rank.top-2 { color: #C0C0C0; }
.lb-rank.top-3 { color: #CD7F32; }

.lb-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(124, 92, 252, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.lb-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.lb-name .lb-badge {
    font-size: 10px;
    color: var(--primary);
    background: rgba(124, 92, 252, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.lb-score {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.lb-score span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.lb-trend {
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: right;
}

.lb-trend.up { color: #00D4AA; }
.lb-trend.down { color: #FF6B9D; }
.lb-trend.stable { color: var(--text-muted); }

.leaderboard-toggle {
    display: block;
    margin: 16px auto 0;
    padding: 10px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.leaderboard-toggle:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
}

/* === UPDATED PHONE MOCKUP === */
.screen-top-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.screen-app-title {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
}

.screen-app-badge {
    font-size: 9px;
    font-weight: 700;
    color: #00D4AA;
    background: rgba(0, 212, 170, 0.12);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.screen-balance-card {
    background: linear-gradient(145deg, rgba(124, 92, 252, 0.12), rgba(124, 92, 252, 0.04));
    border: 1px solid rgba(124, 92, 252, 0.2);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.screen-balance-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.balance-card-label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.balance-card-amount {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.balance-card-change {
    display: block;
    font-size: 10px;
    color: #00D4AA;
    font-weight: 600;
    margin-top: 2px;
}

.screen-earn-btn {
    padding: 14px;
    background: var(--gradient-1);
    border-radius: 10px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.screen-stats-row {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.screen-stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
}

.ss-label {
    display: block;
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.ss-value {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.ss-value.accent-teal { color: #00D4AA; }
.ss-value.accent-pink { color: #FF6B9D; }

.screen-activity {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.1);
    border-radius: 8px;
}

.activity-dot {
    width: 6px; height: 6px;
    background: #00D4AA;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.activity-text {
    font-size: 10px;
    color: var(--accent-teal);
    font-weight: 500;
}

/* CTA badge */
.cta-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse-glow-gold 2.5s ease-in-out infinite;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .leaderboard-podium {
        gap: 10px;
    }

    .podium-item {
        min-width: 110px;
        padding: 20px 14px 16px;
    }

    .podium-first {
        min-width: 130px;
    }

    .podium-avatar { font-size: 28px; }
    .podium-first .podium-avatar { font-size: 34px; }
    .podium-name { font-size: 11px; }
    .podium-score { font-size: 12px; }
    .podium-first .podium-score { font-size: 14px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-subtitle .hide-mobile {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .preview-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .phone-mockup {
        transform: scale(0.8);
    }

    .stats-container {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1;
        min-width: 120px;
    }

    .version-card {
        padding: 32px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        gap: 32px;
    }

    section {
        padding: 64px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .cursor-dot, .cursor-outline, #cursor-glow {
        display: none;
    }

    body {
        cursor: auto;
    }

    /* Guarantee mobile */
    .guarantee-main {
        padding: 32px 20px;
    }

    .guarantee-methods {
        flex-direction: column;
    }

    .gm-box {
        min-width: unset;
    }

    .guarantee-amount-value {
        font-size: 48px;
    }

    .guarantee-strip {
        gap: 8px;
    }

    .gs-item {
        min-width: 70px;
        padding: 12px 6px;
    }

    .gs-divider {
        display: none;
    }

    .guarantee-countdown-box {
        padding: 12px 20px;
    }

    .gcb-value {
        font-size: 22px;
    }

    /* Leaderboard mobile */
    .leaderboard-podium {
        flex-wrap: wrap;
        gap: 8px;
        padding-bottom: 16px;
    }

    .podium-item {
        min-width: 95px;
        padding: 16px 10px 14px;
        gap: 4px;
    }

    .podium-item[data-rank="2"],
    .podium-item[data-rank="3"] {
        transform: translateY(10px);
    }

    .podium-first {
        min-width: 110px;
        padding-top: 24px;
    }

    .podium-avatar { font-size: 24px; }
    .podium-first .podium-avatar { font-size: 28px; }
    .podium-crown { font-size: 18px; top: -10px; }
    .podium-name { font-size: 10px; }
    .podium-score { font-size: 11px; }
    .podium-first .podium-score { font-size: 12px; }

    .lb-item {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        transform: scale(0.7);
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .version-meta {
        flex-direction: column;
        gap: 8px;
    }

    .guarantee-grid {
        flex-direction: column;
    }

    .guarantee-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .leaderboard-podium {
        gap: 4px;
    }

    .podium-item {
        min-width: 80px;
        padding: 12px 8px 10px;
    }

    .podium-first {
        min-width: 95px;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        transform: scale(0.75);
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .version-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* === SCREEN GAME BUTTON === */
.screen-game-btn {
    background: linear-gradient(135deg, #00E5FF 0%, #FF3D8A 100%);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}

/* === GAME SECTION === */
.game {
    background: linear-gradient(180deg, #060613 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

.game-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.orb-game-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    top: -200px; right: -200px;
    animation-delay: -5s;
}

.orb-game-2 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(255, 61, 138, 0.1) 0%, transparent 70%);
    bottom: -200px; left: -200px;
    animation-delay: -11s;
}

.game-gradient-text {
    background: linear-gradient(135deg, #00E5FF 0%, #FF3D8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.game-visual {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

/* Game screen mockup */
.game-screen {
    position: relative;
    width: 300px;
    height: 460px;
    border-radius: 20px;
    background: linear-gradient(180deg, #050510 0%, #0b0b1c 55%, #0e0615 100%);
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow:
        0 0 60px rgba(0, 229, 255, 0.1),
        0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: var(--transition);
}

.game-screen:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 80px rgba(0, 229, 255, 0.16),
        0 40px 80px rgba(0, 0, 0, 0.6);
}

.game-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.035) 50%, transparent 100%),
        linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px);
    background-size: 100% 56px, 100% 100%;
    animation: gameSpeed 1.2s linear infinite;
    z-index: 1;
}

@keyframes gameSpeed {
    to { background-position: 0 56px, 0 0; }
}

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

.game-hud-score {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 700;
    color: #00E5FF;
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}

.game-hud-live {
    font-size: 12px;
    color: #FF3D8A;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.game-lane {
    position: absolute;
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(0, 229, 255, 0.1);
    z-index: 1;
}

.lane-1 { left: 33.33%; }
.lane-2 { left: 66.66%; }

/* Player ship */
.game-player {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 46px;
    z-index: 5;
    animation: playerHover 2.4s ease-in-out infinite;
}

@keyframes playerHover {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

.player-wing {
    position: absolute;
    top: 16px;
    width: 0; height: 0;
}

.player-wing.wing-l {
    left: 1px;
    border-left: 13px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 26px solid #00E5FF;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.8));
}

.player-wing.wing-r {
    right: 1px;
    border-right: 13px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 26px solid #00E5FF;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.8));
}

.player-core {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #00E5FF 100%);
    clip-path: polygon(50% 0, 100% 100%, 50% 78%, 0 100%);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.9);
}

.player-trail {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 24px;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.7), transparent);
    border-radius: 4px;
    animation: trailFlicker 0.4s ease-in-out infinite alternate;
}

@keyframes trailFlicker {
    from { opacity: 0.5; height: 18px; }
    to { opacity: 1; height: 26px; }
}

/* Enemies */
.game-enemy {
    position: absolute;
    z-index: 4;
    width: 26px;
    height: 26px;
}

.enemy-1 {
    top: 96px;
    left: 20%;
    background: linear-gradient(135deg, #FF2D55, #ff8aa5);
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    box-shadow: 0 0 12px rgba(255, 45, 85, 0.7);
    animation: enemyDrop 4.5s linear infinite;
}

.enemy-2 {
    top: 170px;
    left: 66%;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #B388FF, #ff8aa5);
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    box-shadow: 0 0 10px rgba(179, 136, 255, 0.7);
    animation: enemyDrop 3.8s linear infinite 0.8s;
}

@keyframes enemyDrop {
    0% { transform: translateY(0); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0); }
}

/* Crystals */
.game-crystal {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #FFD700;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
    z-index: 4;
    animation: crystalPulse 1.2s ease-in-out infinite;
}

.crystal-1 { top: 220px; left: 42%; }
.crystal-2 { top: 300px; left: 22%; animation-delay: 0.5s; }

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

/* Laser */
.game-laser {
    position: absolute;
    bottom: 84px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 190px;
    background: linear-gradient(180deg, transparent, #00E5FF 20%, #ffffff);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.9);
    z-index: 3;
    opacity: 0.95;
    animation: laserFlicker 0.9s ease-in-out infinite;
}

@keyframes laserFlicker {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 0.45; }
}

/* Boss */
.game-boss {
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: 104px;
    height: 104px;
    z-index: 4;
}

.boss-core {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff2d55 0%, #6e0f26 100%);
    box-shadow: 0 0 26px rgba(255, 45, 85, 0.75);
}

.boss-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 45, 85, 0.35);
    border-top-color: #ff2d55;
    animation: spin 6s linear infinite;
}

.boss-label {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #FF3D8A;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 61, 138, 0.6);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Game message */
.game-message {
    position: absolute;
    bottom: 118px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 6;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
    animation: msgFlicker 2.4s ease-in-out infinite;
}

@keyframes msgFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

/* Game info column */
.game-info {
    flex: 1;
    min-width: 300px;
}

.game-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.game-desc strong {
    color: var(--text-primary);
}

.game-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.game-point-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.game-point-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-3px);
}

.gp-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 15px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--gp-color) 12%, transparent);
    color: var(--gp-color);
    border: 1px solid color-mix(in srgb, var(--gp-color) 28%, transparent);
}

.game-point-item h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.game-point-item p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* === LEGAL PAGE === */
.legal-page {
    position: relative;
    min-height: 100vh;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--nav-height) + 56px) 24px 96px;
    z-index: 1;
}

.legal-page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124, 92, 252, 0.12), transparent 60%),
        radial-gradient(ellipse 60% 40% at 90% 110%, rgba(255, 107, 157, 0.07), transparent 60%),
        var(--bg-primary);
}

.legal-page-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 880px;
    margin: 0 auto 36px;
}

.legal-page-logo {
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 26px;
    color: white;
    box-shadow: 0 8px 25px var(--primary-glow);
    flex-shrink: 0;
}

.legal-page-header h1 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.legal-page-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.legal-page-tabs {
    position: relative;
    display: flex;
    gap: 8px;
    max-width: 880px;
    margin: 0 auto 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
    scrollbar-width: none;
}

.legal-page-tabs::-webkit-scrollbar {
    display: none;
}

.legal-page-tabs .legal-tab {
    padding: 10px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.legal-page-tabs .legal-tab:hover {
    color: var(--text-primary);
    border-color: rgba(124, 92, 252, 0.35);
}

.legal-page-tabs .legal-tab.active {
    color: #fff;
    background: rgba(124, 92, 252, 0.15);
    border-color: var(--primary);
}

.legal-panels {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 40px 48px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.legal-panel {
    display: none;
}

.legal-panel.active {
    display: block;
}

.legal-panel h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 26px 0 8px;
}

.legal-panel h4:first-child {
    margin-top: 0;
}

.legal-panel p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-panel ul {
    margin: 0 0 12px 20px;
}

.legal-panel ul li {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal-panel a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-panel a:hover {
    color: var(--accent-pink);
}

/* === FAQ ANSWER HEIGHT === */
.faq-item.active .faq-answer {
    max-height: 600px;
}

/* === RESPONSIVE: GAME + LEGAL === */
@media (max-width: 768px) {
    .game-content {
        flex-direction: column;
        gap: 48px;
    }

    .game-points {
        grid-template-columns: 1fr;
    }

    .legal-page {
        padding: calc(var(--nav-height) + 40px) 16px 72px;
    }

    .legal-page-header {
        margin-bottom: 28px;
    }

    .legal-page-tabs {
        margin-bottom: 20px;
    }

    .legal-panels {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .legal-page-header h1 {
        font-size: 24px;
    }

    .legal-page-logo {
        width: 46px;
        height: 46px;
        font-size: 22px;
        border-radius: 12px;
    }

    .legal-page-tabs .legal-tab {
        padding: 9px 16px;
        font-size: 12px;
    }

    .legal-panels {
        padding: 24px 18px;
    }

    .game-visual {
        min-width: 0;
        transform: scale(0.9);
    }
}
