/* ==========================================================================
   MistCheckpoint — Retro-90 Style
   Palette: Teal #00cec9, Pink #fd79a8, Silkscreen + Geologica
   ========================================================================== */

/* 1. CSS Variables (:root)
   ========================================================================== */
:root {
    /* Colors — Retro-90 */
    --primary: #00cec9;
    --primary-dark: #00a8a3;
    --primary-light: #55efc4;
    --secondary: #fd79a8;
    --secondary-dark: #e84393;
    --accent: #fdcb6e;

    /* Backgrounds — Retro-90 deep purple / indigo base */
    --bg-dark: #1a1030;
    --bg-darker: #120a24;
    --bg-card: #251a42;
    --bg-card-hover: #2f2252;
    --bg-surface: #1e1338;

    /* Text */
    --text-primary: #f0e6ff;
    --text-secondary: #c8b8e0;
    --text-muted: #8a7aaa;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Header */
    --header-height: 70px;

    /* Fonts — Retro-90: Silkscreen for headings, Geologica for body */
    --font-body: 'Geologica', sans-serif;
    --font-heading: 'Silkscreen', cursive;

    /* Retro accents */
    --glow-primary: 0 0 20px rgba(0, 206, 201, 0.4);
    --glow-secondary: 0 0 20px rgba(253, 121, 168, 0.4);
    --scanline-opacity: 0.03;
}

/* 2. Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, var(--scanline-opacity)) 2px,
        rgba(0, 0, 0, var(--scanline-opacity)) 4px
    );
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--primary-light);
}

ul, ol {
    padding-left: var(--space-lg);
}

/* 3. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
}

strong {
    font-weight: 600;
}

/* 4. Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.m-container--narrow {
    max-width: 820px;
}

/* 5. Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(18, 10, 36, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 2px 24px rgba(0, 206, 201, 0.15);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-lg);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    text-shadow: 0 0 12px rgba(0, 206, 201, 0.5);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: text-shadow 0.3s ease;
}

.logo:hover {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 206, 201, 0.8);
}

.logo--footer {
    font-size: 1.15rem;
}

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

.site-nav__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
    box-shadow: var(--glow-secondary);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--text-primary);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    width: 100%;
}

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

/* 6. Mobile Menu
   ========================================================================== */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.burger__line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.is-active .burger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.is-active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger.is-active .burger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-darker);
    border-left: 2px solid var(--primary);
    z-index: 1050;
    transition: right 0.35s ease;
    overflow-y: auto;
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
}

.mobile-menu__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(0, 206, 201, 0.15);
    transition: color 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu__overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* 7. Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    line-height: 1.3;
}

.btn--primary {
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.btn--primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--bg-darker);
    box-shadow: 0 0 30px rgba(0, 206, 201, 0.6);
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn--secondary:hover {
    background: var(--secondary);
    color: var(--bg-darker);
    box-shadow: var(--glow-secondary);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 0.95rem;
}

.btn--sm {
    padding: 8px 18px;
    font-size: 0.75rem;
}

.btn--block {
    width: 100%;
}

.btn--account {
    background: var(--bg-card);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.btn--account:hover {
    background: var(--primary);
    color: var(--bg-darker);
}

.btn--account__icon {
    font-size: 0.7rem;
}

/* 8. Main Content
   ========================================================================== */
.m-main {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* 9. Hero Section
   ========================================================================== */
.m-hero {
    position: relative;
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a1040 50%, #251545 100%);
    overflow: hidden;
    border-bottom: 2px solid var(--secondary);
}

.m-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(0, 206, 201, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(253, 121, 168, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.m-hero__container {
    position: relative;
    z-index: 1;
}

.m-hero__container--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.m-hero__content {
    max-width: 640px;
}

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 206, 201, 0.5);
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.m-hero__title--404 {
    font-size: 6rem;
    color: var(--secondary);
    text-shadow: 0 0 40px rgba(253, 121, 168, 0.6);
}

.m-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 15px rgba(253, 121, 168, 0.4);
}

.m-hero__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.m-hero__auth-btns {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

/* Hero pixel decorations */
.m-hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.m-hero__pixel {
    position: absolute;
    border-radius: 0;
}

.m-hero__pixel--1 {
    width: 80px;
    height: 80px;
    background: rgba(0, 206, 201, 0.08);
    border: 2px solid rgba(0, 206, 201, 0.15);
    top: 10%;
    right: 10%;
    animation: floatPixel 6s ease-in-out infinite;
}

.m-hero__pixel--2 {
    width: 50px;
    height: 50px;
    background: rgba(253, 121, 168, 0.08);
    border: 2px solid rgba(253, 121, 168, 0.15);
    bottom: 20%;
    right: 25%;
    animation: floatPixel 8s ease-in-out infinite 1s;
}

.m-hero__pixel--3 {
    width: 30px;
    height: 30px;
    background: rgba(253, 203, 110, 0.1);
    border: 2px solid rgba(253, 203, 110, 0.2);
    top: 40%;
    right: 5%;
    animation: floatPixel 5s ease-in-out infinite 2s;
}

@keyframes floatPixel {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(5deg); }
    50% { transform: translate(-5px, -25px) rotate(-3deg); }
    75% { transform: translate(15px, -10px) rotate(8deg); }
}

.m-hero--small {
    padding: var(--space-2xl) 0;
}

.m-hero--404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 10. Sections
   ========================================================================== */
.m-section {
    padding: var(--space-3xl) 0;
}

.m-section--page-top {
    padding-top: var(--space-2xl);
}

.m-section__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 12px rgba(0, 206, 201, 0.3);
}

.m-section__subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.m-section--benefits {
    background: var(--bg-surface);
    border-top: 1px solid rgba(0, 206, 201, 0.1);
    border-bottom: 1px solid rgba(0, 206, 201, 0.1);
}

.m-section--featured {
    background: var(--bg-dark);
}

.m-section--faq {
    background: var(--bg-surface);
    border-top: 1px solid rgba(253, 121, 168, 0.1);
}

.m-section--disclaimer {
    padding: var(--space-2xl) 0;
    background: var(--bg-darker);
}

.m-section--filter {
    padding: var(--space-lg) 0 0;
}

.m-section--games {
    padding-top: var(--space-lg);
}

.m-section--unlock {
    padding: 0;
}

/* Page titles */
.m-page-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 15px rgba(0, 206, 201, 0.3);
}

.m-page-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: var(--space-2xl);
}

/* 11. Benefits
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 206, 201, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.benefit-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
}

.benefit-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.benefit-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* 12. Featured Providers
   ========================================================================== */
.featured-provider {
    margin-bottom: var(--space-2xl);
}

.featured-provider__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 10px rgba(253, 121, 168, 0.3);
}

/* 13. Games Grid
   ========================================================================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.games-grid--featured {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

/* 14. Game Tile (game-card)
   ========================================================================== */
.game-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid rgba(0, 206, 201, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.game-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-darker);
}

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card__img {
    transform: scale(1.05);
}

.game-card__title {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-primary);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card__provider {
    display: block;
    padding: 0 var(--space-md) var(--space-sm);
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
}

/* 15. Game Tile Locked
   ========================================================================== */
.game-card--locked .game-card__img {
    filter: blur(4px) grayscale(50%);
    opacity: 0.6;
}

.game-card__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 10, 36, 0.82);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.game-card__lock-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.game-card__lock-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 16. Provider Section (games page)
   ========================================================================== */
.provider-section {
    margin-bottom: var(--space-2xl);
}

.provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(253, 121, 168, 0.2);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.provider-section__count {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* 17. Filter
   ========================================================================== */
.provider-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.provider-filter__btn {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 2px solid rgba(0, 206, 201, 0.25);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
}

.provider-filter__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.provider-filter__btn.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-darker);
    box-shadow: var(--glow-primary);
}

/* 18. Unlock Banner
   ========================================================================== */
.unlock-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, rgba(253, 121, 168, 0.12), rgba(0, 206, 201, 0.08));
    border: 2px solid var(--secondary);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
    box-shadow: var(--glow-secondary);
}

.unlock-banner__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.unlock-banner__text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* 19. FAQ
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 206, 201, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.faq-item__question {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-lg);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

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

.faq-item__question::after {
    content: '+';
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.faq-item[open] .faq-item__question::after {
    content: '−';
    color: var(--secondary);
}

.faq-item__answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}

/* 20. Disclaimer
   ========================================================================== */
.disclaimer-box {
    background: rgba(253, 121, 168, 0.06);
    border: 1px solid rgba(253, 121, 168, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.disclaimer-box__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.disclaimer-box__text a {
    color: var(--secondary);
}

/* 21. Footer
   ========================================================================== */
.site-footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

.site-footer__tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: var(--space-md) 0 var(--space-lg);
    line-height: 1.6;
}

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

.site-footer__compliance-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0.9);
}

.site-footer__compliance-logo:hover {
    opacity: 1;
}

.site-footer__compliance-logo--light-bg {
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.site-footer__nav-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.site-footer__nav-link {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-footer__nav-link:hover {
    color: var(--text-primary);
}

.site-footer__disclaimer {
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(0, 206, 201, 0.1);
    border-bottom: 1px solid rgba(0, 206, 201, 0.1);
    margin-bottom: var(--space-xl);
}

.site-footer__disclaimer p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.site-footer__disclaimer a {
    color: var(--secondary);
}

.site-footer__bottom {
    text-align: center;
}

.site-footer__copyright {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.site-footer__copyright small {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* 22. Modals
   ========================================================================== */
.game-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.game-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.game-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.game-modal__container {
    position: relative;
    width: 90vw;
    max-width: 1100px;
    height: 80vh;
    background: var(--bg-darker);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: 0 0 60px rgba(0, 206, 201, 0.2);
}

.game-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-card);
    border-bottom: 1px solid rgba(0, 206, 201, 0.15);
    flex-shrink: 0;
}

.game-modal__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary);
    margin: 0;
}

.game-modal__close {
    width: 36px;
    height: 36px;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--secondary);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.game-modal__close:hover {
    background: var(--secondary);
    color: var(--bg-darker);
}

.game-modal__body {
    flex: 1;
    position: relative;
}

.game-modal__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 23. Cookie Consent
   ========================================================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: var(--bg-card);
    border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 24px rgba(0, 206, 201, 0.15);
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent__text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-consent__text a {
    color: var(--primary);
}

/* 24. Auth Forms
   ========================================================================== */
.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.auth-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.auth-modal__container {
    position: relative;
    width: 420px;
    max-width: 95vw;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    z-index: 1;
    box-shadow: 0 0 60px rgba(0, 206, 201, 0.2);
}

.auth-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--secondary);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.auth-modal__close:hover {
    background: var(--secondary);
    color: var(--bg-darker);
}

.auth-modal__tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    border-bottom: 2px solid rgba(0, 206, 201, 0.15);
    padding-bottom: var(--space-md);
}

.auth-modal__tab {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-muted);
    background: transparent;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
}

.auth-modal__tab:hover {
    color: var(--text-secondary);
}

.auth-modal__tab.is-active {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(0, 206, 201, 0.08);
}

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

.auth-modal__disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-lg);
}

.auth-modal__disclaimer a {
    color: var(--secondary);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-input {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px var(--space-md);
    background: var(--bg-darker);
    border: 2px solid rgba(0, 206, 201, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 206, 201, 0.2);
}

.form-error {
    font-size: 0.85rem;
    color: var(--secondary);
    padding: var(--space-sm) var(--space-md);
    background: rgba(253, 121, 168, 0.1);
    border: 1px solid rgba(253, 121, 168, 0.3);
    border-radius: var(--radius-sm);
}

/* 25. Account Page
   ========================================================================== */
.auth-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.auth-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 206, 201, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: border-color 0.3s ease;
}

.auth-card:hover {
    border-color: var(--primary);
}

.auth-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    text-align: center;
}

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

.why-register {
    text-align: center;
}

.why-register__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: var(--space-xl);
}

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

.why-register__item {
    padding: var(--space-lg);
}

.why-register__icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.why-register__item h3 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.why-register__item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* 26. Profile / Dashboard
   ========================================================================== */
.account-dashboard {
    max-width: 600px;
    margin: 0 auto;
}

.account-header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 2px solid rgba(0, 206, 201, 0.15);
    border-radius: var(--radius-lg);
}

.level-badge {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-darker);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    box-shadow: var(--glow-primary);
}

.account-header__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

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

/* 27. XP Progress
   ========================================================================== */
.xp-progress {
    background: var(--bg-card);
    border: 2px solid rgba(0, 206, 201, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.xp-progress__header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.xp-progress__bar {
    width: 100%;
    height: 16px;
    background: var(--bg-darker);
    border-radius: 8px;
    border: 1px solid rgba(0, 206, 201, 0.2);
    overflow: hidden;
}

.xp-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 8px;
    transition: width 0.5s ease;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

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

.account-stat {
    background: var(--bg-card);
    border: 1px solid rgba(0, 206, 201, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

.account-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.account-stat__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* Daily Bonus Modal */
.daily-bonus-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.daily-bonus-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.daily-bonus-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.daily-bonus-modal__container {
    position: relative;
    width: 380px;
    max-width: 90vw;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    z-index: 1;
    box-shadow: 0 0 60px rgba(253, 203, 110, 0.2);
}

.daily-bonus-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    border: 1px solid var(--text-muted);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.daily-bonus-modal__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.daily-bonus-modal__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.daily-bonus-modal__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.daily-bonus-modal__streak {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: var(--space-lg);
}

/* 29. Content Pages
   ========================================================================== */
.m-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.m-breadcrumb__link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

.m-breadcrumb__sep {
    color: var(--text-muted);
    opacity: 0.5;
}

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

.m-content-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 206, 201, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.m-content-card h2 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(253, 121, 168, 0.15);
}

.m-content-card h2:first-child {
    margin-top: 0;
}

.m-content-card h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.m-content-card ul,
.m-content-card ol {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.m-content-card li {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.m-content-card a {
    color: var(--secondary);
    text-decoration: underline;
    text-decoration-color: rgba(253, 121, 168, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.25s ease;
}

.m-content-card a:hover {
    text-decoration-color: var(--secondary);
    color: var(--secondary);
}

.m-content-card p {
    color: var(--text-secondary);
}

.m-content-card__cta {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(0, 206, 201, 0.1);
    flex-wrap: wrap;
}

/* Table */
.m-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
}

.m-table th,
.m-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid rgba(0, 206, 201, 0.1);
}

.m-table th {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 206, 201, 0.05);
}

.m-table td {
    color: var(--text-secondary);
}

.m-table tbody tr:hover {
    background: rgba(0, 206, 201, 0.03);
}

/* Fact Grid (responsible gaming) */
.fact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.fact-card {
    background: var(--bg-darker);
    border: 1px solid rgba(0, 206, 201, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
}

.fact-card__icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.fact-card__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.fact-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* Review Hero */
.review-hero {
    margin-bottom: var(--space-xl);
}

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

.review-hero__score {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent);
}

.review-hero__founded {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Review Games Grid */
.review-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.review-game-tile {
    background: var(--bg-darker);
    border: 1px solid rgba(0, 206, 201, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-align: center;
}

.review-game-tile img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.review-game-tile span {
    display: block;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 30. Blog Grid
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.blog-grid--reviews {
    margin-bottom: 0;
}

.blog-reviews {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 2px solid rgba(253, 121, 168, 0.15);
}

.article-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid rgba(0, 206, 201, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--glow-secondary);
}

.article-card__content {
    padding: var(--space-xl);
    position: relative;
    z-index: 2;
}

.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.article-card__category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    padding: 2px 8px;
    background: rgba(0, 206, 201, 0.1);
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: 3px;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.35;
}

.article-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card__read {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 31. Reviews Grid
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.review-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid rgba(0, 206, 201, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.review-card__header {
    margin-bottom: var(--space-md);
}

.review-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.review-card__rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.review-card__score {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--accent);
}

.review-card__description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.review-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.review-card__stat {
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(0, 206, 201, 0.06);
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid rgba(0, 206, 201, 0.1);
}

/* 32. Utility Classes
   ========================================================================== */
.stars {
    color: #ffc107;
    letter-spacing: 2px;
}

.card {
    position: relative;
}

.offer-card {
    position: relative;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-gate.is-active {
    opacity: 1;
    visibility: visible;
}

.age-gate__box {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 80px rgba(0, 206, 201, 0.2);
}

.age-gate__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 20px rgba(0, 206, 201, 0.5);
}

.age-gate__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.age-gate__text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.age-gate__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* 33. Scrollbar
   ========================================================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 992px) {
    .site-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

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

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

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

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

    .review-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1rem; }

    .m-hero__title {
        font-size: 2rem;
    }

    .m-hero__title--404 {
        font-size: 4rem;
    }

    .m-hero__container--row {
        flex-direction: column;
        text-align: center;
    }

    .m-hero__auth-btns {
        justify-content: center;
    }

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

    .games-grid--featured {
        max-width: 100%;
        gap: 12px;
    }

    .auth-cards {
        grid-template-columns: 1fr;
    }

    .account-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .unlock-banner {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .m-section {
        padding: var(--space-2xl) 0;
    }

    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
    }

    .m-page-title {
        font-size: 1.5rem;
    }

    .m-section__title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .m-hero__title {
        font-size: 1.6rem;
    }

    .m-hero {
        padding: var(--space-2xl) 0;
    }

    .account-header {
        flex-direction: column;
        text-align: center;
    }

    .account-stats {
        grid-template-columns: 1fr;
    }

    .account-actions {
        flex-direction: column;
    }

    .age-gate__actions {
        flex-direction: column;
    }

    .why-register__grid {
        grid-template-columns: 1fr;
    }

    .provider-filter {
        gap: var(--space-xs);
    }

    .provider-filter__btn {
        padding: 6px 12px;
        font-size: 0.65rem;
    }

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

    .m-content-card__cta {
        flex-direction: column;
    }

    .site-header__actions {
        display: none;
    }
}