:root {
    --primary: #a8e006;
    --primary-dark: #7fb009;
    --secondary: #ffffff;
    --accent: #ff6b9d;
    --bg-dark: #0f1a0a;
    --bg-darker: #080f05;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --text-primary: #f4ffe8;
    --text-secondary: rgba(244, 255, 232, 0.78);
    --text-muted: rgba(244, 255, 232, 0.55);
    --text-link: #a8e006;
    --secondary-rgb: 168, 224, 6;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --header-height: 72px;
    --font-body: 'Cabin', system-ui, sans-serif;
    --font-heading: 'Bitter', Georgia, serif;
    --panel: #152115;
    --line: rgba(168, 224, 6, 0.25);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.55;
    padding-top: var(--header-height);
}

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

a {
    color: var(--text-link);
}

.u-root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.u-main {
    flex: 1;
}

.u-container {
    width: min(1120px, 100% - 32px);
    margin-inline: auto;
}

.u-narrow {
    width: min(760px, 100% - 32px);
    margin-inline: auto;
}

.u-flex {
    display: flex;
}

.u-flex-between {
    justify-content: space-between;
}

.u-align-center {
    align-items: center;
}

.u-mt {
    margin-top: var(--space-lg);
}

.top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(8, 15, 5, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.top__bar {
    height: var(--header-height);
}

.top__logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.top__nav {
    display: flex;
    gap: var(--space-lg);
}

.top__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.25s ease, transform 0.25s ease;
}

.top__link:hover,
.top__link.is-active {
    color: var(--primary);
}

.top__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.top__burger-line {
    width: 26px;
    height: 3px;
    background: var(--primary);
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.drawer-bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.drawer-bg.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--panel);
    z-index: 130;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.drawer.is-open {
    transform: translateX(0);
}

.drawer__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    border-bottom: 1px solid var(--line);
}

.drawer__title {
    font-family: var(--font-heading);
    font-weight: 700;
}

.drawer__x {
    border: none;
    background: none;
    color: var(--text-primary);
    font-size: 1.75rem;
    cursor: pointer;
}

.drawer__nav {
    display: flex;
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-md);
}

.drawer__a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 900px) {
    .top__nav {
        display: none;
    }

    .top__burger {
        display: flex;
    }
}

.hero {
    padding: var(--space-3xl) 0;
    background:
        repeating-linear-gradient(-8deg, transparent, transparent 18px, rgba(168, 224, 6, 0.04) 18px, rgba(168, 224, 6, 0.04) 20px),
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(168, 224, 6, 0.12), transparent 55%),
        var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.15), transparent 65%);
    border-radius: 40% 60% 70% 30% / 60% 40% 30% 70%;
    animation: blobMove 14s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes blobMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, -30px) scale(1.08); }
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--primary);
    margin: 0 0 var(--space-sm);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 var(--space-md);
}

.hero__lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 52ch;
}

.hero__body {
    color: var(--text-muted);
    max-width: 60ch;
    margin-bottom: var(--space-xl);
}

.skewbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transform: skewX(-6deg);
}

.skewbtn__in {
    display: inline-block;
    transform: skewX(6deg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #0b1007;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 12px 26px;
    border: 2px solid #0b1007;
    box-shadow: 5px 5px 0 #0b1007;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skewbtn:hover .skewbtn__in {
    transform: skewX(6deg) translateY(-2px);
    box-shadow: 7px 7px 0 #0b1007;
}

.skewbtn--ghost .skewbtn__in {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--primary);
    box-shadow: 5px 5px 0 rgba(168, 224, 6, 0.35);
}

.skewbtn--sm .skewbtn__in {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.livefeed {
    padding: var(--space-lg) 0;
}

.livefeed__bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 999px;
    max-width: 640px;
    margin: 0 auto;
}

.livefeed__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulseDot 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.livefeed__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    min-height: 1.2em;
    transition: opacity 0.3s ease;
}

.livefeed__text.is-fading {
    opacity: 0;
}

.benefits {
    padding: var(--space-3xl) 0;
}

.benefits__title {
    text-align: center;
    font-family: var(--font-heading);
    margin-bottom: var(--space-2xl);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.benefits__card {
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 18px 8px 22px 10px / 12px 22px 10px 18px;
    transition: transform 0.28s ease, background 0.28s ease;
}

.benefits__card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
}

.benefits__ico {
    width: 44px;
    height: 44px;
    border-radius: 30% 70% 65% 35% / 40% 45% 55% 60%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.benefits__ico--b { border-radius: 65% 35% 40% 60% / 55% 45% 55% 45%; }
.benefits__ico--c { border-radius: 40% 60% 55% 45% / 35% 55% 45% 65%; }
.benefits__ico--d { border-radius: 55% 45% 30% 70% / 50% 50% 50% 50%; }

.benefits__h {
    font-family: var(--font-heading);
    margin: 0 0 var(--space-sm);
}

.benefits__p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }
}

.recent {
    padding: var(--space-3xl) 0;
}

.recent__title,
.recent__lead {
    text-align: center;
}

.recent__lead {
    color: var(--text-muted);
    max-width: 52ch;
    margin: 0 auto var(--space-xl);
}

.recent__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.recentTile {
    border: 1px solid var(--line);
    padding: 0;
    background: var(--bg-card);
    cursor: pointer;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.recentTile:hover {
    transform: translateY(-4px);
}

.recentTile__img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.recentTile__lab {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .recent__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq {
    padding: var(--space-3xl) 0;
}

.faq__title {
    text-align: center;
    font-family: var(--font-heading);
    margin-bottom: var(--space-2xl);
}

.faq__list {
    max-width: 760px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__q {
    width: 100%;
    text-align: left;
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__q::after {
    content: '+';
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.faq__item.is-open .faq__q::after {
    transform: rotate(45deg);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq__item.is-open .faq__a {
    max-height: 480px;
}

.faq__a p {
    padding-bottom: var(--space-lg);
    color: var(--text-secondary);
    margin: 0;
}

.guides {
    padding: var(--space-3xl) 0;
}

.guides__title {
    text-align: center;
    font-family: var(--font-heading);
}

.guides__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.guides__card {
    display: block;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guides__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.guides__h {
    font-family: var(--font-heading);
    margin: 0 0 var(--space-sm);
}

.guides__p {
    color: var(--text-secondary);
    margin: 0 0 var(--space-md);
    font-size: 0.92rem;
}

.guides__cta {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.guides__foot {
    text-align: center;
    margin-top: var(--space-2xl);
}

@media (max-width: 768px) {
    .guides__grid {
        grid-template-columns: 1fr;
    }
}

.disclaimer {
    padding: var(--space-2xl) 0;
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid var(--line);
}

.disclaimer p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.foot {
    background: #060a05;
    border-top: 1px solid var(--line);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.foot__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: var(--space-xl);
}

.foot__brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
}

.foot__txt {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.foot__h {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 var(--space-md);
    color: var(--primary);
}

.foot__a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    font-size: 0.92rem;
}

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

.foot__note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.foot__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    margin-top: var(--space-md);
}

.foot__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: #e8eef4;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.foot__badge img {
    display: block;
}

.foot__age {
    font-weight: 800;
    border: 2px solid var(--primary);
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--primary);
}

.foot__base {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.foot__addr {
    margin: var(--space-xs) 0 0;
}

@media (max-width: 900px) {
    .foot__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .foot__grid {
        grid-template-columns: 1fr;
    }
}

.subhead {
    padding: var(--space-2xl) 0 var(--space-lg);
}

.subhead__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-lg);
}

.subhead__auth {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.pageh {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    margin: 0 0 var(--space-md);
}

.pageh--sub {
    margin-top: var(--space-3xl);
}

.lead {
    color: var(--text-secondary);
    max-width: 60ch;
}

.unlock {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border: 1px dashed var(--line);
    border-radius: var(--radius-md);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    justify-content: space-between;
    background: var(--bg-card);
}

.unlock__txt {
    margin: 0;
    color: var(--text-secondary);
    max-width: 56ch;
}

.toolbar {
    padding-bottom: var(--space-lg);
}

.tools {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.tools__lbl {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.tools__lbl--gap {
    margin-left: var(--space-md);
}

.lob-filt {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.lob-filt__btn,
.lob-filt__tag {
    border: 1px solid var(--line);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
}

.lob-filt__btn.is-active,
.lob-filt__tag.is-active {
    background: var(--primary);
    color: #0b1007;
    border-color: #0b1007;
}

.gamepage {
    padding-bottom: var(--space-3xl);
}

.lob-gsec {
    margin-bottom: var(--space-2xl);
}

.lob-gsec__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.lob-gsec__title {
    font-family: var(--font-heading);
    margin: 0;
}

.lob-gsec__meta {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.lob-gmesh {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .lob-gmesh {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lob-gtile {
    position: relative;
    cursor: pointer;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.lob-gtile:hover {
    transform: translateY(-5px);
}

.lob-gtile--locked {
    opacity: 0.92;
}

.lob-gtile__visual {
    position: relative;
    overflow: hidden;
}

.lob-gtile__img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.lob-gtile__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.lob-gtile__name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.lob-gtile__lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.lob-gtile__tags {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: 6px;
}

.lob-gtile__tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
}

.lob-gtile__tag--hot {
    background: #e63946;
}

.lob-gtile__tag--new {
    background: #4361ee;
}

.noteband {
    padding: var(--space-xl) 0 var(--space-3xl);
}

.note {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.band {
    padding: var(--space-3xl) 0;
}

.band--center {
    text-align: center;
}

.crumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.crumb a {
    color: var(--text-secondary);
}

.article h2 {
    font-family: var(--font-heading);
    margin-top: var(--space-xl);
}

.article p {
    color: var(--text-secondary);
}

.inline {
    font-weight: 700;
}

.bloggrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.blogcard {
    display: block;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.blogcard:hover {
    transform: translateY(-4px);
}

.blogcard__tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.blogcard__h {
    font-family: var(--font-heading);
    margin: 0 0 var(--space-sm);
}

.blogcard__p {
    color: var(--text-secondary);
    margin: 0 0 var(--space-md);
    font-size: 0.92rem;
}

.blogcard__cta {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
}

@media (max-width: 900px) {
    .bloggrid {
        grid-template-columns: 1fr;
    }
}

.revgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.revcard {
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.revcard__h {
    font-family: var(--font-heading);
    margin-top: 0;
}

.revcard__p {
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .revgrid {
        grid-template-columns: 1fr;
    }
}

.accgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .accgrid {
        grid-template-columns: 1fr;
    }
}

.plate {
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.plate--wide {
    grid-column: 1 / -1;
}

.plate__h {
    font-family: var(--font-heading);
    margin-top: 0;
}

.perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 600px) {
    .perks {
        grid-template-columns: 1fr;
    }
}

.perks__cell h3 {
    margin: 0 0 var(--space-xs);
    font-size: 1rem;
}

.perks__cell p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dash {
    max-width: 640px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.dash__top {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.dash__lvl {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: var(--primary);
    color: #0b1007;
}

.dash__name {
    margin: 0;
    font-family: var(--font-heading);
}

.dash__mail {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.xpbar {
    margin: var(--space-xl) 0;
}

.xpbar__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.xpbar__track {
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    margin-top: var(--space-sm);
    overflow: hidden;
}

.xpbar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 999px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.stats__cell {
    text-align: center;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}

.stats__val {
    display: block;
    font-weight: 800;
    font-size: 1.25rem;
}

.stats__lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.dash__go {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 10px 18px;
    border: 2px solid var(--line);
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
    background: var(--bg-card);
    color: var(--text-primary);
}

.m-btn--pri {
    background: var(--primary);
    color: #0b1007;
    border-color: #0b1007;
    box-shadow: 4px 4px 0 #0b1007;
}

.m-btn--ghost {
    background: transparent;
    color: var(--text-primary);
}

.m-btn--sm {
    padding: 8px 14px;
    font-size: 0.85rem;
}

.m-btn--wide {
    width: 100%;
}

.m-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.m-modal.is-open {
    display: flex;
}

.m-modal__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.m-modal__panel {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: min(90vh, 900px);
    background: var(--panel);
    border: 2px solid var(--line);
    display: flex;
    flex-direction: column;
}

.m-modal__panel--wide,
.m-modal__panel--game {
    width: min(100vw - 24px, 1680px);
    height: min(100vh - 24px, 920px);
    max-height: none;
}

.m-modal__panel--auth {
    width: min(440px, 100%);
}

.m-modal__panel--sm {
    width: min(420px, 100%);
    padding: var(--space-lg);
}

.m-modal__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
}

.m-modal__h {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.m-modal__sub {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.m-modal__x {
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}

.m-modal__frame {
    flex: 1;
    width: 100%;
    border: 0;
    min-height: 0;
    background: #000;
}

.m-modal__badge {
    display: inline-block;
    padding: 4px 10px;
    border: 2px solid var(--primary);
    font-weight: 800;
    margin: 0 0 8px;
}

.m-modal__p {
    color: var(--text-muted);
    margin: 0 0 var(--space-md);
}

.m-modal__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.m-auth__tabs {
    display: flex;
    border-bottom: 1px solid var(--line);
}

.m-auth__tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-heading);
}

.m-auth__tab.is-active {
    color: var(--primary);
    box-shadow: inset 0 -2px 0 var(--primary);
}

.m-auth__body {
    padding: var(--space-lg);
}

.m-auth__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m-auth__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.m-auth__lab {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.m-auth__inp {
    padding: 10px 12px;
    border: 2px solid var(--line);
    background: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-body);
}

.m-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--panel);
    border-top: 2px solid var(--line);
    padding: 12px 0;
    display: none;
}

.m-cookie.is-visible {
    display: block;
}

.m-cookie__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.m-cookie__txt {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 70ch;
}

.m-cookie__txt a {
    color: var(--primary);
}

body.drawer-open {
    overflow: hidden;
}
