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

:root {
    --bg: #06060b;
    --bg-card: #0d0d16;
    --bg-elevated: #111120;
    --border: rgba(255, 255, 255, 0.06);
    --text: #e0e0e0;
    --text-muted: #888;
    --text-dim: #555;
    --red: #e53935;
    --red-glow: rgba(229, 57, 53, 0.25);
    --blue: #42a5f5;
    --blue-glow: rgba(66, 165, 245, 0.25);
    --green: #00e676;
    --green-glow: rgba(0, 230, 118, 0.3);
    --gradient: linear-gradient(135deg, var(--red), #ff6f00, var(--blue));
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), #00c853);
    color: #0a0a0f;
    box-shadow: 0 4px 24px var(--green-glow);
}

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

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.btn-xl {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(6, 6, 11, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.4em;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: linear-gradient(135deg, var(--green), #00c853);
    color: #0a0a0f !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 16px var(--green-glow);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

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

.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== LANGUAGE SELECT ===== */
.web-lang-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    transition: all 0.2s;
    margin-left: 12px;
}
.web-lang-select:hover,
.web-lang-select:focus {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text);
}
.web-lang-select option {
    background: #111;
    color: #eee;
}

/* ===== HERO ===== */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
    position: relative;
}

.hero-bg-grid {
    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;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}

.hero-content {
    flex: 1;
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--text-dim);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== GAME PREVIEW ===== */
.hero-visual {
    flex: 0 0 420px;
    position: relative;
    z-index: 1;
}

.game-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(229, 57, 53, 0.08),
        0 0 60px rgba(66, 165, 245, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.preview-dot.red { background: #ff5f57; }
.preview-dot.yellow { background: #febc2e; }
.preview-dot.green { background: #28c840; }

.preview-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-left: 8px;
}

.preview-body {
    padding: 24px;
}

.preview-canvas {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: block;
}

.preview-scores {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.score-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    min-width: 100px;
}

.score-red .score-name { color: var(--red); }
.score-blue .score-name { color: var(--blue); }

.score-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.score-fill {
    display: block;
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s;
}

.sf1 {
    width: 72%;
    background: linear-gradient(90deg, var(--red), #ff7043);
    animation: grow1 3s ease-in-out infinite;
}

.sf2 {
    width: 55%;
    background: linear-gradient(90deg, var(--blue), #90caf9);
    animation: grow2 3.5s ease-in-out infinite;
}

@keyframes grow1 {
    0%, 100% { width: 72%; }
    50% { width: 82%; }
}

@keyframes grow2 {
    0%, 100% { width: 55%; }
    50% { width: 68%; }
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

/* ===== SOCIAL PROOF ===== */
.proof-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.12), rgba(255, 111, 0, 0.08), rgba(66, 165, 245, 0.12));
    border: 1px solid rgba(229, 57, 53, 0.25);
    border-radius: 18px;
    padding: 12px 24px;
    margin: 0 auto 100px;
    width: fit-content;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(229, 57, 53, 0.12), 0 0 80px rgba(66, 165, 245, 0.06);
    animation: proofGlow 2.5s ease-in-out infinite alternate;
    position: relative;
    z-index: 10;
}

@keyframes proofGlow {
    0% { box-shadow: 0 0 25px rgba(229, 57, 53, 0.1), 0 0 50px rgba(66, 165, 245, 0.05); border-color: rgba(229, 57, 53, 0.25); }
    100% { box-shadow: 0 0 50px rgba(229, 57, 53, 0.22), 0 0 100px rgba(66, 165, 245, 0.1); border-color: rgba(255, 111, 0, 0.45); }
}

.proof-stat {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
}

.proof-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6f00, #e53935, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -2px;
}

.proof-plus {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #42a5f5, #00e676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 2px;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-headline {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.proof-fire {
    font-size: 1rem;
    display: inline-block;
    animation: fireFlicker 0.6s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
    0% { transform: scale(1) rotate(-3deg); }
    100% { transform: scale(1.15) rotate(3deg); }
}

.proof-trend {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ff9100;
    letter-spacing: 0.3px;
}

@media (max-width: 640px) {
    .proof-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
        gap: 12px;
        border-radius: 16px;
        margin-bottom: 20px;
    }
    .proof-number { font-size: 2.8rem; }
    .proof-plus { font-size: 1.8rem; }
    .proof-text { align-items: center; }
}

/* ===== FEATURES ===== */
.features {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

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

/* ===== HOW IT WORKS ===== */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-top: 60px;
    flex-shrink: 0;
}

/* ===== COMMANDS ===== */
.commands {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cmd-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(10px);
}

.cmd-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.cmd-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cmd-emoji {
    font-size: 1.8rem;
}

.cmd-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.cmd-desc {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ===== PRICING ===== */
.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.pricing-popular {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0a0a0f;
    background: var(--gradient);
    padding: 8px 28px;
    border-radius: 0 0 var(--radius) var(--radius);
    margin-bottom: 28px;
}

.pricing-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

.pricing-price {
    margin: 28px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features .check {
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-secure {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pricing-secure svg {
    color: var(--text-dim);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item summary {
    padding: 20px 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--text-dim);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    color: white;
}

.faq-item p {
    padding: 0 0 20px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
    text-align: center;
    padding: 100px 24px;
    background: radial-gradient(ellipse at center, rgba(229, 57, 53, 0.06) 0%, transparent 70%);
}

.final-cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .hero-visual {
        flex: none;
        width: 100%;
        max-width: 420px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(6, 6, 11, 0.96);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu-btn {
        display: flex;
    }

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

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

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

    .pricing-card {
        padding: 0 24px 32px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .commands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .price-amount {
        font-size: 2.8rem;
    }

    .btn-xl {
        padding: 16px 24px;
        font-size: 0.95rem;
    }
}
