/* ============================================
   LAGRANGEE - Social Casino
   Style: #33 Stadium (LED scoreboard, pixels, timers)
   Fonts: Teko / Barlow Condensed
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors - Stadium / LED */
    --primary: #39ff14;
    --primary-dark: #2ecc0f;
    --secondary: #ff3c38;
    --accent: #ffe600;

    /* Backgrounds */
    --bg-dark: #1b1b2f;
    --bg-darker: #12121f;
    --bg-card: #242442;
    --bg-card-hover: #2d2d52;

    /* Text */
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0cc;
    --text-muted: #7a7a9e;

    /* 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: 'Barlow Condensed', sans-serif;
    --font-heading: 'Teko', sans-serif;
}

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

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

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

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

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

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

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

/* 3. Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

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

.m-highlight {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

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

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

/* 5. Header */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-darker);
    border-bottom: 2px solid var(--primary);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(57, 255, 20, 0.15);
}

.m-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m-header__brand {
    flex-shrink: 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 12px rgba(57, 255, 20, 0.6), 0 0 24px rgba(57, 255, 20, 0.3);
    transition: text-shadow 0.3s ease;
}

.logo:hover {
    color: var(--primary);
    text-shadow: 0 0 18px rgba(57, 255, 20, 0.8), 0 0 36px rgba(57, 255, 20, 0.5);
}

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

.m-header__link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color 0.25s ease;
}

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

.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 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
}

.m-header__account-btn:hover {
    background: var(--primary);
    color: var(--bg-darker);
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

.m-header__account-icon {
    font-size: 1.2rem;
}

/* 6. Mobile Menu */
.m-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.m-header__burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 0 4px rgba(57, 255, 20, 0.5);
}

.m-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-darker);
    border-left: 2px solid var(--primary);
    z-index: 2000;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(57, 255, 20, 0.15);
}

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

.m-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.m-mobile-menu__close {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: var(--space-xs);
}

.m-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: var(--space-lg);
}

.m-mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.m-mobile-menu__link:hover,
.m-mobile-menu__link.is-active {
    color: var(--primary);
    padding-left: var(--space-sm);
}

/* Mobile Menu Overlay */
.m-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.m-mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* 7. Buttons */
.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
}

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

.m-btn--primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 16px rgba(57, 255, 20, 0.4);
}

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

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

.m-btn--glow {
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5), 0 0 40px rgba(57, 255, 20, 0.2);
    animation: ledPulse 2s ease-in-out infinite;
}

@keyframes ledPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.5), 0 0 40px rgba(57, 255, 20, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(57, 255, 20, 0.7), 0 0 60px rgba(57, 255, 20, 0.35);
    }
}

.m-btn--sm {
    font-size: 1rem;
    padding: 10px 20px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

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

.btn--primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

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

.btn--secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

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

/* 9. Hero Section */
.m-hero {
    position: relative;
    padding: var(--space-3xl) 0;
    text-align: center;
    overflow: hidden;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(57, 255, 20, 0.03) 3px,
            rgba(57, 255, 20, 0.03) 4px
        ),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.m-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center top, rgba(57, 255, 20, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.m-hero__container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    z-index: 1;
}

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

.m-hero__scoreboard {
    position: relative;
    display: inline-block;
    padding: var(--space-2xl) var(--space-3xl);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    background: rgba(18, 18, 31, 0.9);
    box-shadow:
        0 0 30px rgba(57, 255, 20, 0.15),
        inset 0 0 60px rgba(57, 255, 20, 0.03);
}

.m-hero__led-border {
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius-md) + 4px);
    border: 2px dashed rgba(57, 255, 20, 0.3);
    animation: borderMarquee 8s linear infinite;
    pointer-events: none;
}

@keyframes borderMarquee {
    0% {
        border-color: rgba(57, 255, 20, 0.3);
    }
    50% {
        border-color: rgba(57, 255, 20, 0.7);
    }
    100% {
        border-color: rgba(57, 255, 20, 0.3);
    }
}

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.6), 0 0 40px rgba(57, 255, 20, 0.3);
    letter-spacing: 6px;
    margin-bottom: var(--space-sm);
}

.m-hero__title--sm {
    font-size: 3rem;
}

.m-hero__title--404 {
    font-size: 8rem;
    color: var(--secondary);
    text-shadow: 0 0 30px rgba(255, 60, 56, 0.6);
}

.m-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 4px;
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 10px rgba(255, 230, 0, 0.4);
}

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

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

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

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

/* 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: 2.4rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-2xl);
}

.m-section__title--mt {
    margin-top: var(--space-3xl);
}

.m-section__subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: calc(-1 * var(--space-lg));
    margin-bottom: var(--space-2xl);
}

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

.m-section--benefits {
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(57, 255, 20, 0.015) 3px,
            rgba(57, 255, 20, 0.015) 4px
        ),
        var(--bg-darker);
}

.m-section--faq {
    background: var(--bg-darker);
}

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

.m-section--games {
    padding-top: 0;
}

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

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

.m-benefit-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 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;
}

.m-benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15);
}

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

.m-benefit-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.m-benefit-card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

/* 12. Featured Providers */
.m-featured__provider-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent);
    text-align: center;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255, 230, 0, 0.3);
}

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

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

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

/* 14. Game Tile / Card */
.m-game-tile {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 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;
}

.m-game-tile:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.2);
}

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

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

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

.m-game-tile__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 27, 47, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.m-game-tile:hover .m-game-tile__play-overlay {
    opacity: 1;
}

.m-game-tile__play-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    background: rgba(27, 27, 47, 0.8);
    box-shadow: 0 0 16px rgba(57, 255, 20, 0.4);
}

.m-game-tile__info {
    padding: var(--space-sm) var(--space-md);
}

.m-game-tile__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* Game Card (for featured, review pages) */
.m-game-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 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;
}

.m-game-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(57, 255, 20, 0.2);
}

.m-game-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.m-game-card__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 27, 47, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.m-game-card:hover .m-game-card__play-overlay {
    opacity: 1;
}

.m-game-card__play-icon {
    width: 44px;
    height: 44px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    background: rgba(27, 27, 47, 0.8);
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

.m-game-card__info {
    padding: var(--space-sm) var(--space-md);
}

.m-game-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-game-card--sm {
    border-radius: var(--radius-sm);
}

.m-game-card--sm .m-game-card__img-wrap {
    aspect-ratio: 4/3;
}

.m-game-card--sm .m-game-card__title {
    font-size: 0.9rem;
    padding: var(--space-xs) var(--space-sm);
}

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

.m-game-tile--locked .m-game-tile__image {
    filter: blur(4px) grayscale(50%);
    opacity: 0.6;
}

.m-game-tile--locked:hover {
    transform: none;
    border-color: rgba(57, 255, 20, 0.12);
    box-shadow: none;
}

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

.m-game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 31, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

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

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

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

.m-provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(255, 230, 0, 0.2);
    letter-spacing: 2px;
    text-shadow: 0 0 6px rgba(255, 230, 0, 0.3);
}

/* 17. Filter */
.m-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
}

.m-filter__btn {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid rgba(57, 255, 20, 0.25);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
}

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

.m-filter__btn.is-active {
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

/* 18. Unlock Banner */
.m-unlock-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg-card);
    border: 1px solid rgba(255, 60, 56, 0.3);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-md);
}

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

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

.m-unlock-banner__text strong {
    color: var(--secondary);
}

/* 19. FAQ */
.m-faq {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.m-faq__item {
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.m-faq__item.is-open {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.1);
}

.m-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: left;
    transition: color 0.25s ease;
}

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

.m-faq__icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.m-faq__item.is-open .m-faq__icon {
    transform: rotate(45deg);
}

.m-faq__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-open .m-faq__answer {
    max-height: 500px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.m-faq__answer p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* 20. Disclaimer */
.m-disclaimer {
    background: var(--bg-card);
    border: 1px solid rgba(255, 60, 56, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

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

.m-disclaimer strong {
    color: var(--secondary);
}

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

/* 21. Footer */
.m-footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary);
    padding-top: var(--space-3xl);
    box-shadow: 0 -2px 20px rgba(57, 255, 20, 0.1);
}

.m-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.m-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

.m-footer__description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: var(--space-md);
    line-height: 1.6;
}

.m-footer__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.m-footer__links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.m-footer__link {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.m-footer__link:hover {
    color: var(--primary);
    padding-left: var(--space-xs);
}

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

.footer__compliance-logo {
    height: 36px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.m-footer__age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.m-footer__copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* 22. Modals */
.m-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

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

.m-modal__content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.15);
}

.m-modal__content--game {
    max-width: 960px;
    padding: 0;
    overflow: hidden;
    background: #000;
}

.m-modal__content--auth {
    max-width: 440px;
}

.m-modal__content--bonus {
    max-width: 400px;
    text-align: center;
}

.m-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(18, 18, 31, 0.8);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.25s ease;
    line-height: 1;
}

.m-modal__close:hover {
    background: var(--primary);
    color: var(--bg-darker);
}

.m-modal__game-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.m-modal__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Age Modal (separate) */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

.modal__content {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.2);
}

.modal__header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.modal__body p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

.modal__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-lg);
}

/* 23. Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    border-top: 2px solid var(--primary);
    padding: var(--space-lg);
    z-index: 4000;
    box-shadow: 0 -4px 20px rgba(57, 255, 20, 0.15);
}

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

.cookie-consent__content p {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-consent__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* 24. Auth Forms */
.m-auth-tabs {
    display: flex;
    margin-bottom: var(--space-xl);
    border-bottom: 2px solid rgba(57, 255, 20, 0.15);
}

.m-auth-tabs__btn {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: var(--space-md);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
}

.m-auth-tabs__btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.25s ease;
}

.m-auth-tabs__btn.is-active {
    color: var(--primary);
}

.m-auth-tabs__btn.is-active::after {
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
}

.m-auth-form__group {
    margin-bottom: var(--space-md);
}

.m-auth-form__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.m-auth-form__input {
    width: 100%;
    padding: 12px var(--space-md);
    background: var(--bg-darker);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.m-auth-form__input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.2);
}

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

.m-auth-form__footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: var(--space-md);
    margin-bottom: 0;
}

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

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

.m-account-form-card {
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.m-account-form-card__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: 2px;
}

.m-why-register {
    margin-top: var(--space-2xl);
}

/* 26. Profile */
.m-account-profile {
    max-width: 700px;
    margin: 0 auto;
}

.m-account-profile__header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: var(--radius-lg);
}

.m-account-profile__badge {
    width: 72px;
    height: 72px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.m-account-profile__name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.m-account-profile__email {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* 27. XP Progress */
.m-account-xp {
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.m-account-xp__header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.m-account-xp__bar {
    height: 12px;
    background: var(--bg-darker);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.m-account-xp__progress {
    height: 100%;
    background: var(--primary);
    border-radius: 6px;
    transition: width 0.5s ease;
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

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

.m-account-stat {
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

.m-account-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

.m-account-stat__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
}

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

/* Daily Bonus */
.m-daily-bonus {
    text-align: center;
}

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

.m-daily-bonus__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 230, 0, 0.4);
    margin-bottom: var(--space-sm);
}

.m-daily-bonus__text {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.m-daily-bonus__amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 16px rgba(57, 255, 20, 0.6);
    margin-bottom: var(--space-xl);
}

/* 29. Content Pages */
.m-page-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-lg);
}

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

.m-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    font-size: 0.9rem;
}

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

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

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

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

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

.m-content-card h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

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

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

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

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

.m-content-card li {
    margin-bottom: var(--space-xs);
}

.m-content-card strong {
    color: var(--text-primary);
}

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

.m-content-card__meta {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xl) !important;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

.m-content-card__cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(57, 255, 20, 0.1);
}

.m-contact-info {
    background: var(--bg-darker);
    border: 1px solid rgba(57, 255, 20, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-md);
}

.m-contact-info p {
    margin-bottom: var(--space-xs);
}

.m-contact-info p:last-child {
    margin-bottom: 0;
}

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

.m-fact-card {
    background: var(--bg-darker);
    border: 1px solid rgba(57, 255, 20, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

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

.m-fact-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.m-fact-card__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Help Links (responsible) */
.m-help-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.m-help-link {
    background: var(--bg-darker);
    border: 1px solid rgba(57, 255, 20, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.m-help-link h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    margin-top: 0;
}

.m-help-link p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

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

.m-article-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.m-article-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(57, 255, 20, 0.15);
}

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

.m-article-card__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-darker);
    background: var(--primary);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.m-article-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
}

.m-article-card__excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

.m-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 {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 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;
}

.m-review-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.15);
}

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

.m-review-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 1px;
}

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

.stars {
    color: #ffc107;
    font-size: 1rem;
}

.m-review-card__score {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent);
}

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

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

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

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

.m-review-hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.m-review-hero__score {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent);
}

.m-review-hero__meta {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 32. Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: var(--space-md);
}

.mt-2 {
    margin-top: var(--space-xl);
}

.mb-0 {
    margin-bottom: 0;
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(57, 255, 20, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(57, 255, 20, 0.5);
}

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

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

    .m-header__burger {
        display: flex;
    }

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

    .m-footer__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-help-links {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

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

    .m-hero__title--sm {
        font-size: 2.2rem;
    }

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

    .m-hero__scoreboard {
        padding: var(--space-xl);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .m-filter {
        justify-content: center;
    }

    .m-review-hero__meta {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .m-hero__title {
        font-size: 2.4rem;
        letter-spacing: 3px;
    }

    .m-hero__subtitle {
        font-size: 1.2rem;
    }

    .m-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .m-header__account-text {
        display: none;
    }

    .m-header__account-btn {
        padding: var(--space-sm);
    }

    .modal__actions {
        flex-direction: column;
    }

    .m-hero__scoreboard {
        padding: var(--space-lg) var(--space-md);
    }
}
.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
