* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0a0a0f;
    --bg2: #12121a;
    --bg3: #1a1a2e;
    --text: #e0e0e8;
    --text2: #8888a0;
    --accent: #6c5ce7;
    --accent2: #a29bfe;
    --green: #00b894;
    --border: #2a2a3e;
    --radius: 12px;
}

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;
}

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

a { color: var(--accent2); text-decoration: none; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #5a4bd6; transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent2); }

/* Nav */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1140px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.logo { font-weight: 800; font-size: 1.3rem; color: var(--text); }
.logo span { color: var(--accent2); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text2); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; }

/* Hero */
.hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(108, 92, 231, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.gradient-text {
    background: linear-gradient(135deg, var(--accent2), var(--green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub { color: var(--text2); font-size: 1.15rem; max-width: 540px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 16px; }
.hero-trust { text-align: center; color: var(--green); font-size: 0.85rem; font-weight: 500; margin-bottom: 48px; letter-spacing: 0.02em; }
.hero-stats { display: flex; justify-content: center; gap: 64px; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--accent2); }
.stat-label { font-size: 0.8rem; color: var(--text2); text-transform: uppercase; letter-spacing: 0.05em; }

/* Sections */
section { padding: 100px 0; }
h2 { font-size: 2.2rem; font-weight: 800; text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text2); margin-bottom: 48px; font-size: 1.05rem; }

/* Game Grid */
.games { background: var(--bg2); }
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.game-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
    color: var(--text);
    text-decoration: none;
    display: block;
}
.game-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.game-icon { font-size: 2rem; margin-bottom: 12px; }
.game-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.game-card p { color: var(--text2); font-size: 0.9rem; margin-bottom: 16px; }
.price-tag {
    display: inline-block;
    background: rgba(108, 92, 231, 0.15);
    color: var(--accent2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.game-card-cta { border-style: dashed; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }

/* Why Section */
.features { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.feature {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.feature-icon { font-size: 2rem; margin-bottom: 12px; }
.feature h3 { margin-bottom: 8px; font-size: 1.1rem; }
.feature p { color: var(--text2); font-size: 0.9rem; }

/* Pricing */
.pricing { background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    text-align: center;
}
.pricing-card.popular { border-color: var(--accent); }
.popular-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    padding: 4px 16px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.pricing-amount { font-size: 2.5rem; font-weight: 800; margin-bottom: 24px; }
.pricing-amount span { font-size: 1rem; font-weight: 400; color: var(--text2); }
.pricing-card ul { list-style: none; margin-bottom: 28px; }
.pricing-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text2);
    font-size: 0.9rem;
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card .btn { width: 100%; text-align: center; }
.pricing-addon { text-align: center; margin-top: 32px; padding: 20px; background: rgba(108, 92, 231, 0.08); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text2); font-size: 0.95rem; }
.pricing-addon strong { color: var(--accent2); }

/* CTA */
.cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 184, 148, 0.1));
}
.cta p { color: var(--text2); margin: 12px 0 32px; font-size: 1.1rem; }
.cta-sub { margin-top: 16px; color: var(--text2); font-size: 0.85rem; }

/* Footer */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding-top: 60px; }
.footer-inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-brand p { color: var(--text2); margin-top: 8px; font-size: 0.9rem; }
.footer-billing { color: var(--green) !important; font-size: 0.8rem !important; }
.footer-contact a { color: var(--accent2); }
.footer-contact a:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 64px; }
.footer-links h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text2); margin-bottom: 12px; }
.footer-links a { display: block; color: var(--text2); font-size: 0.9rem; margin-bottom: 8px; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text2);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
    .nav-links.open { display: flex; }
    .mobile-toggle { display: block; }
    .hero { padding: 120px 0 60px; }
    .hero-stats { gap: 32px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .features { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-links { gap: 32px; }
}
