/* ============================================
   NonNut — Social Casino
   Stylistic: #14 Инфографика
   Palette: White bg, #4361ee, #f72585, Barlow/Noto Sans
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors */
    --primary: #6c3ce0;
    --primary-dark: #5a2dc7;
    --primary-light: #8b6ce6;
    --secondary: #ff2e6c;
    --secondary-dark: #e0245a;
    --accent: #00d4aa;
    --accent-dark: #00b892;
    --accent-alt: #ffc53d;
    --glow-primary: rgba(108, 60, 224, 0.35);
    --glow-secondary: rgba(255, 46, 108, 0.3);
    --glow-accent: rgba(0, 212, 170, 0.3);

    /* Backgrounds */
    --bg-dark: #0d0b1a;
    --bg-darker: #090712;
    --bg-card: #161229;
    --bg-hero: linear-gradient(135deg, #0d0b1a 0%, #1a1040 40%, #2d1560 100%);
    --bg-section-alt: #1a1535;

    /* Text */
    --text-primary: #f0edf7;
    --text-secondary: #b0a8c8;
    --text-muted: #7a7196;
    --text-on-primary: #ffffff;

    /* Borders */
    --border-color: #2a2548;
    --border-light: #221e3a;

    /* 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;
    --radius-xl: 20px;

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

    /* Fonts */
    --font-body: 'Noto Sans', sans-serif;
    --font-heading: 'Barlow', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(108, 60, 224, 0.15);
    --shadow-md: 0 4px 20px rgba(108, 60, 224, 0.25);
    --shadow-lg: 0 8px 40px rgba(108, 60, 224, 0.3);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(108, 60, 224, 0.2);

    /* Transitions */
    --transition: 0.3s ease;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 60%, rgba(108, 60, 224, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(255, 46, 108, 0.04) 0%, transparent 70%);
    background-attachment: fixed;
}

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

a {
    text-decoration: none;
    color: var(--primary-light);
    transition: color var(--transition);
}

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: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

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

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

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

/* 5. Header */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(13, 11, 26, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(108, 60, 224, 0.2);
    z-index: 1000;
    transition: box-shadow var(--transition), background var(--transition);
}

.m-header.is-scrolled {
    box-shadow: 0 4px 30px rgba(108, 60, 224, 0.2);
    background: rgba(13, 11, 26, 0.95);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-on-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo:hover {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    filter: brightness(1.1);
}

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

.m-header__link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    position: relative;
    transition: all var(--transition);
    border-radius: var(--radius-sm);
}

.m-header__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    border-radius: 2px;
    transition: width var(--transition);
}

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

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

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

/* 6. Mobile Menu */
.m-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
}

.m-header__burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.m-header__mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 11, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: var(--space-xl);
    overflow-y: auto;
}

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

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

.m-header__mobile-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: background var(--transition);
    text-decoration: none;
}

.m-header__mobile-link:hover,
.m-header__mobile-link.is-active {
    background: rgba(108, 60, 224, 0.15);
    color: var(--accent);
}

/* 7. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-on-primary);
    border-color: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}

.btn--primary:hover {
    border-color: transparent;
    color: var(--text-on-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--glow-primary);
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--secondary {
    background: transparent;
    color: var(--primary-light);
    border-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.btn--secondary:hover {
    background: rgba(108, 60, 224, 0.15);
    color: var(--text-on-primary);
    border-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 0 20px var(--glow-primary);
}

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

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

/* 8. Main Content */
.m-main {
    flex: 1;
    margin-top: var(--header-height);
}

/* 9. Hero Section */
.m-hero {
    background: linear-gradient(135deg, #0d0b1a 0%, #1a1040 30%, #2d1560 60%, #1a1040 100%);
    color: var(--text-on-primary);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.m-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 60, 224, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroPulse 8s ease-in-out infinite;
}

.m-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 46, 108, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroPulse 10s ease-in-out infinite reverse;
}

@keyframes heroPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}

.m-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-on-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(108, 60, 224, 0.4);
}

.m-hero__title--404 {
    font-size: 8rem;
    line-height: 1;
    opacity: 0.9;
}

.m-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-md);
}

.m-hero__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    line-height: 1.7;
}

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

.m-hero--small::before {
    width: 400px;
    height: 400px;
}

.m-hero--small::after {
    width: 300px;
    height: 300px;
}

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

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

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

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

.m-hero__stat-card {
    background: rgba(108, 60, 224, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 60, 224, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.m-hero__stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 60, 224, 0.1), rgba(0, 212, 170, 0.05));
    opacity: 0;
    transition: opacity var(--transition);
}

.m-hero__stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 0 25px var(--glow-accent);
}

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

.m-hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.m-hero__stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-xs);
    font-weight: 500;
}

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

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

.m-section--benefits {
    background: var(--bg-card);
    position: relative;
}

.m-section--benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.m-section--featured {
    background: var(--bg-section-alt);
    position: relative;
}

.m-section--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 60, 224, 0.3), transparent);
}

.m-section--featured::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 60, 224, 0.3), transparent);
}

.m-section--faq {
    background: var(--bg-card);
    position: relative;
}

.m-section--faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.3), transparent);
}

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

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

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

.m-section__title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    position: relative;
}

.m-section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: var(--space-sm) auto 0;
}

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

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

.m-section__note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

.m-page-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.m-benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.m-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.m-benefit-card:hover {
    border-color: rgba(108, 60, 224, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(108, 60, 224, 0.2);
}

.m-benefit-card:hover::before {
    transform: scaleX(1);
}

.m-benefit-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(108, 60, 224, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.m-benefit-card:hover .m-benefit-card__icon {
    background: rgba(0, 212, 170, 0.15);
    transform: scale(1.1);
}

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

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

.m-benefits-section {
    margin-top: var(--space-3xl);
}

/* 12. Featured Providers */
.m-featured__provider-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    margin-top: var(--space-xl);
    padding-left: var(--space-sm);
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, var(--primary), var(--accent)) 1;
}

/* 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 grid is a standalone class */
.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;
    }
}

/* 14. Game Tile */
.m-game-tile {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.m-game-tile:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(108, 60, 224, 0.3);
    border-color: var(--primary);
}

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

.m-game-tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.m-game-tile__play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 60, 224, 0.7), rgba(255, 46, 108, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.m-game-tile__play-icon {
    width: 56px;
    height: 56px;
    background: var(--text-on-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    animation: playPulse 1.5s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
    50% { transform: scale(1.1); box-shadow: 0 0 35px rgba(255, 255, 255, 0.4); }
}

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

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

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

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

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

.m-game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 7, 18, 0.85);
    backdrop-filter: blur(3px);
    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;
    font-weight: 600;
    color: var(--text-on-primary);
    text-align: center;
    padding: 0 var(--space-sm);
}

/* Game Card (Featured on Home) */
.m-game-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.m-game-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(108, 60, 224, 0.3);
    border-color: var(--primary);
}

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

.m-game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.m-game-card__overlay-play {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 60, 224, 0.7), rgba(255, 46, 108, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.m-game-card:hover .m-game-card__overlay-play {
    opacity: 1;
}

.m-game-card__play-icon {
    width: 48px;
    height: 48px;
    background: var(--text-on-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

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

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

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

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

.m-provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--accent)) 1;
    display: inline-block;
}

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

.m-filter-btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

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

.m-filter-btn.is-active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-on-primary);
    border-color: transparent;
    box-shadow: 0 4px 20px var(--glow-primary);
}

/* 18. Unlock Banner */
.m-unlock-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
    padding: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
}

.m-unlock-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
    pointer-events: none;
}

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

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

.m-unlock-banner__text {
    flex: 1;
    color: var(--text-on-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.m-unlock-banner__text strong {
    font-family: var(--font-heading);
}

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

.m-faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    background: var(--bg-card);
    overflow: hidden;
    transition: all var(--transition);
}

.m-faq-item:hover {
    border-color: rgba(108, 60, 224, 0.4);
    box-shadow: 0 0 20px var(--glow-primary);
}

.m-faq-item.is-open {
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--glow-primary);
}

.m-faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    gap: var(--space-md);
}

.m-faq-item__icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
    font-weight: 300;
}

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

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

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

.m-faq-item__answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* 20. Disclaimer */
.m-disclaimer {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border-left: 3px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.m-disclaimer::after {
    content: '18+';
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 46, 108, 0.08);
    pointer-events: none;
}

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

/* 21. Footer */
.m-footer {
    background: #06050e;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
}

.m-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--secondary), transparent);
}

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

.m-footer .logo {
    color: var(--text-on-primary);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-footer__description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.m-footer__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-on-primary);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.m-footer__link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
    text-decoration: none;
}

.m-footer__link:hover {
    color: var(--accent);
    padding-left: 4px;
}

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

.footer__compliance-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition);
}

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

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

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 0 10px var(--glow-secondary);
}

.m-footer__bottom {
    border-top: 1px solid rgba(108, 60, 224, 0.2);
    padding-top: var(--space-xl);
    text-align: center;
}

.m-footer__bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-xs);
}

.m-footer__address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* 22. Modals */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(6, 5, 14, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--space-lg);
    backdrop-filter: blur(12px);
}

.modal__content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow-primary);
    text-align: center;
    border: 1px solid rgba(108, 60, 224, 0.3);
}

.modal__content--game {
    max-width: 900px;
    padding: 0;
    overflow: hidden;
    background: #000;
    border-color: rgba(108, 60, 224, 0.4);
}

.modal__content--auth {
    text-align: left;
    max-width: 440px;
}

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

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(108, 60, 224, 0.3);
    border: none;
    color: var(--text-on-primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition);
}

.modal__close:hover {
    background: rgba(255, 46, 108, 0.4);
    transform: scale(1.1);
}

.modal__content--auth .modal__close {
    color: var(--text-muted);
    background: var(--bg-darker);
}

.modal__content--bonus .modal__close {
    color: var(--text-muted);
    background: var(--bg-darker);
}

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

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

.modal__game-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.modal p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 23. Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(22, 18, 41, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(108, 60, 224, 0.3);
    padding: var(--space-lg);
    z-index: 1500;
    box-shadow: 0 -8px 30px 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);
}

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

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

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

.m-auth-tab {
    flex: 1;
    padding: var(--space-md);
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
}

.m-auth-tab:hover {
    color: var(--text-primary);
}

.m-auth-tab.is-active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

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

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

.m-form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.m-form-group input {
    padding: 12px var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-darker);
    transition: all var(--transition);
    outline: none;
}

.m-form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--glow-primary);
}

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

.m-auth-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-md);
    line-height: 1.5;
}

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

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

/* 25. Account Page */
.m-profile {
    max-width: 700px;
    margin: 0 auto;
}

.m-profile__header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.m-profile__badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 25px var(--glow-primary);
}

.m-profile__level {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-on-primary);
}

.m-profile__name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

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

.m-profile__actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    justify-content: center;
}

/* 26. Profile not used separately */

/* 27. XP Progress */
.m-progress-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.m-progress-card__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.m-progress-bar {
    height: 12px;
    background: var(--bg-darker);
    border-radius: 6px;
    overflow: hidden;
}

.m-progress-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    background-size: 200% 100%;
    animation: progressShimmer 3s linear infinite;
    border-radius: 6px;
    transition: width 0.6s ease;
    box-shadow: 0 0 10px var(--glow-primary);
}

@keyframes progressShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

.m-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition);
}

.m-stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow-primary);
}

.m-stat-card__value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.m-stat-card__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

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

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

.m-daily-bonus__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    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: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xl);
}

/* 29. Content Pages */
.m-content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
}

.m-content-card h2 {
    font-size: 1.4rem;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
}

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

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

.m-content-card h4 {
    font-size: 1rem;
    margin-top: var(--space-md);
}

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

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

.m-content-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.m-content-card table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-md);
}

.m-content-card th,
.m-content-card td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.m-content-card th {
    font-family: var(--font-heading);
    font-weight: 700;
    background: rgba(108, 60, 224, 0.15);
    color: var(--text-primary);
}

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

.m-article-cta {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(108, 60, 224, 0.08);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(108, 60, 224, 0.3);
    position: relative;
    overflow: hidden;
}

.m-article-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 60, 224, 0.05), rgba(0, 212, 170, 0.03));
    pointer-events: none;
}

.m-article-cta p {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

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

.m-breadcrumb__link {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition);
}

.m-breadcrumb__link:hover {
    color: var(--accent);
    text-decoration: underline;
}

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

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

/* Info Cards (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: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition);
}

.m-info-card:hover {
    border-color: rgba(108, 60, 224, 0.3);
    box-shadow: 0 0 20px var(--glow-primary);
}

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

.m-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.m-info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

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

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(108, 60, 224, 0.25);
    border-color: rgba(108, 60, 224, 0.4);
}

.article-card:hover::before {
    transform: scaleX(1);
}

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

.article-card__category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    background: rgba(0, 212, 170, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
}

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

.article-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.article-card__link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    transition: color var(--transition);
}

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

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

.m-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.m-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.m-review-card:hover {
    box-shadow: 0 15px 50px rgba(108, 60, 224, 0.25);
    border-color: rgba(108, 60, 224, 0.4);
}

.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.5rem;
    font-weight: 800;
    margin-bottom: 0;
}

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

.m-review-card__stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(108, 60, 224, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(108, 60, 224, 0.15);
}

.m-review-card__stat {
    text-align: center;
    flex: 1;
}

.m-review-card__stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.m-review-hero__tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* Games list in reviews */
.m-games-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.m-games-list__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    transition: all var(--transition);
}

.m-games-list__item:hover {
    border-color: var(--primary);
    background: rgba(108, 60, 224, 0.08);
}

.m-games-list__thumb {
    width: 48px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.m-games-list__name {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 32. Utility Classes */
.stars {
    color: #ffc53d;
    font-size: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255, 197, 61, 0.4);
}

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

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--secondary));
}

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

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

    .m-header__burger {
        display: flex;
    }

    .m-header__actions .btn {
        display: none;
    }

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }

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

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

    .m-hero__text {
        max-width: 100%;
    }

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

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

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

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

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

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

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

    .m-filter-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .modal__buttons {
        flex-direction: column;
    }

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