.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 500;
}

.nav-links a {
    color: var(--muted);
    position: relative;
    transition: color .25s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    inset: auto 0 -6px 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    opacity: 1;
    transform: translateY(0);
}
:root {
    --bg: #050816;
    --bg-alt: #0f1629;
    --bg-soft: rgba(15, 23, 42, 0.65);
    --card: rgba(13, 19, 33, 0.92);
    --card-alt: rgba(29, 37, 58, 0.92);
    --border: rgba(94, 234, 212, 0.12);
    --border-strong: rgba(56, 189, 248, 0.45);
    --primary: #38f8d7;
    --primary-dark: #0ea5e9;
    --accent: #f97316;
    --accent-2: #facc15;
    --white: #f8fafc;
    --muted: rgba(226, 232, 240, 0.65);
    --gradient-1: radial-gradient(circle at top right, rgba(14, 197, 240, 0.35), rgba(8, 18, 38, 0.1));
    --gradient-2: linear-gradient(135deg, rgba(56, 189, 248, 0.45), rgba(14, 165, 233, 0.1));
    --gradient-hero: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.25), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.25), transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(250, 204, 21, 0.25), transparent 60%),
        #050816;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-soft: 0 20px 50px rgba(10, 18, 41, 0.55);
    --shadow-hard: 0 25px 80px rgba(10, 18, 41, 0.75);
    --blur: blur(18px);
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

body.theme-dark {
    margin: 0;
    font-family: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--white);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.page {
    position: relative;
    overflow: hidden;
}

.page::before,
.page::after {
    content: '';
    position: fixed;
    inset: auto auto 10% -10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 70%);
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
}

.page::after {
    inset: 5% -12% auto auto;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.35), transparent 70%);
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .9rem clamp(1.25rem, 5vw, 3rem);
    backdrop-filter: blur(12px);
    background: rgba(5, 8, 22, 0.72);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    cursor: pointer;
}

.brand__logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.35);
    background: rgba(15, 23, 42, 0.6);
    padding: .4rem;
}

.brand__text {
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--white);
}



.nav-actions {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    border-radius: 999px;
    padding: .75rem 1.75rem;
    font-weight: 600;
    letter-spacing: .01em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-inline {
    background: var(--card);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: var(--white);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #041022;
    box-shadow: 0 16px 30px rgba(13, 148, 136, 0.35);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(13, 148, 136, 0.45);
}

.btn-outline {
    border: 1px solid var(--border-strong);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(56, 189, 248, 0.12);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: var(--white);
}

.btn-ghost:hover {
    background: rgba(148, 163, 184, 0.18);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero {
    padding: 6rem clamp(1.25rem, 6vw, 4.5rem);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto auto -20% 35%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.15), transparent 65%);
    filter: blur(70px);
    opacity: .7;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

/* ... hero__badge styles remain but static badge text used ... */

.hero__copy h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    margin-bottom: 1.25rem;
}

.hero__copy p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 2.5rem;
}

/* ... existing hero stats styling kept, values are static in markup ... */

.hero__visual {
    display: flex;
    justify-content: center;
}

.glow-card {
    position: relative;
    padding: 2.5rem;
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(56, 189, 248, 0.25);
    box-shadow: var(--shadow-soft);
    min-width: 280px;
    max-width: 340px;
}

.glow-card::before {
    content: '';
    position: absolute;
    inset: -25% -35%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 70%);
    filter: blur(50px);
    opacity: 0.6;
    z-index: -1;
}

.glow-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.glow-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: .75rem;
    color: var(--muted);
}

.glow-card ul li::before {
    content: '▹';
    margin-right: .5rem;
    color: var(--primary);
}

.glow-meter {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.35);
}

.glow-meter strong {
    font-size: 1.45rem;
    letter-spacing: .04em;
}

.section {
    padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 6vw, 4.5rem);
}

.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(2rem, 6vw, 3rem);
}

.section__overline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
}

.section__overline::before {
    content: '';
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.45), transparent);
}

.section__header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section__header p {
    color: var(--muted);
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    position: relative;
    padding: 2rem;
    background: var(--card-alt);
    border-radius: var(--radius-md);
    border: 1px solid rgba(56, 189, 248, 0.25);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -20% -20% auto auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 70%);
    opacity: .4;
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 1.75rem;
    background: rgba(8, 18, 38, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-card__icon::before {
    content: '';
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 4px 10px rgba(56, 189, 248, 0.35));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338f8d7' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.5 4.5L19 9l-3.5 4 1 5.5L12 16l-4.5 2.5 1-5.5L5 9l4.5-1.5L12 3z'/%3E%3C/svg%3E");
}

.feature-card:nth-child(1) .feature-card__icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2338f8d7' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.5 4.5L19 9l-3.5 4 1 5.5L12 16l-4.5 2.5 1-5.5L5 9l4.5-1.5L12 3z'/%3E%3C/svg%3E");
}

.feature-card:nth-child(2) .feature-card__icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='14' rx='3'/%3E%3Cpath d='M7 8h10M7 12h6M7 16h4'/%3E%3Ccircle cx='17.5' cy='12.5' r='1.5' fill='%23facc15' stroke='none'/%3E%3C/svg%3E");
}

.feature-card:nth-child(3) .feature-card__icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%230ea5e9' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 4v5c0 5-3.5 7.5-7 9-3.5-1.5-7-4-7-9V7l7-4z'/%3E%3Cpath d='M10 11l2 2 4-4'/%3E%3C/svg%3E");
}

.feature-card h3 {
    margin: 0 0 .75rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.section--games {
    position: relative;
}

.games-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
}

.game-card {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: var(--radius-md);
    background: rgba(10, 16, 29, 0.92);
    border: 1px solid rgba(94, 234, 212, 0.12);
    overflow: hidden;
    min-height: 210px;
}

.game-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.35), transparent 65%);
    opacity: .35;
}

.game-card__tag {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--primary);
}

.game-card h3 {
    margin: 1.2rem 0 .6rem;
}

.game-card p {
    color: var(--muted);
}

.game-card__cta {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .6rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.game-card__cta:hover {
    background: rgba(255, 255, 255, 0.08);
}

.section--seo {
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.15), transparent 65%), #060b1a;
}

.seo-layout {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
    gap: clamp(2rem, 6vw, 3.5rem);
}

.seo-sidebar {
    padding: 2.5rem;
    background: rgba(10, 16, 29, 0.92);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(94, 234, 212, 0.2);
    box-shadow: var(--shadow-soft);
}

.seo-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: grid;
    gap: .75rem;
}

.seo-points li {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--muted);
}

.seo-points span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.18);
}

.seo-content {
    padding: 2.5rem;
    background: rgba(5, 11, 24, 0.9);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(56, 189, 248, 0.15);
    line-height: 1.8;
    color: var(--muted);
}

.seo-content h2,
.seo-content h3 {
    color: var(--white);
}

.seo-cta {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.section--faq {
    background: rgba(5, 11, 24, 0.85);
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(7, 15, 32, 0.92);
    border-radius: var(--radius-md);
    border: 1px solid rgba(94, 234, 212, 0.18);
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
}

.faq-item header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.faq-item h3 {
    margin: 0;
}

.faq-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(56, 189, 248, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.faq-toggle span {
    width: 14px;
    height: 2px;
    background: var(--white);
    position: relative;
}

.faq-toggle span::after {
    content: '';
    position: absolute;
    inset: -6px auto auto 0;
    width: 2px;
    height: 14px;
    background: var(--white);
    transition: transform .25s ease;
}

.faq-item.open .faq-toggle span::after {
    transform: scaleY(0);
}

.faq-answer {
    margin-top: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer.open {
    max-height: 400px;
}

.section--cta {
    padding-bottom: clamp(5rem, 10vw, 7rem);
}

.cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 2rem;
    padding: clamp(2.5rem, 6vw, 3.5rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(14, 165, 233, 0.08));
    border: 1px solid rgba(56, 189, 248, 0.35);
    box-shadow: var(--shadow-hard);
}

.cta-card__copy p {
    color: var(--muted);
    line-height: 1.7;
}

.cta-card__actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: flex-start;
}

.site-footer {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 3.5rem);
    padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 6vw, 4rem) clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, rgba(5, 8, 22, 0.92), rgba(2, 6, 23, 0.88));
    border-top: 1px solid rgba(56, 189, 248, 0.25);
}

.site-footer::before,
.site-footer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.site-footer::before {
    inset: -35% auto auto -10%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.3), transparent 70%);
    filter: blur(80px);
}

.site-footer::after {
    inset: auto -35% -45% auto;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 75%);
    filter: blur(70px);
}

.site-footer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(2rem, 5vw, 3rem);
    align-items: flex-start;
}

.site-footer__col {
    position: relative;
}

.brand--footer .brand__logo {
    width: 32px;
    height: 32px;
}

.site-footer__col h4 {
    margin-top: 0;
}

.site-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .65rem;
    color: var(--muted);
}

.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.seo-tags li {
    padding: .35rem .75rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--primary);
    font-size: .75rem;
    text-transform: uppercase;
}

.site-footer__bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    color: rgba(148, 163, 184, 0.5);
    font-size: .85rem;
}

@media (max-width: 1024px) {
    .top-nav {
        gap: .75rem;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: .75rem 1.1rem;
        gap: .5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .brand__logo {
        width: 44px;
        height: 44px;
    }

    .brand__text {
        font-size: .9rem;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: .6rem;
        width: 100%;
        justify-content: center;
    }

    .nav-actions .btn,
    .nav-actions .btn-outline {
        padding: .6rem 1.2rem;
        flex: 1;
        max-width: 200px;
    }

    .hero {
        padding-top: 3.1rem;
        padding-bottom: 3.6rem;
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        gap: .65rem;
        flex-direction: column;
        align-items: stretch;
    }

    .hero__stats {
        margin-top: 1.1rem;
    }

    .hero__visual {
        margin-top: 1.2rem;
    }

    .seo-layout {
        grid-template-columns: 1fr;
    }

    .cta-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .nav-actions {
        width: 100%;
        justify-content: center;
        gap: .55rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__stats {
        width: 100%;
        gap: .6rem;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        margin: 1rem 0 1.2rem;
    }
}

