/* ============================================
   ConPoll Casino — Скоростной / Speed Style
   Orbitron + Exo 2 | Yellow, Red, Lightning
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors — Neon Pulse palette */
    --primary: #00F0FF;
    --primary-dark: #00C4D4;
    --secondary: #FF2D6A;
    --accent: #B44AFF;

    /* Backgrounds */
    --bg-dark: #070B14;
    --bg-darker: #040710;
    --bg-card: #0D1424;
    --bg-card-hover: #141D34;

    /* Text */
    --text-primary: #EAF0FF;
    --text-secondary: #9EABC8;
    --text-muted: #5A6888;

    /* Functional */
    --success: #00E676;
    --warning: #FFBE0B;
    --danger: #FF2D6A;

    /* 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 — Neon Pulse: Rajdhani headings, Space Grotesk body */
    --font-body: 'Space Grotesk', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
}

/* 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;
    overflow-x: hidden;
    background-image: radial-gradient(ellipse at 50% 0%, rgba(0, 240, 255, 0.02) 0%, transparent 50%);
}

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

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

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

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

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

/* 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; letter-spacing: 2px; }
h2 { font-size: 1.75rem; letter-spacing: 1px; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

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

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

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

/* 5. Header */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(7, 11, 20, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.08), inset 0 -1px 0 rgba(180, 74, 255, 0.1);
}

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

.m-header__logo .logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.4));
    transition: filter 0.3s ease;
}

.m-header__logo .logo:hover {
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.7)) drop-shadow(0 0 40px rgba(180, 74, 255, 0.3));
}

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

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

.m-header__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
    border-radius: 1px;
}

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

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

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

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

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

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

.m-mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 7, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    overflow-y: auto;
}

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

.m-mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-2xl) var(--space-lg);
}

.m-mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: var(--space-md) 0;
    transition: color 0.3s ease;
}

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

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

.m-btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3), 0 0 0 1px rgba(0, 240, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.m-btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.m-btn--primary:hover::before {
    left: 100%;
}

.m-btn--primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    color: var(--bg-dark);
    box-shadow: 0 6px 30px rgba(0, 240, 255, 0.45), 0 0 0 1px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.m-btn--secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(0, 240, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.m-btn--secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.m-btn--secondary:hover::before {
    opacity: 1;
}

.m-btn--secondary span,
.m-btn--secondary {
    position: relative;
    z-index: 1;
}

.m-btn--account {
    background: rgba(0, 240, 255, 0.06);
    color: var(--primary);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 8px 20px;
    font-size: 0.8rem;
}

.m-btn--account:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-dark);
    border-color: transparent;
}

.m-btn--lg {
    padding: 16px 40px;
    font-size: 1rem;
}

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

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

.m-btn--play {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.95), rgba(180, 74, 255, 0.9));
    color: var(--bg-dark);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

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

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

.m-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 15% 30%, rgba(0, 240, 255, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 70%, rgba(180, 74, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 45, 106, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.m-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

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

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.2));
    animation: heroTitleGlow 4s ease-in-out infinite alternate;
}

@keyframes heroTitleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.15)); }
    100% { filter: drop-shadow(0 0 40px rgba(180, 74, 255, 0.25)); }
}

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

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

.m-hero__visual {
    position: relative;
}

.m-hero__lightning {
    position: absolute;
    width: 2px;
    height: 250px;
    background: linear-gradient(180deg, var(--primary), var(--accent), transparent);
    opacity: 0.3;
    animation: neonPulse 4s ease-in-out infinite;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3), 0 0 30px rgba(180, 74, 255, 0.15);
}

.m-hero__lightning--left {
    left: 8%;
    top: -120px;
    transform: rotate(-12deg);
}

.m-hero__lightning--right {
    right: 8%;
    top: -90px;
    transform: rotate(12deg);
    animation-delay: 2s;
    background: linear-gradient(180deg, var(--accent), var(--secondary), transparent);
    box-shadow: 0 0 15px rgba(180, 74, 255, 0.3), 0 0 30px rgba(255, 45, 106, 0.15);
}

@keyframes neonPulse {
    0%, 100% { opacity: 0.1; transform: rotate(-12deg) scaleY(1); }
    25% { opacity: 0.6; transform: rotate(-12deg) scaleY(1.05); }
    50% { opacity: 0.15; transform: rotate(-12deg) scaleY(0.98); }
    75% { opacity: 0.8; transform: rotate(-12deg) scaleY(1.02); }
}

@keyframes lightningFlicker {
    0%, 100% { opacity: 0.1; }
    10% { opacity: 0.8; }
    12% { opacity: 0.2; }
    14% { opacity: 0.9; }
    20% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

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

.m-hero--small .m-hero__title {
    font-size: 2.5rem;
}

.m-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

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

.m-hero--404 {
    padding: 120px 0;
    text-align: center;
}

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

.m-hero__title--404 {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.m-section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

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

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

.m-section__text {
    text-align: center;
    color: var(--text-muted);
}

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

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

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

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

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

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

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

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

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

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

.m-benefit-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(13, 20, 36, 0.8));
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-radius: var(--radius-lg);
    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;
    backdrop-filter: blur(5px);
}

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

.m-benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.m-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 240, 255, 0.1), 0 0 0 1px rgba(180, 74, 255, 0.05);
}

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

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

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

.m-benefit-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

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

/* 12. Featured Providers */
.m-featured__provider-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: var(--space-md);
    margin-top: var(--space-xl);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

.m-game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.12), 0 0 0 1px rgba(180, 74, 255, 0.08);
}

.m-game-card__image {
    position: relative;
    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.08);
}

.m-game-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.3) 0%, rgba(7, 11, 20, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.m-game-card__info {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.m-game-card__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.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 span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Game Tile (games.js rendered) */
.m-game-tile {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.m-game-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.12), 0 0 0 1px rgba(180, 74, 255, 0.08);
}

.m-game-tile__image {
    position: relative;
    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.08);
}

.m-game-tile__play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.3) 0%, rgba(7, 11, 20, 0.85) 100%);
    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__info {
    padding: var(--space-md);
}

.m-game-tile__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-game-tile__provider {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

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

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

.m-game-tile--locked:hover {
    transform: none;
    border-color: rgba(255, 210, 0, 0.08);
    box-shadow: none;
}

.m-game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.6) 0%, rgba(7, 11, 20, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    z-index: 2;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.m-game-tile__lock-icon {
    font-size: 2rem;
}

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

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

.m-provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(0, 240, 255, 0.12);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
}

.m-provider-section__title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.m-provider-section__title::before {
    content: '◆';
    font-size: 0.7rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 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.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 240, 255, 0.15);
    background: rgba(0, 240, 255, 0.03);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.m-filter-btn:hover {
    border-color: rgba(0, 240, 255, 0.4);
    color: var(--primary);
    background: rgba(0, 240, 255, 0.06);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.m-filter-btn.is-active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3), 0 0 0 1px rgba(180, 74, 255, 0.2);
    font-weight: 700;
}

/* 18. Unlock Banner */
.m-unlock-banner {
    background: linear-gradient(135deg, rgba(255, 210, 0, 0.1), rgba(255, 45, 45, 0.1));
    border-top: 1px solid rgba(255, 210, 0, 0.2);
    border-bottom: 1px solid rgba(255, 210, 0, 0.2);
    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.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.m-faq-item {
    background: linear-gradient(145deg, var(--bg-card), rgba(13, 20, 36, 0.6));
    border: 1px solid rgba(0, 240, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.m-faq-item:hover {
    border-color: rgba(0, 240, 255, 0.15);
}

.m-faq-item.is-open {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.08), inset 0 0 30px rgba(0, 240, 255, 0.02);
}

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

.m-faq-item__icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.m-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.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 {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 20. Disclaimer */
.m-disclaimer {
    background: rgba(255, 45, 106, 0.06);
    border: 1px solid rgba(255, 45, 106, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.m-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary), var(--accent));
}

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

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

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

/* 21. Footer */
.m-footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    padding-top: var(--space-2xl);
    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), transparent);
}

.m-footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 210, 0, 0.08);
}

.m-footer__logo .logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.m-footer__column h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-footer__column a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

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

.m-footer__bottom {
    padding: var(--space-xl) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

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

.m-footer__compliance a {
    display: inline-flex;
    align-items: center;
}

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

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

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

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(255, 45, 106, 0.3);
}

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

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

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

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

.modal__content {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-darker));
    border: 1px solid rgba(0, 240, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 240, 255, 0.05);
}

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

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

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

.modal__content--game {
    max-width: 900px;
    padding: var(--space-md);
    padding-top: var(--space-2xl);
}

.modal__game-container {
    position: relative;
    width: 100%;
    padding-bottom: 62.5%;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.modal__game-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s ease;
}

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

.modal__content--auth {
    max-width: 480px;
    padding: var(--space-xl);
    padding-top: var(--space-2xl);
    text-align: left;
}

.modal__content--bonus {
    max-width: 420px;
}

/* 23. Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 20, 36, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    padding: var(--space-lg);
    z-index: 1500;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
}

.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 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    flex: 1;
}

/* 24. Auth Forms */
.m-auth-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    border-bottom: 2px solid rgba(255, 210, 0, 0.1);
    padding-bottom: var(--space-sm);
}

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

.m-auth-tab.is-active {
    color: var(--primary);
    border-bottom-color: transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--accent)) 1;
    border-image-slice: 1;
}

.m-auth-form__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

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

.m-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.m-form-group input[type="text"],
.m-form-group input[type="email"],
.m-form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    background: rgba(4, 7, 16, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.m-form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.08), 0 0 15px rgba(0, 240, 255, 0.05);
}

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

.m-form-group--checkbox input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--primary);
}

.m-form-group--checkbox label {
    margin-bottom: 0;
    font-size: 0.85rem;
}

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

.m-auth-form__switch a {
    color: var(--primary);
    text-decoration: underline;
}

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

.m-auth-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 210, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.m-auth-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    letter-spacing: 1px;
}

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

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

.m-account-profile__header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 210, 0, 0.1);
}

.m-level-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35), 0 0 0 3px rgba(0, 240, 255, 0.15);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35), 0 0 0 3px rgba(0, 240, 255, 0.15); }
    50% { box-shadow: 0 4px 30px rgba(180, 74, 255, 0.4), 0 0 0 5px rgba(180, 74, 255, 0.1); }
}

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

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

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

.m-xp-section__header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.m-xp-bar {
    width: 100%;
    height: 12px;
    background: var(--bg-darker);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 210, 0, 0.1);
}

.m-xp-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    border-radius: 6px;
    transition: width 0.6s ease;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.4), 0 0 24px rgba(180, 74, 255, 0.2);
    position: relative;
}

.m-xp-bar__fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: xpShimmer 2s ease-in-out infinite;
}

@keyframes xpShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

.m-stat-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(13, 20, 36, 0.8));
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.m-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

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

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

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

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

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

.m-content-card {
    background: linear-gradient(160deg, var(--bg-card) 0%, rgba(13, 20, 36, 0.7) 100%);
    border: 1px solid rgba(0, 240, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
}

.m-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.15), rgba(180, 74, 255, 0.1), transparent);
}

.m-content-card__intro {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    border-left: 2px solid transparent;
    border-image: linear-gradient(180deg, var(--primary), var(--accent)) 1;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-xl);
    background: rgba(0, 240, 255, 0.02);
    padding: var(--space-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.m-content-card h2 {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0, 240, 255, 0.06);
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.m-content-card ul, .m-content-card ol {
    margin-bottom: var(--space-lg);
}

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

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

.m-contact-info {
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 210, 0, 0.06);
}

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

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

.m-article-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 210, 0, 0.1);
}

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

.m-fact-item {
    background: linear-gradient(145deg, var(--bg-darker), rgba(13, 20, 36, 0.6));
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid rgba(0, 240, 255, 0.06);
    transition: all 0.3s ease;
}

.m-fact-item:hover {
    border-color: rgba(0, 240, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.05);
}

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

.m-fact-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-top: 0;
    color: var(--primary);
}

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

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

.m-help-resource {
    background: linear-gradient(145deg, var(--bg-darker), rgba(13, 20, 36, 0.6));
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid rgba(0, 240, 255, 0.06);
    transition: all 0.3s ease;
}

.m-help-resource:hover {
    border-color: rgba(0, 240, 255, 0.15);
}

.m-help-resource h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-top: 0;
    color: var(--primary);
}

.m-help-resource p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

/* 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: linear-gradient(160deg, var(--bg-card) 0%, rgba(13, 20, 36, 0.7) 100%);
    border: 1px solid rgba(0, 240, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 35px rgba(0, 240, 255, 0.1), 0 0 0 1px rgba(180, 74, 255, 0.05);
}

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

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

.article-card__category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.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.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
}

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

.m-review-card {
    position: relative;
    background: linear-gradient(145deg, var(--bg-card), rgba(13, 20, 36, 0.8));
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

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

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

.m-review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 240, 255, 0.1), 0 0 0 1px rgba(180, 74, 255, 0.05);
}

.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.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.m-review-card__rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
}

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

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

/* 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-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

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

.m-daily-bonus__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    animation: lightningFlicker 2s ease-in-out infinite;
}

.m-daily-bonus__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

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

.m-daily-bonus__amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xl);
    animation: amountShift 3s ease-in-out infinite;
}

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

/* 32. Utility Classes */
.stars {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

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

.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.3), rgba(180, 74, 255, 0.3));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.5), rgba(180, 74, 255, 0.5));
}

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

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

    .m-header__burger {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

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

    .m-hero--small .m-hero__title {
        font-size: 1.8rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .m-hero__auth-buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

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

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

    .m-filter-btn {
        padding: 8px 16px;
        font-size: 0.65rem;
    }
}

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

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

    .m-container {
        padding: 0 var(--space-md);
    }

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

    .m-btn--lg {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

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

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

    .m-level-badge {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}