/* ============================================
   TaneTag - Retro Social Casino
   Style: #13 Retro
   Fonts: Press Start 2P, VT323
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors - Neon Arcade Palette */
    --primary: #ff6ec7;
    --primary-dark: #d94fa8;
    --secondary: #b833e1;
    --accent: #00f5d4;

    /* Backgrounds */
    --bg-dark: #0a0e1a;
    --bg-darker: #060912;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;

    /* Text */
    --text-primary: #e0f2fe;
    --text-secondary: #94a3b8;
    --text-muted: #475569;

    /* Utility */
    --border-color: #1e3a5f;
    --success: #00f5d4;
    --warning: #fbbf24;
    --danger: #ff3860;

    /* Neon Glow */
    --glow-primary: rgba(255, 110, 199, 0.4);
    --glow-accent: rgba(0, 245, 212, 0.4);
    --glow-secondary: rgba(184, 51, 225, 0.4);

    /* 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 */
    --font-body: 'VT323', monospace;
    --font-heading: 'Press Start 2P', cursive;

    /* Unique Gradients */
    --gradient-neon: linear-gradient(135deg, #ff6ec7, #b833e1, #00f5d4);
    --gradient-card: linear-gradient(145deg, #111827 0%, #1a1040 100%);
    --gradient-hero: linear-gradient(180deg, #0a0e1a 0%, #1a0a2e 50%, #0a0e1a 100%);
}

/* 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-size: 20px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style: none;
}

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

h1 { font-size: 24px; }
h2 { font-size: 18px; }
h3 { font-size: 14px; }
h4 { font-size: 12px; }

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

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

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

/* 5. Header */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(6, 9, 18, 0.95);
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-neon) 1;
    z-index: 1000;
    box-shadow: 0 0 20px var(--glow-primary), 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
}

.m-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.m-header__logo {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
    text-decoration: none;
    text-shadow: 0 0 10px var(--glow-primary), 0 0 30px var(--glow-primary), 2px 2px 0 rgba(0,0,0,0.8);
    letter-spacing: 3px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px var(--glow-primary));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 8px var(--glow-primary)); }
    50% { filter: drop-shadow(0 0 16px var(--glow-primary)) drop-shadow(0 0 30px var(--glow-secondary)); }
}

.m-header__logo:hover {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    background: none;
    filter: drop-shadow(0 0 12px var(--glow-accent));
}

.m-header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.m-header__link {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color 0.3s ease;
}

.m-header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--glow-primary);
}

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

.m-header__link:hover::after,
.m-header__link.is-active::after {
    width: 100%;
}

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

.m-header__account-btn {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--bg-darker);
    background: var(--gradient-neon);
    border: none;
    padding: var(--space-sm) var(--space-lg);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    image-rendering: pixelated;
    border-radius: 0;
    box-shadow: 0 0 15px var(--glow-primary), 3px 3px 0 rgba(0,0,0,0.4);
    background-size: 200% 200%;
    animation: btnShimmer 4s ease infinite;
}

@keyframes btnShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.m-header__account-btn:hover {
    background: var(--accent);
    transform: translate(-1px, -1px);
    box-shadow: 0 0 25px var(--glow-accent), 4px 4px 0 rgba(0,0,0,0.4);
}

.m-header__account-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 0 0 8px var(--glow-primary), 1px 1px 0 rgba(0,0,0,0.4);
}

/* Burger */
.m-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.m-header__burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 0 5px var(--glow-primary);
}

.m-header__burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.m-header__burger.is-active span:nth-child(2) {
    opacity: 0;
}

.m-header__burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* 6. Mobile Menu */
.m-header__mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(6, 9, 18, 0.97);
    border-bottom: 1px solid rgba(255, 110, 199, 0.3);
    padding: var(--space-lg);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.m-header__mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
}

.m-header__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.m-header__mobile-link {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 110, 199, 0.1);
    text-transform: uppercase;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.m-header__mobile-link:hover {
    color: var(--primary);
    padding-left: var(--space-sm);
    text-shadow: 0 0 10px var(--glow-primary);
}

/* 7. Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.3s ease;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
    border-radius: 0;
    line-height: 1.4;
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.btn--primary {
    background: var(--gradient-neon);
    background-size: 200% 200%;
    color: var(--bg-darker);
    animation: btnShimmer 4s ease infinite;
    box-shadow: 0 0 15px var(--glow-primary), 4px 4px 0 rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: none;
}

.btn--primary:hover::before {
    animation: btnSweep 0.6s ease forwards;
}

@keyframes btnSweep {
    to { transform: translateX(100%); }
}

.btn--primary:hover {
    background: var(--gradient-neon);
    background-size: 200% 200%;
    color: var(--bg-darker);
    box-shadow: 0 0 25px var(--glow-primary), 0 0 50px var(--glow-secondary), 4px 4px 0 rgba(0,0,0,0.5);
}

.btn--secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--glow-primary), 3px 3px 0 rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn--secondary:hover {
    background: rgba(255, 110, 199, 0.1);
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--glow-accent), 3px 3px 0 rgba(0,0,0,0.3);
}

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

.btn--sm {
    padding: 8px 16px;
    font-size: 8px;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}

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

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

/* 9. Hero Section */
.m-hero {
    background: var(--gradient-hero);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-neon) 1;
}

.m-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(184, 51, 225, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 245, 212, 0.06) 0%, transparent 60%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 110, 199, 0.02) 2px,
            rgba(255, 110, 199, 0.02) 4px
        );
    pointer-events: none;
}

.m-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 110, 199, 0.03) 60deg, transparent 120deg, rgba(0, 245, 212, 0.03) 180deg, transparent 240deg, rgba(184, 51, 225, 0.03) 300deg, transparent 360deg);
    animation: heroRotate 30s linear infinite;
    pointer-events: none;
}

@keyframes heroRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.m-hero__title {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 20px var(--glow-primary), 0 0 60px var(--glow-secondary), 3px 3px 0 rgba(0,0,0,0.8);
    animation: neonFlicker 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes neonFlicker {
    0%, 100% { text-shadow: 0 0 20px var(--glow-primary), 0 0 60px var(--glow-secondary), 3px 3px 0 rgba(0,0,0,0.8); opacity: 1; }
    8% { opacity: 0.95; }
    9% { opacity: 1; }
    50% { text-shadow: 0 0 30px var(--glow-primary), 0 0 80px var(--glow-secondary), 0 0 120px var(--glow-primary), 3px 3px 0 rgba(0,0,0,0.8); }
    52% { opacity: 0.97; }
    53% { opacity: 1; }
}

.m-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--glow-accent);
    letter-spacing: 3px;
}

.m-hero__text {
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

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

.m-hero--small .m-hero__title {
    font-size: 24px;
}

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

.m-hero__auth-buttons {
    display: flex;
    gap: var(--space-sm);
}

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

.m-hero__title--404 {
    font-size: 80px;
    color: var(--primary);
}

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

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

.m-section__title {
    font-size: 18px;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--primary);
    text-shadow: 0 0 15px var(--glow-primary), 2px 2px 0 rgba(0,0,0,0.6);
    position: relative;
}

.m-section__title::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: var(--gradient-neon);
    margin: var(--space-sm) auto 0;
    box-shadow: 0 0 10px var(--glow-primary);
}

.m-section__subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 22px;
    margin-top: calc(var(--space-2xl) * -1 + var(--space-md));
    margin-bottom: var(--space-2xl);
}

.m-section__provider-title {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: var(--space-md);
    text-align: center;
    text-transform: uppercase;
}

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

.m-section--benefits {
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(26, 10, 46, 0.5) 50%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(255, 110, 199, 0.2);
    border-bottom: 1px solid rgba(0, 245, 212, 0.2);
    position: relative;
}

.m-section--benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-neon);
    opacity: 0.5;
}

.m-section--benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-neon);
    opacity: 0.5;
}

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

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

.m-benefit-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 110, 199, 0.15);
    padding: var(--space-xl);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.m-benefit-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 3px;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.m-benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 110, 199, 0.06) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.m-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 110, 199, 0.4);
    box-shadow: 0 8px 30px rgba(184, 51, 225, 0.15), 0 0 20px var(--glow-primary);
}

.m-benefit-card:hover::before {
    opacity: 1;
}

.m-benefit-card:hover::after {
    opacity: 1;
}

.m-benefit-card__icon {
    font-size: 40px;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 8px var(--glow-accent));
    animation: iconFloat 3s ease-in-out infinite;
}

.m-benefit-card:nth-child(2) .m-benefit-card__icon { animation-delay: -0.75s; }
.m-benefit-card:nth-child(3) .m-benefit-card__icon { animation-delay: -1.5s; }
.m-benefit-card:nth-child(4) .m-benefit-card__icon { animation-delay: -2.25s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.m-benefit-card__title {
    font-size: 11px;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.m-benefit-card__text {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 0;
}

/* 12. Featured Providers / Featured Games */
.m-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.m-game-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 110, 199, 0.2);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.m-game-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 110, 199, 0.2), 0 0 15px var(--glow-primary);
}

.m-game-card__image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

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

.m-game-card:hover .m-game-card__image img {
    transform: scale(1.05);
}

.m-game-card__info {
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    background: rgba(6, 9, 18, 0.9);
    border-top: 1px solid rgba(255, 110, 199, 0.1);
}

.m-game-card__title {
    font-family: var(--font-heading);
    font-size: 8px;
    color: var(--text-primary);
    text-transform: uppercase;
}

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

/* 14. Game Tile */
.m-game-tile {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 110, 199, 0.15);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.m-game-tile:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(255, 110, 199, 0.2), 0 0 12px var(--glow-primary);
}

.m-game-tile__image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.m-game-tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.m-game-tile:hover .m-game-tile__image img {
    transform: scale(1.05);
}

.m-game-tile__info {
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    background: rgba(6, 9, 18, 0.9);
    border-top: 1px solid rgba(255, 110, 199, 0.1);
}

.m-game-tile__title {
    font-family: var(--font-heading);
    font-size: 8px;
    color: var(--text-primary);
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-game-tile__provider {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* 15. Game Tile Locked */
.m-game-tile--locked {
    cursor: default;
}

.m-game-tile--locked .m-game-tile__image img {
    filter: blur(4px) grayscale(60%) brightness(0.4);
    opacity: 0.5;
}

.m-game-tile--locked:hover {
    transform: none;
    border-color: var(--border-color);
}

.m-game-tile--locked:hover .m-game-tile__image img {
    transform: none;
}

.m-game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 9, 18, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    z-index: 2;
    backdrop-filter: blur(2px);
}

.m-game-tile__lock-icon {
    font-size: 32px;
}

.m-game-tile__lock-text {
    font-family: var(--font-heading);
    font-size: 7px;
    color: var(--text-secondary);
    text-transform: uppercase;
    text-align: center;
    padding: 0 var(--space-sm);
}

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

.m-provider-section__title {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(0, 245, 212, 0.2);
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--glow-accent);
}

/* 17. Filter */
.m-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    justify-content: center;
}

.m-filter-btn {
    font-family: var(--font-heading);
    font-size: 8px;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid rgba(255, 110, 199, 0.2);
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.m-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px var(--glow-primary);
}

.m-filter-btn.is-active {
    background: var(--gradient-neon);
    background-size: 200% 200%;
    color: var(--bg-darker);
    border-color: transparent;
    box-shadow: 0 0 15px var(--glow-primary);
    animation: btnShimmer 4s ease infinite;
}

/* 18. Unlock Banner */
.m-unlock-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--gradient-card);
    border: 1px solid rgba(255, 110, 199, 0.3);
    padding: var(--space-lg);
    position: relative;
    box-shadow: 0 0 20px rgba(184, 51, 225, 0.1);
}

.m-unlock-banner::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gradient-neon);
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
    pointer-events: none;
    animation: unlockPulse 3s ease-in-out infinite;
}

@keyframes unlockPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.m-unlock-banner__icon {
    font-size: 32px;
    flex-shrink: 0;
}

.m-unlock-banner__text {
    flex: 1;
    font-size: 18px;
    color: var(--text-secondary);
}

.m-unlock-banner__text strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 10px;
}

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

/* 19. FAQ */
.m-faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.m-faq-item {
    border: 1px solid rgba(255, 110, 199, 0.12);
    margin-bottom: var(--space-sm);
    background: var(--gradient-card);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.m-faq-item:hover {
    border-color: rgba(255, 110, 199, 0.3);
}

.m-faq-item.is-active {
    border-color: rgba(255, 110, 199, 0.4);
    box-shadow: 0 0 15px rgba(255, 110, 199, 0.1);
}

.m-faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 9px;
    cursor: pointer;
    text-align: left;
    line-height: 1.6;
    gap: var(--space-md);
    transition: color 0.3s ease;
}

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

.m-faq-item__icon {
    font-family: var(--font-body);
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px var(--glow-primary);
}

.m-faq-item.is-active .m-faq-item__icon {
    transform: rotate(45deg);
}

.m-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--space-lg);
}

.m-faq-item.is-active .m-faq-item__answer {
    max-height: 300px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.m-faq-item__answer p {
    color: var(--text-secondary);
    font-size: 20px;
    line-height: 1.7;
}

/* 20. Disclaimer */
.m-disclaimer {
    background: rgba(6, 9, 18, 0.8);
    border: 1px solid rgba(255, 56, 96, 0.2);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: inset 0 0 30px rgba(255, 56, 96, 0.03);
}

.m-disclaimer p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.m-disclaimer strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 9px;
}

/* 21. Footer */
.m-footer {
    background: var(--bg-darker);
    border-top: 2px solid transparent;
    border-image: var(--gradient-neon) 1;
    padding-top: var(--space-3xl);
    position: relative;
}

.m-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 110, 199, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

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

.m-footer__logo {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 15px var(--glow-primary), 2px 2px 0 rgba(0,0,0,0.5);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-footer__description {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
}

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

.m-footer__title {
    font-size: 10px;
    color: var(--primary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.m-footer__list {
    list-style: none;
}

.m-footer__list li {
    margin-bottom: var(--space-sm);
}

.m-footer__list a {
    color: var(--text-secondary);
    font-size: 20px;
    transition: color 0.3s ease;
}

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

.m-footer__list a::before {
    content: '▸ ';
    color: rgba(255, 110, 199, 0.3);
    transition: color 0.3s ease;
}

.m-footer__list a:hover::before {
    color: var(--primary);
    text-shadow: 0 0 5px var(--glow-primary);
}

.m-footer__compliance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 110, 199, 0.15);
    border-bottom: 1px solid rgba(0, 245, 212, 0.15);
    margin-bottom: var(--space-xl);
}

.m-footer__compliance-logos {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.m-footer__compliance-logo {
    height: 36px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(30%);
}

.m-footer__compliance-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

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

.m-footer__age-badge {
    font-family: var(--font-heading);
    font-size: 16px;
    color: #fff;
    background: var(--danger);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 56, 96, 0.6);
    box-shadow: 0 0 15px rgba(255, 56, 96, 0.3);
}

.m-footer__bottom {
    padding: var(--space-lg) 0 var(--space-xl);
    text-align: center;
}

.m-footer__bottom p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

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

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

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

.modal__content {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid rgba(255, 110, 199, 0.4);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 40px var(--glow-primary), 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal__content h2 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.modal__content p {
    color: var(--text-secondary);
    font-size: 22px;
    margin-bottom: var(--space-xl);
}

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

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    font-family: var(--font-body);
}

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

/* Game Modal */
.modal--game .modal__content--game {
    max-width: 900px;
    width: 95%;
    padding: 0;
    border: 1px solid rgba(255, 110, 199, 0.3);
    box-shadow: 0 0 50px var(--glow-primary), 0 0 100px var(--glow-secondary);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: rgba(6, 9, 18, 0.95);
    border-bottom: 1px solid rgba(255, 110, 199, 0.2);
}

.modal__title {
    font-size: 10px;
    color: var(--primary);
    margin-bottom: 0;
}

.modal__body {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.modal__body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Auth Modal */
.modal--auth .modal__content--auth {
    max-width: 420px;
    padding: var(--space-2xl);
    text-align: left;
}

/* Bonus Modal */
.modal--bonus .modal__content--bonus {
    max-width: 400px;
    text-align: center;
}

.m-daily-bonus__icon {
    font-size: 56px;
    margin-bottom: var(--space-md);
}

.m-daily-bonus__title {
    font-size: 16px;
    color: var(--primary);
}

.m-daily-bonus__text {
    color: var(--text-secondary);
    font-size: 20px;
}

.m-daily-bonus__amount {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--accent);
    margin-bottom: var(--space-xl);
    text-shadow: 0 0 15px var(--glow-accent), 0 0 30px var(--glow-accent);
}

/* 23. Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6, 9, 18, 0.97);
    border-top: 1px solid rgba(255, 110, 199, 0.3);
    padding: var(--space-lg);
    z-index: 1500;
    display: none;
    box-shadow: 0 -5px 30px rgba(255, 110, 199, 0.1);
    backdrop-filter: blur(12px);
}

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

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

.cookie-consent__content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 0;
}

/* 24. Auth Forms */
.m-auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: var(--space-xl);
    border: 2px solid var(--border-color);
}

.m-auth-tab {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 9px;
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
}

.m-auth-tab.is-active {
    background: var(--gradient-neon);
    background-size: 200% 200%;
    color: var(--bg-darker);
    animation: btnShimmer 4s ease infinite;
}

.m-auth-tab:not(.is-active):hover {
    color: var(--primary);
}

.m-auth-form.is-hidden {
    display: none;
}

.m-form-group {
    margin-bottom: var(--space-md);
}

.m-form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 8px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
}

.m-input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-darker);
    border: 1px solid rgba(255, 110, 199, 0.2);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.m-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--glow-primary), inset 0 0 5px rgba(255, 110, 199, 0.05);
}

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

/* 25. Account Page */
.m-page-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: var(--space-xl);
    text-shadow: 0 0 15px var(--glow-primary), 2px 2px 0 rgba(0,0,0,0.6);
}

.m-page-subtitle {
    color: var(--text-secondary);
    font-size: 22px;
    margin-bottom: var(--space-2xl);
    margin-top: calc(-1 * var(--space-md));
}

.m-account-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

/* Unique selection color */
::selection {
    background: rgba(255, 110, 199, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(255, 110, 199, 0.3);
    color: var(--text-primary);
}

.m-content-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 110, 199, 0.12);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.m-content-card__title {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.m-content-card h2 {
    font-size: 14px;
    color: var(--primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

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

.m-content-card h3 {
    font-size: 11px;
    color: var(--accent);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.m-content-card p {
    color: var(--text-secondary);
    font-size: 20px;
    line-height: 1.7;
}

.m-content-card ul,
.m-content-card ol {
    list-style: none;
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.m-content-card ul li,
.m-content-card ol li {
    color: var(--text-secondary);
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: var(--space-xs);
    position: relative;
    padding-left: var(--space-lg);
}

.m-content-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

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

.m-content-card a:hover {
    color: var(--primary);
}

.m-content-card__cta {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 110, 199, 0.15);
    text-align: center;
}

.m-content-card--why {
    margin-bottom: var(--space-xl);
}

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

.m-why-item {
    text-align: center;
}

.m-why-item__icon {
    font-size: 32px;
    display: block;
    margin-bottom: var(--space-sm);
}

.m-why-item h3 {
    font-size: 9px;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.m-why-item p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 0;
}

/* 26. Profile */
.m-profile-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 110, 199, 0.15);
    padding: var(--space-xl);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.m-profile-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 2px dashed var(--border-color);
}

.m-profile-card__badge {
    width: 60px;
    height: 60px;
    background: var(--gradient-neon);
    color: var(--bg-darker);
    font-family: var(--font-heading);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--glow-primary);
}

.m-profile-card__name {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.m-profile-card__email {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 0;
}

.m-profile-card__actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

/* 27. XP Progress */
.m-xp-section {
    margin-bottom: var(--space-xl);
}

.m-xp-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 9px;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.m-xp-bar {
    width: 100%;
    height: 20px;
    background: var(--bg-darker);
    border: 1px solid rgba(0, 245, 212, 0.2);
    overflow: hidden;
    position: relative;
}

.m-xp-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #00d4aa, var(--accent));
    background-size: 200% 100%;
    animation: xpFlow 2s linear infinite;
    transition: width 0.5s ease;
    position: relative;
    box-shadow: 0 0 10px var(--glow-accent);
}

@keyframes xpFlow {
    from { background-position: 200% 0; }
    to { background-position: 0% 0; }
}

.m-xp-bar__fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255,255,255,0.5);
    animation: xpShine 1.5s ease-in-out infinite;
}

@keyframes xpShine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

.m-stat-card {
    background: rgba(6, 9, 18, 0.8);
    border: 1px solid rgba(255, 110, 199, 0.12);
    padding: var(--space-lg);
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.m-stat-card:hover {
    border-color: rgba(255, 110, 199, 0.3);
    box-shadow: 0 0 15px rgba(255, 110, 199, 0.08);
}

.m-stat-card__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.m-stat-card__label {
    font-size: 16px;
    color: var(--text-muted);
}

/* 29. Content Pages */
.m-breadcrumb {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-family: var(--font-body);
}

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

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

.m-breadcrumb span {
    margin: 0 var(--space-xs);
}

/* Fact list for responsible page */
.m-fact-list {
    margin-bottom: var(--space-lg);
}

.m-fact-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(0, 245, 212, 0.1);
}

.m-fact-item__icon {
    font-size: 24px;
    flex-shrink: 0;
}

.m-fact-item strong {
    color: var(--primary);
    display: block;
    font-family: var(--font-heading);
    font-size: 9px;
    margin-bottom: var(--space-xs);
}

.m-fact-item p {
    margin-bottom: 0;
}

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

.article-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 110, 199, 0.12);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 110, 199, 0.4);
    box-shadow: 0 8px 25px rgba(184, 51, 225, 0.15), 0 0 15px var(--glow-primary);
}

.article-card__content {
    padding: var(--space-lg);
}

.article-card__category {
    font-family: var(--font-heading);
    font-size: 7px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: var(--space-sm);
    background: rgba(0, 245, 212, 0.08);
    padding: 3px 8px;
    border: 1px solid rgba(0, 245, 212, 0.3);
    text-shadow: 0 0 6px var(--glow-accent);
}

.article-card__title {
    font-size: 10px;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.article-card__excerpt {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.article-card__link {
    font-family: var(--font-heading);
    font-size: 8px;
    color: var(--primary);
    text-transform: uppercase;
}

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

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

.m-review-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 110, 199, 0.12);
    padding: var(--space-xl);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.m-review-card:hover {
    border-color: rgba(255, 110, 199, 0.4);
    box-shadow: 0 8px 25px rgba(184, 51, 225, 0.15), 0 0 15px var(--glow-primary);
}

.m-review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.m-review-card__title {
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 0;
}

.m-review-card__rating {
    font-size: 18px;
}

.m-review-card__text {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.m-review-card__stats {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    font-size: 18px;
    color: var(--text-muted);
}

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

.m-review-hero__rating {
    font-size: 24px;
    margin-bottom: var(--space-sm);
}

.m-review-hero__tagline {
    font-size: 20px;
    color: var(--text-secondary);
}

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

.m-review-game-tile {
    background: rgba(6, 9, 18, 0.6);
    border: 1px solid rgba(255, 110, 199, 0.12);
    overflow: hidden;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.m-review-game-tile:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 110, 199, 0.15);
}

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

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

/* 32. Utility Classes */
.stars {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

.is-hidden {
    display: none !important;
}

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

/* Scanline overlay + vignette for unique arcade feel */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.04) 3px,
            rgba(0, 0, 0, 0.04) 6px
        ),
        radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 9999;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border: 1px solid var(--bg-darker);
    box-shadow: 0 0 5px var(--glow-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent), var(--primary));
    box-shadow: 0 0 10px var(--glow-accent);
}

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

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

    .m-header__burger {
        display: flex;
    }

    .m-header__mobile-menu {
        display: block;
    }

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

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

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

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

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

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

@media (max-width: 768px) {
    h1 { font-size: 18px; }
    h2 { font-size: 14px; }
    h3 { font-size: 11px; }

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

    .m-hero__title {
        font-size: 22px;
    }

    .m-hero--small .m-hero__title {
        font-size: 18px;
    }

    .m-hero__title--404 {
        font-size: 56px;
    }

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

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

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

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

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

    .m-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }

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

    .m-footer__compliance {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .m-page-title {
        font-size: 18px;
    }

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

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

    .m-filter-btn {
        font-size: 7px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    h1 { font-size: 14px; }
    h2 { font-size: 11px; }

    .m-section__title::after {
        width: 80px;
    }

    body {
        font-size: 18px;
    }

    .m-hero__title {
        font-size: 18px;
    }

    .m-hero__title--404 {
        font-size: 40px;
    }

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

    .m-articles-grid {
        grid-template-columns: 1fr;
    }

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

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

    .m-stat-card {
        padding: var(--space-md);
    }

    .m-stat-card__value {
        font-size: 16px;
    }

    .m-footer__links {
        grid-template-columns: 1fr;
    }

    .m-profile-card__header {
        flex-direction: column;
        text-align: center;
    }

    .m-profile-card__actions {
        flex-direction: column;
    }

    .m-faq-item__question {
        font-size: 8px;
        padding: var(--space-sm) var(--space-md);
    }

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

    .modal__content {
        padding: var(--space-lg);
        width: 95%;
    }

    .modal--auth .modal__content--auth {
        padding: var(--space-lg);
    }

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

}