/* ============================================
   ActuZine Casino — Futurism Style
   Fonts: Chakra Petch (headings) + Titillium Web (body)
   Palette: Dark #0b0c10, Cyan #66fcf1, Secondary #45a29e
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors */
    --primary: #66fcf1;
    --primary-dark: #45a29e;
    --secondary: #45a29e;
    --accent: #c5c6c7;

    /* Backgrounds */
    --bg-dark: #0b0c10;
    --bg-darker: #070809;
    --bg-card: #1f2833;
    --bg-card-hover: #2a3544;

    /* Text */
    --text-primary: #e8e8e8;
    --text-secondary: #c5c6c7;
    --text-muted: #8b8d90;

    /* 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: 'Titillium Web', sans-serif;
    --font-heading: 'Chakra Petch', 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-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: 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(--primary-dark);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

/* 3. Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

/* 4. Container */
.m-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(11, 12, 16, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(102, 252, 241, 0.1);
    z-index: 1000;
    transition: background 0.3s ease;
}

.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__logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(102, 252, 241, 0.3);
    transition: text-shadow 0.3s ease;
}

.m-header__logo:hover {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(102, 252, 241, 0.5);
}

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

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

.m-header__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(102, 252, 241, 0.4);
}

.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);
    padding: var(--space-sm) var(--space-md);
    background: rgba(102, 252, 241, 0.1);
    border: 1px solid rgba(102, 252, 241, 0.3);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.m-header__account-btn:hover {
    background: rgba(102, 252, 241, 0.2);
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.2);
}

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

.m-header__account-text {}

.m-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 5px;
}

.m-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.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, -5px);
}

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

@media (max-width: 480px) {
    .m-header__account-text {
        display: none;
    }
}

/* 6. Mobile Menu */
.m-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1500;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.m-mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.m-mobile-menu__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-darker);
    border-left: 1px solid rgba(102, 252, 241, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.m-mobile-menu.is-open .m-mobile-menu__content {
    transform: translateX(0);
}

.m-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(102, 252, 241, 0.1);
}

.m-mobile-menu__logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.m-mobile-menu__close {
    font-size: 2rem;
    color: var(--text-secondary);
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.3s ease;
}

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

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

.m-mobile-menu__link {
    display: block;
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(102, 252, 241, 0.05);
    transition: color 0.3s ease;
}

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

.m-mobile-menu__actions {
    padding: var(--space-lg);
    margin-top: auto;
}

.m-mobile-menu__login-btn {
    width: 100%;
    padding: var(--space-md);
    background: rgba(102, 252, 241, 0.15);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
}

.m-mobile-menu__login-btn:hover {
    background: rgba(102, 252, 241, 0.25);
}

/* 7. Buttons */
.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.m-btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(102, 252, 241, 0.25);
}

.m-btn--primary:hover {
    background: linear-gradient(135deg, #7afffa, #57c4b8);
    box-shadow: 0 6px 25px rgba(102, 252, 241, 0.4);
    transform: translateY(-2px);
    color: var(--bg-dark);
}

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

.m-btn--secondary:hover {
    background: rgba(102, 252, 241, 0.1);
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.15);
    color: var(--primary);
}

.m-btn--glow {
    animation: btnGlow 2.5s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(102, 252, 241, 0.25); }
    50% { box-shadow: 0 4px 30px rgba(102, 252, 241, 0.5), 0 0 60px rgba(102, 252, 241, 0.15); }
}

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

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
}

.btn-primary:hover {
    box-shadow: 0 4px 20px rgba(102, 252, 241, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(102, 252, 241, 0.2);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

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

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

.m-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(102, 252, 241, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(69, 162, 158, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.m-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.m-hero__particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 6s ease-in-out infinite;
}

.m-hero__particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.m-hero__particle:nth-child(2) { top: 60%; left: 25%; animation-delay: 1s; animation-duration: 5s; }
.m-hero__particle:nth-child(3) { top: 30%; left: 70%; animation-delay: 2s; animation-duration: 8s; }
.m-hero__particle:nth-child(4) { top: 70%; left: 80%; animation-delay: 3s; animation-duration: 6s; }
.m-hero__particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; animation-duration: 9s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(15px, -20px) scale(1.5); opacity: 0.6; }
    50% { transform: translate(-10px, -40px) scale(1); opacity: 0.4; }
    75% { transform: translate(20px, -15px) scale(1.8); opacity: 0.5; }
}

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: 0.04em;
}

.m-hero__title--404 {
    font-size: 8rem;
    color: var(--primary);
    text-shadow: 0 0 40px rgba(102, 252, 241, 0.4);
}

.m-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

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

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

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

.m-hero__col {}

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

@media (max-width: 768px) {
    .m-hero__title { font-size: 2.2rem; }
    .m-hero__title--404 { font-size: 5rem; }
    .m-hero__subtitle { font-size: 1.1rem; }
    .m-hero__row {
        flex-direction: column;
        text-align: center;
    }
    .m-hero__col--actions {
        justify-content: center;
    }
}

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

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

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

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

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

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

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

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

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

.m-section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    letter-spacing: 0.03em;
}

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

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

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

.m-benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(102, 252, 241, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.m-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.m-benefit-card:hover {
    border-color: rgba(102, 252, 241, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(102, 252, 241, 0.1);
}

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

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

.m-benefit-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.03em;
}

.m-benefit-card__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

@media (max-width: 480px) {
    .m-benefits-grid {
        grid-template-columns: 1fr;
    }
}

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

.m-featured-provider__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-md);
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

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

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

@media (max-width: 768px) {
    .m-games-grid--featured {
        max-width: 100%;
        gap: 12px;
    }
}

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

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

/* 14. Game Tile / Card */
.m-game-tile {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(102, 252, 241, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.m-game-tile:hover {
    border-color: rgba(102, 252, 241, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(102, 252, 241, 0.12);
}

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

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

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

.m-game-tile__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 12, 16, 0.5);
    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-radius: 50%;
    background: var(--primary);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 25px rgba(102, 252, 241, 0.4);
}

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

.m-game-tile__name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* Game Card (featured / review) */
.m-game-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(102, 252, 241, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.m-game-card:hover {
    border-color: rgba(102, 252, 241, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(102, 252, 241, 0.1);
}

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

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

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

.m-game-card__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 12, 16, 0.5);
    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-radius: 50%;
    background: var(--primary);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.4);
}

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

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

.m-game-card__provider {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.m-game-card--small {
    text-align: center;
}

.m-game-card--small img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.m-game-card--small .m-game-card__name {
    padding: var(--space-sm) var(--space-xs);
    font-size: 0.8rem;
}

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

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

.m-game-tile--locked:hover .m-game-tile__image img {
    filter: blur(4px) grayscale(50%);
    transform: none;
}

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

.m-game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 12, 16, 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: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.m-provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(102, 252, 241, 0.15);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.m-filter__btn {
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(31, 40, 51, 0.6);
    border: 1px solid rgba(102, 252, 241, 0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.m-filter__btn:hover {
    border-color: rgba(102, 252, 241, 0.3);
    color: var(--primary);
}

.m-filter__btn--active,
.m-filter__btn.m-filter__btn--active {
    background: rgba(102, 252, 241, 0.15);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(102, 252, 241, 0.15);
}

@media (max-width: 480px) {
    .m-filter__btn {
        padding: 8px 14px;
        font-size: 0.78rem;
    }
}

/* 18. Unlock Banner */
.m-unlock-banner {
    background: linear-gradient(135deg, rgba(102, 252, 241, 0.08), rgba(69, 162, 158, 0.06));
    border-top: 1px solid rgba(102, 252, 241, 0.15);
    border-bottom: 1px solid rgba(102, 252, 241, 0.15);
    padding: var(--space-md) 0;
}

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

.m-unlock-banner__icon {
    font-size: 1.5rem;
}

.m-unlock-banner__text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .m-unlock-banner__text {
        font-size: 0.82rem;
    }
}

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

.m-faq__item {
    border: 1px solid rgba(102, 252, 241, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color 0.3s ease;
}

.m-faq__item.is-open {
    border-color: rgba(102, 252, 241, 0.25);
}

.m-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

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

.m-faq__icon {
    font-size: 1.3rem;
    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.3s ease;
}

.m-faq__item.is-open .m-faq__answer {
    max-height: 500px;
}

.m-faq__answer p {
    padding: 0 var(--space-lg) var(--space-md);
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* 20. Disclaimer */
.m-disclaimer {
    background: rgba(102, 252, 241, 0.04);
    border: 1px solid rgba(102, 252, 241, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.m-disclaimer__text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
}

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

/* 21. Footer */
.m-footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(102, 252, 241, 0.1);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

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

.m-footer__brand {}

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

.m-footer__logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

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

.m-footer__nav-group {}

.m-footer__nav-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

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

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

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

.m-footer__compliance {
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(102, 252, 241, 0.08);
    border-bottom: 1px solid rgba(102, 252, 241, 0.08);
    margin-bottom: var(--space-xl);
}

.m-footer__compliance-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.m-footer__compliance-badges a {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.m-footer__compliance-badges a:hover {
    opacity: 0.8;
}

.m-footer__compliance-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
}

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

.m-footer__age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(102, 252, 241, 0.1);
    border: 2px solid var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
}

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

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

@media (max-width: 768px) {
    .m-footer__content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .m-footer__compliance-logo {
        height: 28px;
    }
}

/* 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: 2000;
    padding: var(--space-lg);
}

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

.m-modal__content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(102, 252, 241, 0.15);
    border-radius: var(--radius-lg);
    z-index: 1;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.m-modal__content--game {
    max-width: 960px;
    aspect-ratio: 16/9;
    padding: 0;
    overflow: hidden;
}

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

.m-modal__content--bonus {
    padding: var(--space-xl);
    text-align: center;
}

.m-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 12, 16, 0.8);
    border: 1px solid rgba(102, 252, 241, 0.2);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.m-modal__close:hover {
    background: rgba(102, 252, 241, 0.15);
}

.m-modal__game-wrapper {
    width: 100%;
    height: 100%;
}

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

/* Age Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(102, 252, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 420px;
    width: 90%;
    text-align: center;
    z-index: 1;
}

.modal-content h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: var(--space-md);
    font-size: 1.6rem;
}

.modal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.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-card);
    border-top: 1px solid rgba(102, 252, 241, 0.2);
    padding: var(--space-md) var(--space-lg);
    z-index: 2500;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

@media (max-width: 768px) {
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
    }
}

/* 24. Auth Forms */
.m-auth {}

.m-auth__tabs {
    display: flex;
    gap: 0;
    margin-bottom: var(--space-xl);
    border-bottom: 2px solid rgba(102, 252, 241, 0.1);
}

.m-auth__tab {
    flex: 1;
    padding: var(--space-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

.m-auth__tab--active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.m-auth__form {}

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

.m-auth__field--checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.m-auth__field--checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.m-auth__field--checkbox label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.m-auth__label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.m-auth__input {
    width: 100%;
    padding: 12px var(--space-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: rgba(11, 12, 16, 0.6);
    border: 1px solid rgba(102, 252, 241, 0.15);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.m-auth__input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(102, 252, 241, 0.15);
}

.m-auth__note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

.m-auth__note a {
    color: var(--primary);
    text-decoration: none;
}

.m-auth__note a:hover {
    text-decoration: underline;
}

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

.m-auth-card {
    background: var(--bg-card);
    border: 1px solid rgba(102, 252, 241, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.m-auth-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    text-align: center;
    letter-spacing: 0.04em;
}

.m-auth-card__form {}

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

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

/* 26. Profile */
.m-account-header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid rgba(102, 252, 241, 0.1);
    border-radius: var(--radius-md);
}

.m-account-header__badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 252, 241, 0.2), rgba(69, 162, 158, 0.1));
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.15);
}

.m-account-header__level {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary);
}

.m-account-header__info {}

.m-account-header__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

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

/* 27. XP Progress */
.m-xp-card {
    background: var(--bg-card);
    border: 1px solid rgba(102, 252, 241, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.m-xp-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-md);
    letter-spacing: 0.04em;
}

.m-xp-card__bar-wrapper {}

.m-xp-card__bar {
    width: 100%;
    height: 12px;
    background: rgba(11, 12, 16, 0.6);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(102, 252, 241, 0.1);
}

.m-xp-card__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    border-radius: 6px;
    transition: width 0.6s ease;
    box-shadow: 0 0 10px rgba(102, 252, 241, 0.3);
}

.m-xp-card__labels {
    display: flex;
    justify-content: flex-end;
    margin-top: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

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

.m-stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(102, 252, 241, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
}

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

.m-stat-card__label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

@media (max-width: 768px) {
    .m-stats-grid {
        grid-template-columns: 1fr;
    }
    .m-account-header {
        flex-direction: column;
        text-align: center;
    }
}

/* 29. Content Pages */
.m-page-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.03em;
}

.m-page-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    margin-top: calc(-1 * var(--space-sm));
}

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

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

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

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

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

.m-content-card {
    background: var(--bg-card);
    border: 1px solid rgba(102, 252, 241, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
}

.m-content-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    letter-spacing: 0.03em;
}

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

.m-content-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.m-content-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

.m-content-card ul {
    list-style: disc;
}

.m-content-card ol {
    list-style: decimal;
}

.m-content-card li {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

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

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

.m-content-card a:hover {
    text-decoration: underline;
}

.m-content-card__intro {
    font-size: 1.05rem !important;
    color: var(--text-primary) !important;
    border-left: 3px solid var(--primary);
    padding-left: var(--space-lg);
    margin-bottom: var(--space-xl) !important;
}

.m-content-card__cta {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(102, 252, 241, 0.1);
}

.m-content-card__updated {
    margin-top: var(--space-xl) !important;
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
}

.m-contact-info {
    background: rgba(11, 12, 16, 0.4);
    border: 1px solid rgba(102, 252, 241, 0.1);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    margin-top: var(--space-md);
}

.m-contact-info p {
    margin-bottom: var(--space-sm) !important;
    font-size: 0.9rem !important;
}

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

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

.m-content-table th,
.m-content-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border: 1px solid rgba(102, 252, 241, 0.1);
}

.m-content-table th {
    background: rgba(102, 252, 241, 0.08);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.m-content-table tr:nth-child(even) td {
    background: rgba(31, 40, 51, 0.3);
}

/* Info Grid (Responsible page) */
.m-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.m-info-card {
    background: rgba(11, 12, 16, 0.4);
    border: 1px solid rgba(102, 252, 241, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

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

.m-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    margin-top: 0;
}

.m-info-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

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

/* Help Links (Responsible page) */
.m-help-links {
    display: grid;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.m-help-link {
    display: block;
    background: rgba(11, 12, 16, 0.4);
    border: 1px solid rgba(102, 252, 241, 0.1);
    border-radius: var(--radius-sm);
    padding: var(--space-md) var(--space-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.m-help-link:hover {
    border-color: rgba(102, 252, 241, 0.3);
    box-shadow: 0 4px 15px rgba(102, 252, 241, 0.08);
}

.m-help-link strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 2px;
}

.m-help-link span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

.m-review-hero__score {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.m-review-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Review Games */
.m-review-games {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(102, 252, 241, 0.1);
}

.m-review-games h3 {
    margin-top: 0;
    margin-bottom: var(--space-md);
}

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

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

.m-daily-bonus__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

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

.m-daily-bonus__amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xl);
    text-shadow: 0 0 20px rgba(102, 252, 241, 0.3);
}

@media (max-width: 768px) {
    .m-content-card {
        padding: var(--space-lg);
    }
    .m-page-title {
        font-size: 1.7rem;
    }
}

/* 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 {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(102, 252, 241, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: rgba(102, 252, 241, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(102, 252, 241, 0.1);
}

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

.article-card__category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--bg-dark);
    background: var(--primary);
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-sm);
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

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

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

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

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

@media (max-width: 480px) {
    .m-articles-grid {
        grid-template-columns: 1fr;
    }
}

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

.m-review-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(102, 252, 241, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.m-review-card:hover {
    border-color: rgba(102, 252, 241, 0.2);
    box-shadow: 0 6px 25px rgba(102, 252, 241, 0.08);
}

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

.m-review-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.03em;
}

.m-review-card__text {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

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

.m-review-card__stat {}

/* 32. Utility Classes */
.stars {
    color: #ffc107;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

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

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

::-webkit-scrollbar-thumb {
    background: rgba(102, 252, 241, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 252, 241, 0.35);
}

/* Selection */
::selection {
    background: rgba(102, 252, 241, 0.3);
    color: var(--text-primary);
}