﻿:root {
    --void: #F5F6FB;
    --void-2: #FFFFFF;
    --cloud: #0F1220;
    --panel-dark: rgba(15,18,32,0.035);
    --panel-line: rgba(15,18,32,0.10);
    --ink: #002147;
    --ink-dim: #002147;
    --violet: #6D5DFC;
    --violet-2: #5B4AE0;
    --coral: #E5484D;
    --mint: #0EA678;
    --gold: #B7791F;
    --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-sm: 9px;
    --ease: cubic-bezier(.16,.84,.44,1);
}

@font-face {
    font-family: 'Space Grotesk';
    src: local('Space Grotesk');
    font-display: swap;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

body {
    margin: 0;
    background: var(--void);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

    body.dark-mode {
        --void: #0F1220;
        --void-2: #171B2E;
        --panel-dark: rgba(255,255,255,0.04);
        --panel-line: rgba(255,255,255,0.09);
        --ink: #E7E9F5;
        --ink-dim: #009;
        --violet-2: #8B7CFF;
        --coral: #FF6B6B;
        --mint: #2EE6A6;
        --gold: #F5B942;
    }

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(1240px, 92%);
    margin-inline: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: 0;
    top: -60px;
    background: var(--violet);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 10px 0;
    z-index: 9999;
    transition: top .2s var(--ease);
}

    .skip-link:focus {
        top: 0;
    }

:focus-visible {
    outline: 3px solid var(--mint);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- Reading progress ---------- */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg,var(--violet),var(--coral));
    z-index: 1000;
    transition: width .1s linear;
}

/* ---------- Header ---------- */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    backdrop-filter: blur(14px) saturate(140%);
    background:#333;
    border-bottom: 1px solid var(--panel-line);
}

.nav-row {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 14px 0;
}
.navbar {
    background: #1d3557;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 65px;
    position: relative;
    z-index: 9999;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
}

/* ==========================
   MAIN MENU
========================== */

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex: 1;
}

    .menu > li {
        position: relative;
    }

        .menu > li > a {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 22px 18px;
            transition: .3s;
            white-space: nowrap;
        }

        .menu > li:hover > a {
            background: #457b9d;
        }

    /* ==========================
   FIRST DROPDOWN
========================== */

    .menu li ul {
        list-style: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 240px;
        background: #1d3557;
        display: none;
        padding: 0;
        margin: 0;
        border-radius: 6px;
        box-shadow: 0 10px 25px rgba(0,0,0,.25);
        z-index: 99999;
    }

    /* Show submenu */

    .menu li:hover > ul {
        display: block;
    }

    /* ==========================
   SECOND & THIRD LEVEL
========================== */

    .menu li ul li {
        position: relative;
    }

        .menu li ul li a {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 12px 18px;
            background: #1d3557;
            transition: .3s;
        }

            .menu li ul li a:hover {
                background: #2f5d8a;
            }

        /* Third level */

        .menu li ul li ul {
            top: 0;
            left: 100%;
        }

/* ==========================
   MOBILE MENU
========================== */

#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:992px) {

    .navbar {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 20px;
    }

    .hamburger {
        display: block;
    }

    .menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #1d3557;
        margin-top: 10px;
    }

    #menu-toggle:checked ~ .menu {
        display: flex;
    }

    .menu > li {
        width: 100%;
    }

        .menu > li > a {
            padding: 14px 20px;
            border-top: 1px solid rgba(255,255,255,.08);
        }

    /* Mobile dropdown */

    .menu li ul {
        position: static;
        display: none;
        width: 100%;
        background: #294a72;
        border-radius: 0;
        box-shadow: none;
    }

    .menu li:hover > ul {
        display: block;
    }

    .menu li ul li ul {
        position: static;
        display: none;
        background: #355b87;
    }

    .menu li ul li:hover > ul {
        display: block;
    }

    .menu li ul li a {
        padding-left: 35px;
    }

    .menu li ul li ul li a {
        padding-left: 55px;
    }
}


.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color:#fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.28rem;
    letter-spacing: -.01em;
    margin-right: auto;
}

    .brand .grid-mark {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        background: linear-gradient(var(--panel-line),var(--panel-line)) 0 0/1px 100%, linear-gradient(var(--panel-line),var(--panel-line)) 100% 0/1px 100%, linear-gradient(90deg,var(--panel-line),var(--panel-line)) 0 0/100% 1px, linear-gradient(90deg,var(--panel-line),var(--panel-line)) 0 100%/100% 1px, linear-gradient(135deg,var(--violet),var(--coral));
        background-repeat: no-repeat;
        position: relative;
        flex-shrink: 0;
    }
.brand-text h2 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
    font-family: var(--font-display);
}

.brand-text span {
    font-size: .7rem;
    color: var(--text-muted);
}
.grid-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--void) 1px, transparent 1px), linear-gradient(90deg, var(--void) 1px, transparent 1px);
    background-size: 33% 33%;
    opacity: .35;
    border-radius: 8px;
}

/* ---------- Desktop flyout (level 3) ---------- */
.flyout-panel {
    position: absolute;
    top: -8px;
    left: calc(100% + 8px);
    min-width: 200px;
    background: var(--void-2);
    border: 1px solid var(--panel-line);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: 0 22px 44px -18px rgba(15,18,32,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
    z-index: 960;
}

.dropdown-panel .sub-item:hover > .flyout-panel,
.dropdown-panel .sub-item.open > .flyout-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.flyout-panel a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: .85rem;
    color: var(--ink-dim);
    font-weight: 500;
}

    .flyout-panel a:hover {
        background: var(--panel-dark);
        color: var(--violet-2);
    }

/* ---------- Mobile accordion nav ---------- */
#mobile-nav {
    display: none;
}

    #mobile-nav.open {
        display: flex;
    }

    #mobile-nav .m-item {
        border-bottom: 1px solid var(--panel-line);
    }

        #mobile-nav .m-item:first-child {
            border-top: 1px solid var(--panel-line);
        }

    #mobile-nav > .m-item > a, #mobile-nav > .m-item > button.m-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 15px 4px;
        font-size: .98rem;
        font-weight: 600;
        color: var(--ink);
        background: none;
        border: none;
        font-family: inherit;
        cursor: pointer;
    }

    #mobile-nav .m-toggle .caret {
        width: 11px;
        height: 11px;
        transition: transform .22s var(--ease);
    }

    #mobile-nav .m-item.open > .m-toggle .caret {
        transform: rotate(180deg);
    }

.m-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s var(--ease);
    padding-left: 14px;
}

.m-item.open > .m-submenu {
    max-height: 1200px;
}

.m-submenu .m-sub-item > a, .m-submenu .m-sub-item > button.m-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 4px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink-dim);
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    border-top: 1px dashed var(--panel-line);
}

.m-sub-item.open > .m-toggle .caret {
    transform: rotate(180deg);
}

.m-subsubmenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .22s var(--ease);
    padding-left: 14px;
}

.m-sub-item.open > .m-subsubmenu {
    max-height: 800px;
}

.m-subsubmenu a {
    display: block;
    padding: 10px 4px;
    font-size: .86rem;
    color: var(--ink-dim);
    border-top: 1px dotted var(--panel-line);
}

    .m-subsubmenu a:hover {
        color: var(--violet-2);
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--panel-line);
    background: var(--panel-dark);
    color: var(--ink);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: border-color .2s, transform .15s;
}

    .icon-btn:hover {
        border-color: var(--violet-2);
        transform: translateY(-1px);
    }

.btn-primary {
    background: linear-gradient(135deg,var(--violet),var(--violet-2));
    color: #fff;
    padding: 10px 20px;
    border-radius: 11px;
    font-weight: 600;
    font-size: .92rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 22px -8px rgba(109,93,252,.65);
    transition: transform .18s var(--ease), box-shadow .18s;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px -8px rgba(109,93,252,.8);
    }

.hamburger {
    display: none;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 28px 0 30px;
    overflow: hidden;
    border-bottom: 1px solid var(--panel-line);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .5;
    background-image: linear-gradient(var(--panel-line) 1px, transparent 1px), linear-gradient(90deg, var(--panel-line) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse 60% 55% at 50% 30%, black, transparent 75%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: .76rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--mint);
    background: rgba(46,230,166,.08);
    border: 1px solid rgba(46,230,166,.3);
    padding: 6px 12px;
    border-radius: 99px;
    margin-bottom: 18px;
}

    .eyebrow .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--mint);
        animation: pulse 1.8s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}
.p-1{
    padding:10px;
}
.breadcrumb-bar {

    margin-top:10px;
    border-bottom: 1px solid var(--border);
    padding: 20px 2rem;
}

.breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap
}

    .breadcrumb-inner a {
        color: var(--muted);
        text-decoration: none;
        transition: color .2s
    }

        .breadcrumb-inner a:hover {
            color: var(--saffron)
        }

    .breadcrumb-inner .bc-sep {
        opacity: .4
    }

    .breadcrumb-inner .bc-cur {
        color: var(--saffron);
        font-weight: 600
    }


    h1.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.3rem, 2.6vw, 2.0rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 0 0 20px;
}

    h1.hero-title .accent {
        background: linear-gradient(120deg,var(--violet),var(--coral));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-sub {
    font-size: 1.08rem;
    color: #009;
    max-width: 52ch;
    margin-bottom: 30px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-ghost {
    padding: 13px 22px;
    border-radius: 11px;
    border: 1px solid var(--panel-line);
    color: var(--ink);
    font-weight: 600;
    font-size: .95rem;
    background: var(--panel-dark);
    transition: border-color .2s, transform .15s;
}

    .btn-ghost:hover {
        border-color: var(--ink-dim);
        transform: translateY(-2px);
    }

.btn-primary.large {
    padding: 15px 28px;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat b {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--ink);
}

.hero-stat span {
    font-size: .8rem;
    color: var(--ink-dim);
}

/* floating tiles */
.hero-visual {
    position: relative;
    height: 380px;
}

.float-tile {
    position: absolute;
    border-radius: 16px;
    border: 1px solid var(--panel-line);
    background: var(--panel-dark);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}

    .float-tile:nth-child(1) {
        width: 96px;
        height: 96px;
        top: 6%;
        left: 8%;
        font-size: 1.7rem;
        color: var(--violet-2);
        animation-delay: 0s;
    }

    .float-tile:nth-child(2) {
        width: 76px;
        height: 76px;
        top: 18%;
        right: 6%;
        font-size: 1.3rem;
        color: var(--coral);
        animation-delay: 1.1s;
    }

    .float-tile:nth-child(3) {
        width: 110px;
        height: 110px;
        bottom: 14%;
        left: 20%;
        font-size: 2rem;
        color: var(--mint);
        animation-delay: 2s;
    }

    .float-tile:nth-child(4) {
        width: 70px;
        height: 70px;
        bottom: 6%;
        right: 16%;
        font-size: 1.2rem;
        color: var(--gold);
        animation-delay: .6s;
    }

    .float-tile:nth-child(5) {
        width: 60px;
        height: 60px;
        top: 48%;
        left: 46%;
        font-size: 1rem;
        color: var(--ink-dim);
        animation-delay: 1.6s;
    }

@keyframes float {
    0%,100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-16px) rotate(3deg)
    }
}

/* ---------- Search ---------- */
.search-wrap {
    padding: 34px 0;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--panel-dark);
    border: 1px solid var(--panel-line);
    border-radius: 16px;
    padding: 8px 8px 8px 20px;
    max-width: 720px;
    margin-inline: auto;
    transition: border-color .2s;
}

    .search-box:focus-within {
        border-color: var(--violet-2);
    }

    .search-box svg {
        flex-shrink: 0;
        opacity: .7;
    }

    .search-box input {
        flex: 1;
        background: transparent;
        border: none;
        color: var(--ink);
        font-size: 1rem;
        padding: 12px 0;
        outline: none;
    }

        .search-box input::placeholder {
            color: var(--ink-dim);
        }

    .search-box button {
        background: linear-gradient(135deg,var(--violet),var(--violet-2));
        color: #fff;
        border: none;
        padding: 12px 22px;
        border-radius: 11px;
        font-weight: 600;
        cursor: pointer;
    }

#search-suggestions {
    max-width: 720px;
    margin: 10px auto 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    font-size: .8rem;
    padding: 6px 13px;
    border-radius: 99px;
    border: 1px solid var(--panel-line);
    color: var(--ink-dim);
    background: var(--panel-dark);
    cursor: pointer;
    transition: .2s;
}

    .chip:hover {
        color: var(--ink);
        border-color: var(--violet-2);
    }

/* ---------- Section shared ---------- */
section {
    padding: 64px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.section-eyebrow {
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--violet-2);
    margin: 0 0 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem,2.6vw,2rem);
    font-weight: 700;
    margin: 0;
    letter-spacing: -.01em;
}

.section-link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--violet-2);
    white-space: nowrap;
}

.divider-grid {
    height: 14px;
    margin: 0 0 44px;
    background-image: linear-gradient(90deg, var(--panel-line) 1px, transparent 1px);
    background-size: 20px 100%;
    opacity: .6;
}

/* ---------- Categories ---------- */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px,1fr));
    gap: 16px;
}

.cat-card {
    padding: 22px 16px;
    text-align: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--panel-line);
    background: var(--panel-dark);
    transition: transform .2s var(--ease), border-color .2s, background .2s;
}

    .cat-card:hover {
        transform: translateY(-5px);
        border-color: var(--violet-2);
        background: rgba(109,93,252,.07);
    }

.cat-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cat-name {
    font-size: .88rem;
    font-weight: 600;
}

/* ---------- Game cards ---------- */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px,1fr));
    gap: 20px;
}

.game-card {
    position: relative;
    border-radius: var(--radius-md);
    border: 1px solid var(--panel-line);
    background: var(--panel-dark);
    overflow: hidden;
    transition: transform .22s var(--ease), border-color .22s;
}

    .game-card:hover {
        transform: translateY(-6px);
        border-color: var(--violet-2);
    }

.game-thumb {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(109,93,252,.28), rgba(255,107,107,.22));
    position: relative;
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-size: 2.1rem;
    color: var(--ink);
}

    .game-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(var(--void) 1px, transparent 1px), linear-gradient(90deg, var(--void) 1px, transparent 1px);
        background-size: 25% 33%;
        opacity: .15;
    }

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 99px;
    letter-spacing: .03em;
    text-transform: uppercase;
    z-index: 2;
}

    .badge.new {
        background: var(--mint);
        color: #04261c;
    }

    .badge.hot {
        background: var(--coral);
        color: #2b0808;
    }

.fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.35);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 2;
    transition: background .2s;
}

    .fav-btn[aria-pressed="true"] {
        background: var(--coral);
    }

.game-body {
    padding: 16px;
}

.game-name {
    font-weight: 700;
    font-size: 1.02rem;
    margin: 0 0 4px;
    font-family: var(--font-display);
}

.game-desc {
    font-size: .85rem;
    color: var(--ink-dim);
    margin: 0 0 12px;
    min-height: 2.6em;
}

.game-meta {
    display: flex;
    gap: 10px;
    font-size: .74rem;
    color: var(--ink-dim);
    margin-bottom: 14px;
    font-family: var(--font-mono);
}

    .game-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

.play-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .88rem;
    background: linear-gradient(135deg,var(--violet),var(--violet-2));
    color: #fff;
    border: none;
    cursor: pointer;
}

.coming-soon-card {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 30px 16px;
    border: 1px dashed var(--panel-line);
    border-radius: var(--radius-md);
    color: var(--ink-dim);
    font-size: .9rem;
}

/* ---------- Trending slider ---------- */
.trend-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
}

    .trend-slider::-webkit-scrollbar {
        height: 6px;
    }

    .trend-slider::-webkit-scrollbar-thumb {
        background: var(--panel-line);
        border-radius: 99px;
    }

.trend-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    border-radius: var(--radius-md);
    border: 1px solid var(--panel-line);
    background: var(--panel-dark);
    padding: 16px;
    position: relative;
}

.trend-rank {
    font-family: var(--font-mono);
    color: var(--violet-2);
    font-size: .78rem;
    margin-bottom: 8px;
}

/* ---------- Why play / features ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 18px;
}

.feature-card {
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--panel-line);
    background: var(--panel-dark);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(109,93,252,.14);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    margin: 0 0 6px;
}

.feature-card p {
    font-size: .87rem;
    color: var(--ink-dim);
    margin: 0;
}

/* ---------- Stats ---------- */
.stats-band {
    background: var(--void-2);
    border-top: 1px solid var(--panel-line);
    border-bottom: 1px solid var(--panel-line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 20px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-mono);
    font-size: clamp(1.8rem,3vw,2.6rem);
    font-weight: 700;
    color: var(--violet-2);
}

.stat-label {
    font-size: .85rem;
    color: var(--ink-dim);
}

/* ---------- How to play ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.step-card {
    padding: 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--panel-line);
    background: var(--panel-dark);
    position: relative;
}

.step-num {
    font-family: var(--font-mono);
    font-size: .8rem;
    color: var(--coral);
    margin-bottom: 10px;
}

.step-card h3 {
    font-family: var(--font-display);
    margin: 0 0 8px;
}

.step-card p {
    font-size: .88rem;
    color: var(--ink-dim);
    margin: 0;
}

/* ---------- Ad placeholders ---------- */
.ad-slot {
    border: 1px dashed var(--panel-line);
    border-radius: var(--radius-sm);
    color: var(--ink-dim);
    display: grid;
    place-items: center;
    font-size: .78rem;
    font-family: var(--font-mono);
    text-align: center;
    background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(255,255,255,.02) 10px 20px);
    margin: 44px auto;
}

    .ad-slot.leaderboard {
        max-width: 970px;
        min-height: 90px;
    }

    .ad-slot.responsive {
        width: 100%;
        min-height: 120px;
    }

    .ad-slot.infeed {
        min-height: 110px;
        margin: 26px 0;
    }

    .ad-slot.inarticle {
        min-height: 250px;
    }

    .ad-slot.multiplex {
        min-height: 280px;
    }

    .ad-slot.sidebar {
        min-height: 600px;
    }

    .ad-slot.sticky-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 56px;
        z-index: 800;
        background: var(--void);
        border: none;
        border-top: 1px dashed var(--panel-line);
    }

    .ad-slot.anchor {
        display: none;
    }
/* placeholder only, intentionally not activated */

/* ---------- Blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 20px;
}

.blog-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--panel-line);
    background: var(--panel-dark);
    overflow: hidden;
}

.blog-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(160deg, rgba(245,185,66,.25), rgba(109,93,252,.2));
}

.blog-body {
    padding: 18px;
}

.blog-cat {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--mint);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.blog-body h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin: 8px 0;
}

.blog-body p {
    font-size: .86rem;
    color: var(--ink-dim);
    margin: 0 0 10px;
}

.read-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--violet-2);
}

/* ---------- Newsletter ---------- */
.newsletter {
    border-radius: var(--radius-lg);
    border: 1px solid var(--panel-line);
    background: linear-gradient(135deg, rgba(109,93,252,.12), rgba(255,107,107,.08));
    padding: 44px;
    text-align: center;
}

    .newsletter h2 {
        font-family: var(--font-display);
        font-size: 1.6rem;
        margin: 0 0 10px;
    }

    .newsletter p {
        color: var(--ink-dim);
        margin: 0 0 22px;
    }

    .newsletter form {
        display: flex;
        gap: 10px;
        max-width: 460px;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsletter input {
        flex: 1;
        min-width: 220px;
        padding: 13px 16px;
        border-radius: 11px;
        border: 1px solid var(--panel-line);
        background: var(--void);
        color: var(--ink);
        font-size: .95rem;
    }

/* ---------- Testimonials ---------- */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 18px;
}

.testi-card {
    padding: 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--panel-line);
    background: var(--panel-dark);
}

.testi-stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: 10px;
}

.testi-name {
    font-weight: 700;
    margin-top: 12px;
    font-size: .9rem;
}

.testi-role {
    font-size: .78rem;
    color: var(--ink-dim);
}

/* ---------- FAQ ---------- */
.faq-item {
    border-bottom: 1px solid var(--panel-line);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--ink);
    padding: 18px 4px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .faq-q .plus {
        transition: transform .25s var(--ease);
        color: var(--violet-2);
        font-size: 1.3rem;
    }

.faq-item[open] .plus {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 4px 18px;
    color: var(--ink-dim);
    font-size: .92rem;
}

/* ---------- About ---------- */
.about-content {
    max-width: 820px;
    color: var(--ink-dim);
    font-size: .96rem;
}

    .about-content h3 {
        font-family: var(--font-display);
        color: var(--ink);
        margin-top: 28px;
    }

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid var(--panel-line);
    padding: 50px 0 90px;
    background: var(--void-2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3,1fr);
    gap: 30px;
}

.footer-col h4 {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-dim);
    margin: 0 0 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.footer-col a {
    font-size: .88rem;
    color: var(--ink-dim);
    transition: color .2s;
}

    .footer-col a:hover {
        color: var(--violet-2);
    }

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--panel-line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .8rem;
    color: var(--ink-dim);
}

/* ---------- Back to top ---------- */
#back-to-top {
    position: fixed;
    bottom: 76px;
    right: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--panel-line);
    background: var(--void-2);
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 850;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .2s;
}

    #back-to-top.show {
        opacity: 1;
        pointer-events: auto;
    }

    #back-to-top:hover {
        transform: translateY(-3px);
    }

/* ---------- Toast ---------- */
#toast-region {
    position: fixed;
    bottom: 76px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 950;
    display: grid;
    gap: 8px;
}

.toast {
    background: var(--void-2);
    border: 1px solid var(--panel-line);
    padding: 11px 18px;
    border-radius: 11px;
    font-size: .86rem;
    animation: toastIn .25s var(--ease);
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ---------- Skeleton ---------- */
.skeleton {
    background: linear-gradient(100deg, var(--panel-dark) 30%, rgba(255,255,255,.06) 50%, var(--panel-dark) 70%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

/* ---------- Responsive ---------- */
@media (max-width:920px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 220px;
        order: -1;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:720px) {
    header .nav-row nav.main-nav {
        display: none;
    }

    .hamburger {
        display: grid;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    #mobile-nav {
        flex-direction: column;
        gap: 0;
        padding-bottom: 10px;
    }
}
