/* ============================================
   Kynarixo — Social Casino
   Design #20: Арт-деко (warm black, champagne gold, geometric luxury)
   BEM prefix: m-
   Fonts: Cinzel (headings) + DM Sans (body)
   ============================================ */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
    /* Primary — champagne gold */
    --color-primary: #c9a962;
    --color-primary-light: #dfc78a;
    --color-primary-dark: #9a7d3a;
    --color-secondary: #2c5f5d;
    --color-secondary-dark: #1a3d3c;
    --color-accent: #8b2942;
    --color-accent-light: #a83d56;

    /* Background — warm noir */
    --color-bg: #12100e;
    --color-bg-dark: #12100e;
    --color-bg-darker: #0a0908;
    --color-bg-card: #1e1c19;
    --color-bg-card-hover: #2a2723;
    --color-bg-header: rgba(18, 16, 14, 0.94);
    --color-bg-modal: rgba(10, 9, 8, 0.97);

    /* Text — ivory on dark */
    --color-text: #f5f0e8;
    --color-text-secondary: #b8b0a4;
    --color-text-muted: #7a7368;
    --color-text-white: #ffffff;

    /* Glow — gold & teal */
    --glow-primary: rgba(201, 169, 98, 0.45);
    --glow-secondary: rgba(44, 95, 93, 0.4);
    --glow-accent: rgba(139, 41, 66, 0.35);

    /* Gradients — art deco */
    --gradient-primary: linear-gradient(135deg, #c9a962, #9a7d3a);
    --gradient-hero: linear-gradient(165deg, #12100e 0%, #1e1c19 42%, #252220 68%, #12100e 100%);
    --gradient-card: linear-gradient(145deg, #1e1c19, #2a2723);
    --gradient-btn: linear-gradient(135deg, #dfc78a, #c9a962);
    --gradient-btn-hover: linear-gradient(135deg, #f0dfa8, #dfc78a);
    --gradient-text: linear-gradient(90deg, #dfc78a, #c9a962);
    --gradient-gold: linear-gradient(135deg, #c9a962, #2c5f5d);
    --gradient-xp: linear-gradient(90deg, #2c5f5d, #c9a962, #8b2942);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    --radius-pill: 9999px;

    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 2.5rem;
    --text-4xl: 3rem;
    --text-5xl: 3.5rem;

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

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-glow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow-primary: 0 0 20px rgba(201, 169, 98, 0.28), 0 0 50px rgba(154, 125, 58, 0.12);
    --shadow-glow-secondary: 0 0 18px rgba(44, 95, 93, 0.22), 0 0 45px rgba(201, 169, 98, 0.08);
    --shadow-glow-card: 0 0 14px rgba(201, 169, 98, 0.1), 0 0 36px rgba(44, 95, 93, 0.06);

    /* Z-index layers */
    --z-header: 100;
    --z-mobile-menu: 200;
    --z-modal: 300;
    --z-notification: 400;
    --z-age-modal: 500;
    --z-cookie: 150;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(123, 47, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 240, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(123, 47, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

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

h1 {
    font-size: var(--text-4xl);
    font-weight: 800;
}

h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
}

h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
}

h4 {
    font-size: var(--text-xl);
    font-weight: 600;
}

h5 {
    font-size: var(--text-lg);
    font-weight: 600;
}

h6 {
    font-size: var(--text-md);
    font-weight: 500;
}

.m-gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 700;
    color: var(--color-text);
}

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

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

.m-container--wide {
    max-width: 1400px;
}

/* ============================================
   5. HEADER
   ============================================ */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--color-bg-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 47, 255, 0.2);
    z-index: var(--z-header);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.m-header.is-scrolled {
    background: rgba(11, 14, 44, 0.95);
    box-shadow: 0 4px 30px rgba(123, 47, 255, 0.15);
}

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

.m-header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.m-header__logo-icon {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(123, 47, 255, 0.5));
}

.m-header__logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.m-header__link {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-base);
}

.m-header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
    border-radius: 1px;
    box-shadow: 0 0 8px var(--glow-primary);
}

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

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

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

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

.m-header__account {
    display: none;
}

.m-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    cursor: pointer;
    z-index: 10;
}

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

/* ============================================
   6. MOBILE MENU
   ============================================ */
.m-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-mobile-menu);
    pointer-events: none;
    visibility: hidden;
}

.m-mobile-menu.is-open {
    pointer-events: all;
    visibility: visible;
}

.m-mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 24, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.m-mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--color-bg-dark);
    border-left: 1px solid rgba(123, 47, 255, 0.3);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

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

.m-mobile-menu__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(123, 47, 255, 0.2);
}

.m-mobile-menu__close {
    margin-left: auto;
    font-size: 1.8rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    background: none;
    border: none;
    cursor: pointer;
}

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

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

.m-mobile-menu__link {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: var(--space-md) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.m-mobile-menu__link:hover,
.m-mobile-menu__link.is-active {
    color: var(--color-text-white);
    background: rgba(123, 47, 255, 0.15);
}

.m-mobile-menu__auth {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: auto;
    border-top: 1px solid rgba(123, 47, 255, 0.15);
}

/* ============================================
   7. BUTTONS
   ============================================ */
.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-glow);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.m-btn--primary {
    background: var(--gradient-btn);
    color: var(--color-text-white);
    box-shadow: 0 0 15px rgba(123, 47, 255, 0.3);
}

.m-btn--primary:hover {
    background: var(--gradient-btn-hover);
    box-shadow: 0 0 25px rgba(123, 47, 255, 0.5), 0 0 50px rgba(123, 47, 255, 0.2);
    transform: translateY(-2px);
    color: var(--color-text-white);
}

.m-btn--primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.6s;
}

.m-btn--primary:hover::after {
    transform: rotate(45deg) translateY(-100%);
}

.m-btn--secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.m-btn--secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 40px rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
    color: var(--color-secondary);
}

.m-btn--outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(123, 47, 255, 0.4);
}

.m-btn--outline:hover {
    border-color: var(--color-primary);
    background: rgba(123, 47, 255, 0.1);
    box-shadow: 0 0 15px rgba(123, 47, 255, 0.2);
    color: var(--color-text-white);
}

.m-btn--glow {
    background: var(--gradient-primary);
    color: var(--color-text-white);
    box-shadow: 0 0 20px rgba(123, 47, 255, 0.4), 0 0 40px rgba(0, 240, 255, 0.2);
}

.m-btn--glow:hover {
    box-shadow: 0 0 30px rgba(123, 47, 255, 0.6), 0 0 60px rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
    color: var(--color-text-white);
}

.m-btn--gold {
    background: var(--gradient-gold);
    color: #1a1a2e;
    font-weight: 700;
    box-shadow: 0 0 15px var(--glow-accent);
}

.m-btn--gold:hover {
    box-shadow: 0 0 25px var(--glow-accent), 0 0 50px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    color: #1a1a2e;
}

.m-btn--sm {
    padding: 6px 16px;
    font-size: var(--text-xs);
}

.m-btn--lg {
    padding: 14px 36px;
    font-size: var(--text-base);
}

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

.m-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ============================================
   8. MAIN CONTENT
   ============================================ */
.m-main {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    position: relative;
    /* z-index intentionally omitted: children with position:fixed (e.g. game modal)
       must stack above .m-header (z-index: 100); a stacking context here trapped the modal below the header */
}

/* ============================================
   9. HERO SECTION
   ============================================ */
.m-hero {
    background: var(--gradient-hero);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.m-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(123, 47, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.m-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, var(--color-bg));
}

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

.m-hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-lg);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.m-hero__title {
    font-size: var(--text-5xl);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.m-hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.m-hero--small .m-hero__title {
    font-size: var(--text-3xl);
}

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

/* ============================================
   10. SECTIONS
   ============================================ */
.m-section {
    padding: var(--space-3xl) 0;
    position: relative;
}

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

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

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

.m-section__title {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-section__subtitle {
    font-size: var(--text-md);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.m-benefit {
    background: var(--gradient-card);
    border: 1px solid rgba(123, 47, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-glow);
    position: relative;
    overflow: hidden;
}

.m-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.m-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 47, 255, 0.3);
    box-shadow: var(--shadow-glow-card);
}

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

.m-benefit__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
    filter: drop-shadow(0 0 10px var(--glow-primary));
}

.m-benefit__title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.m-benefit__text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ============================================
   12. FEATURED PROVIDERS
   ============================================ */
.m-featured-providers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.m-featured-provider {
    background: var(--gradient-card);
    border: 1px solid rgba(123, 47, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-glow);
}

.m-featured-provider:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: var(--shadow-glow-secondary);
    transform: translateY(-4px);
}

.m-featured-provider__name {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--space-sm);
}

.m-featured-provider__count {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

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

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

/* Featured games grid (home page): always 2 columns, centered */
.m-featured-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 500px;
    margin: var(--space-xl) auto 0;
}

/* ============================================
   14. GAME TILE
   ============================================ */
.m-game-tile {
    background: var(--gradient-card);
    border: 1px solid rgba(123, 47, 255, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-glow);
    position: relative;
}

.m-game-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), 0 0 40px rgba(123, 47, 255, 0.15), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.m-game-tile__image-wrap {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    overflow: hidden;
    background: var(--color-bg-darker);
}

.m-game-tile__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.m-game-tile__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 14, 44, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.m-game-tile__play-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px var(--glow-primary);
    color: white;
}

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

.m-game-tile__title {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-game-tile__provider {
    font-size: var(--text-xs);
    color: var(--color-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(3px) grayscale(60%);
}

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

.m-game-tile--locked:hover {
    transform: none;
    border-color: rgba(123, 47, 255, 0.15);
    box-shadow: none;
}

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

.m-game-tile__lock-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(123, 47, 255, 0.5));
}

.m-game-tile__lock-text {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.m-game-tile__lock-btn {
    font-size: var(--text-xs) !important;
    padding: 6px 16px !important;
}

/* ============================================
   16. PROVIDER SECTION
   ============================================ */
.m-provider-section {
    margin-bottom: var(--space-3xl);
}

.m-provider-section:last-child {
    margin-bottom: 0;
}

.m-provider-section__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(123, 47, 255, 0.15);
}

.m-provider-section__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-provider-section__count {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    background: rgba(123, 47, 255, 0.1);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(123, 47, 255, 0.2);
}

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

.m-filter__btn {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(123, 47, 255, 0.25);
    background: transparent;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-glow);
}

.m-filter__btn:hover {
    border-color: var(--color-primary);
    color: var(--color-text-white);
    background: rgba(123, 47, 255, 0.1);
}

.m-filter__btn.is-active {
    background: var(--gradient-btn);
    border-color: transparent;
    color: var(--color-text-white);
    box-shadow: 0 0 15px rgba(123, 47, 255, 0.3);
}

/* ============================================
   18. UNLOCK BANNER
   ============================================ */
.m-unlock-banner {
    background: var(--gradient-card);
    border: 1px solid rgba(123, 47, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.m-unlock-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(123, 47, 255, 0.1) 0%, transparent 70%);
}

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

.m-unlock-banner__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--space-sm);
}

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

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

.m-faq__item {
    border: 1px solid rgba(123, 47, 255, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    background: var(--gradient-card);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.m-faq__item:hover {
    border-color: rgba(123, 47, 255, 0.3);
}

.m-faq__item.is-open {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
}

.m-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color var(--transition-fast);
}

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

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

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

.m-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

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

.m-faq__answer p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   20. DISCLAIMER
   ============================================ */
.m-disclaimer {
    background: var(--color-bg-darker);
    border: 1px solid rgba(123, 47, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
}

.m-disclaimer__title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.m-disclaimer p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   21. FOOTER
   ============================================ */
.m-footer {
    background: var(--color-bg-darker);
    border-top: 1px solid rgba(123, 47, 255, 0.15);
    padding-top: var(--space-3xl);
    position: relative;
}

.m-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--glow-primary);
}

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

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

.m-footer__brand {
    max-width: 300px;
}

.m-footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    text-decoration: none;
}

.m-footer__desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

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

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

.m-footer__heading {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-white);
    margin-bottom: var(--space-sm);
}

.m-footer__link {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    text-decoration: none;
}

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

.m-footer__compliance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(123, 47, 255, 0.1);
}

.m-footer__badge img {
    height: 36px;
    opacity: 0.85;
    transition: opacity var(--transition-fast), filter var(--transition-fast);
    background: #ffffff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.m-footer__badge:hover img {
    opacity: 1;
    filter: none;
}

.m-footer__age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-accent);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--color-accent);
    box-shadow: 0 0 10px var(--glow-accent);
}

.m-footer__disclaimer {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(123, 47, 255, 0.1);
}

.m-footer__disclaimer p {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    line-height: 1.7;
    text-align: center;
}

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

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

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

/* ============================================
   22. MODALS
   ============================================ */
.m-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.m-modal__overlay {
    position: absolute;
    inset: 0;
    background: var(--color-bg-modal);
    backdrop-filter: blur(8px);
}

.m-modal__content {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid rgba(123, 47, 255, 0.25);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 440px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 40px rgba(123, 47, 255, 0.2), 0 0 80px rgba(0, 240, 255, 0.1);
    animation: modalSlideUp 0.3s ease;
}

.m-modal__content--futurism {
    background: linear-gradient(145deg, #141730, #0f1228);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.m-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    background: none;
    border: none;
    cursor: pointer;
}

.m-modal__close:hover {
    color: var(--color-text-white);
    background: rgba(123, 47, 255, 0.15);
}

.m-modal__tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(123, 47, 255, 0.15);
}

.m-modal__tab {
    flex: 1;
    padding: var(--space-md);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

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

.m-modal__tab.is-active {
    color: var(--color-text-white);
    border-bottom-color: var(--color-primary);
    text-shadow: 0 0 10px var(--glow-primary);
}

/* Game Modal — above header (100), auth (300), mobile menu (200) */
.m-game-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #000;
    display: none;
    flex-direction: column;
}

.m-game-modal.is-open {
    display: flex;
}

.m-game-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(18, 26, 18, 0.98);
    border-bottom: 2px solid var(--color-primary);
    min-height: 56px;
    flex-shrink: 0;
    position: relative;
    z-index: 10002;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.m-game-modal__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: var(--space-md);
}

.m-game-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(220, 53, 69, 0.5);
}

.m-game-modal__close:hover {
    background: linear-gradient(135deg, #e04050, #dc3545);
    box-shadow: 0 0 24px rgba(220, 53, 69, 0.7);
    transform: scale(1.05);
}

.m-game-modal__body {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.m-game-modal__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

/* ============================================
   23. COOKIE CONSENT
   ============================================ */
.m-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: var(--color-bg-card);
    border-top: 1px solid rgba(123, 47, 255, 0.25);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    padding: var(--space-lg);
}

.m-cookie.is-visible {
    transform: translateY(0);
}

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

.m-cookie__text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin: 0;
}

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

/* ============================================
   24. AUTH FORMS
   ============================================ */
.m-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.m-form__label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.m-form__input {
    width: 100%;
    padding: 12px var(--space-md);
    background: var(--color-bg-darker);
    border: 1px solid rgba(123, 47, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: var(--text-base);
    transition: all var(--transition-base);
    outline: none;
}

.m-form__input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(123, 47, 255, 0.2), 0 0 30px rgba(123, 47, 255, 0.05);
}

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

.m-form__note {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-align: center;
}

/* ============================================
   25. ACCOUNT PAGE
   ============================================ */
.m-account {
    padding: var(--space-2xl) 0;
}

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

.m-account__section {
    background: var(--gradient-card);
    border: 1px solid rgba(123, 47, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: border-color var(--transition-base);
}

.m-account__section:hover {
    border-color: rgba(123, 47, 255, 0.3);
}

.m-account__section--full {
    grid-column: 1 / -1;
}

.m-account__title {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.m-account__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(123, 47, 255, 0.08);
}

.m-account__row:last-child {
    border-bottom: none;
}

.m-account__label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.m-account__value {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
}

/* ============================================
   26. PROFILE
   ============================================ */
.m-profile {
    background: var(--gradient-card);
    border: 1px solid rgba(123, 47, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.m-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    box-shadow: 0 0 15px var(--glow-primary);
}

.m-profile__avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    box-shadow: 0 0 20px var(--glow-primary);
}

.m-profile__name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--space-xs);
}

.m-profile__email {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.m-profile__level {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(123, 47, 255, 0.15);
    border: 1px solid rgba(123, 47, 255, 0.3);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-primary-light);
    box-shadow: 0 0 10px rgba(123, 47, 255, 0.15);
}

/* ============================================
   27. XP PROGRESS
   ============================================ */
.m-xp-progress {
    margin-top: var(--space-lg);
}

.m-xp-progress__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.m-xp-progress__label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.m-xp-progress__value {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-secondary);
}

.m-xp-progress__bar {
    width: 100%;
    height: 8px;
    background: var(--color-bg-darker);
    border-radius: var(--radius-pill);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(123, 47, 255, 0.15);
}

.m-xp-progress__fill {
    height: 100%;
    background: var(--gradient-xp);
    background-size: 200% 100%;
    animation: xpShimmer 3s ease-in-out infinite;
    border-radius: var(--radius-pill);
    transition: width var(--transition-slow);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

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

/* ============================================
   28. STATS
   ============================================ */
.m-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.m-stat {
    background: var(--color-bg-darker);
    border: 1px solid rgba(123, 47, 255, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-glow);
}

.m-stat:hover {
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.1);
}

.m-stat__value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.m-stat__label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   29. CONTENT PAGES (Articles, Reviews)
   ============================================ */
.m-content-card {
    background: var(--gradient-card);
    border: 1px solid rgba(123, 47, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.m-content-card h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-content-card h3 {
    font-size: var(--text-xl);
    color: var(--color-text-white);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.m-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) 0;
    font-size: var(--text-sm);
}

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

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

.m-breadcrumb__separator {
    color: var(--color-text-muted);
    font-size: var(--text-xs);
}

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

/* ============================================
   30. BLOG GRID
   ============================================ */
.m-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.m-blog-card {
    background: var(--gradient-card);
    border: 1px solid rgba(123, 47, 255, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-glow);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.m-blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: var(--shadow-glow-secondary);
}

.m-blog-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--color-bg-darker);
}

.m-blog-card__content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.m-blog-card__category {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.m-blog-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.m-blog-card__excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
}

.m-blog-card__meta {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(123, 47, 255, 0.1);
}

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

.m-review-card {
    background: var(--gradient-card);
    border: 1px solid rgba(123, 47, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-glow);
    text-decoration: none;
    display: block;
}

.m-review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 47, 255, 0.35);
    box-shadow: var(--shadow-glow-card);
}

.m-review-card__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 10px var(--glow-primary));
}

.m-review-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--space-sm);
}

.m-review-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.m-review-card__link {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   32. UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-secondary-color { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: var(--color-text-white); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--space-sm); }
.pt-2 { padding-top: var(--space-md); }
.pt-3 { padding-top: var(--space-lg); }
.pt-4 { padding-top: var(--space-xl); }
.pt-5 { padding-top: var(--space-2xl); }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--space-sm); }
.pb-2 { padding-bottom: var(--space-md); }
.pb-3 { padding-bottom: var(--space-lg); }
.pb-4 { padding-bottom: var(--space-xl); }
.pb-5 { padding-bottom: var(--space-2xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }
.gap-4 { gap: var(--space-xl); }

.w-full { width: 100%; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   33. SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(123, 47, 255, 0.3);
    border-radius: var(--radius-pill);
}

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

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(123, 47, 255, 0.3) var(--color-bg-darker);
}

/* ============================================
   NOTIFICATIONS
   ============================================ */
.m-notification {
    position: fixed;
    top: calc(var(--header-height) + var(--space-md));
    right: var(--space-lg);
    z-index: var(--z-notification);
    background: var(--color-bg-card);
    border: 1px solid rgba(123, 47, 255, 0.25);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    min-width: 280px;
    max-width: 400px;
    transform: translateX(calc(100% + var(--space-lg)));
    transition: transform var(--transition-base);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(123, 47, 255, 0.15);
}

.m-notification.show {
    transform: translateX(0);
}

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

.m-notification__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.m-notification__message {
    font-size: var(--text-sm);
    color: var(--color-text);
    line-height: 1.4;
}

.m-notification--success {
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(76, 175, 80, 0.15);
}

.m-notification--error {
    border-color: rgba(244, 67, 54, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(244, 67, 54, 0.15);
}

.m-notification--xp {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.15);
}

.m-notification--level {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.2);
    background: linear-gradient(145deg, var(--color-bg-card), rgba(0, 240, 255, 0.05));
}

.m-notification--info {
    border-color: rgba(33, 150, 243, 0.4);
}

.m-notification--warning {
    border-color: rgba(255, 152, 0, 0.4);
}

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.m-age-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-age-modal);
    background: rgba(10, 10, 24, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.m-age-modal.is-hidden {
    display: none;
}

.m-age-modal__content {
    background: var(--color-bg-card);
    border: 1px solid rgba(123, 47, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-3xl);
    max-width: 460px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 60px rgba(123, 47, 255, 0.2), 0 0 120px rgba(0, 240, 255, 0.1);
}

.m-age-modal__content--futurism {
    background: linear-gradient(145deg, #141730, #0f1228);
}

.m-age-modal__icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    filter: drop-shadow(0 0 15px var(--glow-primary));
}

.m-age-modal__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-age-modal__text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

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

/* ============================================
   DAILY BONUS MODAL
   ============================================ */
.m-daily-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
}

.m-daily-modal.is-open {
    display: flex;
}

.m-daily-modal__overlay {
    position: absolute;
    inset: 0;
    background: var(--color-bg-modal);
    backdrop-filter: blur(8px);
}

.m-daily-modal__content {
    position: relative;
    background: linear-gradient(145deg, #141730, #0f1228);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15), 0 0 80px rgba(123, 47, 255, 0.1);
}

/* ============================================
   RESPONSIVE: 992px
   ============================================ */
@media (max-width: 992px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2.2rem;
        --text-3xl: 1.8rem;
    }

    .m-header__nav {
        display: none;
    }

    .m-header__burger {
        display: flex;
    }

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

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

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

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

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

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

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

/* ============================================
   RESPONSIVE: 768px
   ============================================ */
@media (max-width: 768px) {
    :root {
        --text-5xl: 2rem;
        --text-4xl: 1.8rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.3rem;
        --header-height: 60px;
    }

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

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

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

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

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

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

    .m-footer__compliance {
        gap: var(--space-md);
    }

    .m-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .m-hero__actions .m-btn {
        width: 100%;
        max-width: 300px;
    }

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

    .m-header__auth {
        display: none !important; /* в шапке на мобильной только бургер; логин/регистрация в выезжающем меню */
    }

    .m-header__account {
        display: none !important;
    }

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

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

    .m-age-modal__actions {
        flex-direction: column;
    }

    .m-age-modal__actions .m-btn {
        width: 100%;
    }

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

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

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

    .m-age-restriction {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .m-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
    }

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

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

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

/* ============================================
   RESPONSIVE: 480px
   ============================================ */
@media (max-width: 480px) {
    :root {
        --text-5xl: 1.6rem;
        --text-4xl: 1.4rem;
        --text-3xl: 1.25rem;
        --text-2xl: 1.1rem;
    }

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

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

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

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

    .m-hero__badge {
        font-size: 0.65rem;
    }

    .m-section__title {
        font-size: var(--text-2xl);
    }

    .m-provider-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

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

    .m-game-tile__title {
        font-size: 0.65rem;
    }

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

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

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

    .m-content-card h2 {
        font-size: var(--text-xl);
    }

    .m-content-card h3 {
        font-size: var(--text-lg);
    }

    .m-notification {
        right: var(--space-md);
        left: var(--space-md);
        min-width: auto;
    }

    .m-btn--lg {
        padding: 12px 28px;
        font-size: var(--text-sm);
    }

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

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

/* ============================================
   RESPONSIVE: 360px
   ============================================ */
@media (max-width: 360px) {
    :root {
        --text-5xl: 1.4rem;
        --text-4xl: 1.25rem;
        --text-3xl: 1.1rem;
    }

    .m-header__logo-text {
        font-size: var(--text-sm);
    }

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

    .m-featured-games-grid {
        gap: var(--space-sm);
    }

    .m-btn {
        padding: 8px 16px;
        font-size: var(--text-xs);
    }

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

    .m-hero__subtitle {
        font-size: var(--text-sm);
    }

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

    .m-game-modal__title {
        font-size: var(--text-xs);
    }
}

/* ============================================
   FEATURED PROVIDER NAME (Home Featured Games)
   ============================================ */
.m-featured-provider__name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}

.m-featured-provider__name:first-of-type {
    margin-top: 0;
}

/* ============================================
   BLOG CARD ICON
   ============================================ */
.m-blog-card__icon {
    font-size: 3rem;
    padding: var(--space-xl) var(--space-lg) var(--space-md);
    text-align: center;
    background: var(--color-bg-darker);
    border-bottom: 1px solid rgba(123, 47, 255, 0.1);
    filter: drop-shadow(0 0 10px var(--glow-primary));
}

/* ============================================
   CONTENT CARD TITLE (used across pages)
   ============================================ */
.m-content-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CONTENT CARD HIGHLIGHT
   ============================================ */
.m-content-card--highlight {
    border-color: rgba(255, 215, 0, 0.25);
    background: linear-gradient(145deg, rgba(20, 23, 48, 1), rgba(30, 25, 50, 1));
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.m-legal__updated {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(123, 47, 255, 0.1);
}

.m-legal__heading {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text-white);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ============================================
   HERO EXTENSIONS
   ============================================ */
.m-hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.m-hero__stars {
    font-size: var(--text-xl);
    color: var(--color-accent);
    filter: drop-shadow(0 0 6px var(--glow-accent));
}

.m-hero__score {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--color-text-secondary);
}

/* ============================================
   FACTS GRID (Responsible Gaming)
   ============================================ */
.m-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.m-fact-card {
    background: var(--color-bg-darker);
    border: 1px solid rgba(123, 47, 255, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-glow);
}

.m-fact-card:hover {
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.1);
}

.m-fact-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
    filter: drop-shadow(0 0 10px var(--glow-primary));
}

.m-fact-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.m-fact-card__text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================
   LIST VARIANTS
   ============================================ */
.m-list {
    list-style: disc;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.m-list li {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.m-list li::marker {
    color: var(--color-primary);
}

.m-list--spaced li {
    margin-bottom: var(--space-md);
}

/* ============================================
   AGE RESTRICTION (Responsible Gaming)
   ============================================ */
.m-age-restriction {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
}

.m-age-restriction__badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    border: 3px solid var(--color-accent);
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--color-accent);
    box-shadow: 0 0 20px var(--glow-accent);
}

.m-age-restriction__content {
    flex: 1;
}

/* ============================================
   HELP RESOURCES (Responsible Gaming)
   ============================================ */
.m-help-resources {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.m-help-resource {
    background: var(--color-bg-darker);
    border: 1px solid rgba(123, 47, 255, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: border-color var(--transition-base);
}

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

.m-help-resource__logo {
    height: 36px;
    margin: 0 auto var(--space-md);
    opacity: 0.7;
}

.m-help-resource__title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.m-help-resource__text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

/* ============================================
   ERROR PAGE (404)
   ============================================ */
.m-error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.m-error-page__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.m-error-page__code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 20px var(--glow-primary));
}

.m-error-page__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--space-md);
}

.m-error-page__text {
    font-size: var(--text-md);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px var(--glow-primary);
    }
    50% {
        box-shadow: 0 0 30px var(--glow-primary), 0 0 60px rgba(123, 47, 255, 0.15);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(123, 47, 255, 0.2);
    }
    50% {
        border-color: rgba(0, 240, 255, 0.4);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease forwards;
}

.animate-pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .m-header,
    .m-footer,
    .m-mobile-menu,
    .m-modal,
    .m-age-modal,
    .m-cookie,
    .m-notification {
        display: none !important;
    }

    body {
        background: white;
        color: #333;
    }

    .m-main {
        padding-top: 0;
    }

    .m-content-card {
        border: 1px solid #ddd;
        box-shadow: none;
    }
}
