/* ============================================
   DEFLAKER.COM - NEON NOIR THEME
   
   CSS ARCHITECTURE: BEM (Block Element Modifier)
   PALETTE: Neon-Noir (Cyberpunk night city vibe)
   EFFECT: Neon Glow + Dark backgrounds
   TYPOGRAPHY: Orbitron (heading) + Rajdhani (body)
   ============================================ */

/* ===== 1. CSS VARIABLES ===== */
:root {
    /* Neon-Noir Palette */
    --neon-cyan: #00ffff;
    --neon-magenta: #ff10f0;
    --neon-purple: #9d00ff;
    --electric-blue: #1e90ff;
    --neon-pink: #ff006e;
    --neon-green: #39ff14;
    
    /* Backgrounds */
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --bg-card: #1a0f3a;
    --bg-card-hover: #2a1f4a;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #c0c0ff;
    --text-muted: #8080c0;
    
    /* 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: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Header */
    --header-height: 70px;
    
    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    /* Shadows & Glows */
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.5);
    --glow-magenta: 0 0 20px rgba(255, 16, 240, 0.5);
    --glow-purple: 0 0 20px rgba(157, 0, 255, 0.5);
}

/* ===== 2. RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-darker);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(157, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-magenta);
    text-shadow: var(--glow-magenta);
}

/* ===== 3. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--space-md);
}

/* ===== 4. CONTAINER ===== */
.m-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.m-container--narrow {
    max-width: 800px;
}

/* ===== 5. HEADER ===== */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-cyan);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.m-header__container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.m-header__logo {
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 30px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.m-header__logo:hover {
    color: var(--neon-magenta);
    text-shadow: 
        0 0 10px rgba(255, 16, 240, 0.8),
        0 0 20px rgba(255, 16, 240, 0.6),
        0 0 30px rgba(255, 16, 240, 0.4);
}

.m-header__nav {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.m-header__link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.m-header__link:hover,
.m-header__link.is-active {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.m-header__account-btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bg-dark);
    background: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.m-header__account-btn:hover {
    background: transparent;
    color: var(--neon-cyan);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.6),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.m-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.m-header__burger span {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.m-header__burger:hover span {
    background: var(--neon-magenta);
    box-shadow: var(--glow-magenta);
}

/* ===== 6. MOBILE MENU ===== */
.m-mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--neon-cyan);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
}

.m-mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.m-mobile-menu__content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.m-mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    padding: var(--space-md);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-align: center;
}

.m-mobile-menu__link:hover,
.m-mobile-menu__link.is-active {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

.m-mobile-menu__account-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--bg-dark);
    background: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
}

/* ===== 7. BUTTONS ===== */
.m-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.m-btn--primary {
    color: var(--bg-dark);
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.m-btn--primary:hover {
    background: transparent;
    color: var(--neon-cyan);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.m-btn--secondary {
    color: var(--neon-magenta);
    background: transparent;
    border-color: var(--neon-magenta);
}

.m-btn--secondary:hover {
    background: var(--neon-magenta);
    color: var(--bg-dark);
    box-shadow: var(--glow-magenta);
}

.m-btn--play {
    color: var(--bg-dark);
    background: var(--neon-green);
    border-color: var(--neon-green);
    font-size: 0.875rem;
    padding: var(--space-sm) var(--space-md);
}

.m-btn--play:hover {
    background: transparent;
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.m-btn--sm {
    font-size: 0.875rem;
    padding: var(--space-sm) var(--space-md);
}

.m-btn--lg {
    font-size: 1.125rem;
    padding: var(--space-lg) var(--space-2xl);
}

.m-btn--full {
    width: 100%;
}

.m-btn--glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
    }
}

/* ===== 8. MAIN CONTENT ===== */
.m-main {
    min-height: 100vh;
    padding-top: var(--header-height);
}

/* ===== 9. HERO SECTION ===== */
.m-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) 0;
    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(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 16, 240, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.m-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.m-hero__content {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.m-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

.m-hero__title-glow {
    color: var(--neon-cyan);
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.6);
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.m-hero__subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.m-hero__text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.m-hero__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.m-hero__badges {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.m-hero__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(26, 15, 58, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    min-width: 120px;
}

.m-hero__badge-icon {
    font-size: 2rem;
}

.m-hero--small {
    min-height: 300px;
    padding: var(--space-2xl) 0;
}

.m-hero--404 {
    min-height: 80vh;
}

.m-hero__title--404 {
    font-size: clamp(6rem, 15vw, 12rem);
    line-height: 1;
}

/* ===== 10. SECTIONS ===== */
.m-section {
    padding: var(--space-3xl) 0;
}

.m-section--alt {
    background: rgba(26, 15, 58, 0.3);
}

.m-section--page-top {
    padding-top: calc(var(--space-3xl) + var(--space-lg));
}

.m-section__title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-lg);
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.m-section__subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.m-section__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* ===== 11. BENEFITS ===== */
.m-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.m-benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.m-benefit-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.m-benefit-card__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.m-benefit-card__title {
    font-size: 1.25rem;
    color: var(--neon-cyan);
    margin-bottom: var(--space-md);
}

.m-benefit-card__text {
    color: var(--text-secondary);
    font-size: 0.975rem;
}

/* ===== 12. FEATURED PROVIDERS ===== */
.m-featured-providers {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.m-provider-section {
    background: var(--bg-card);
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.m-provider-section--compact {
    padding: var(--space-lg);
}

.m-provider-section__title {
    font-size: 1.5rem;
    color: var(--neon-magenta);
    text-shadow: var(--glow-magenta);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.m-provider-section__icon {
    font-size: 1.75rem;
}

/* ===== 13. GAMES GRID ===== */
.m-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.m-games-grid--featured {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
    gap: var(--space-md);
}

/* ===== 14. GAME TILE ===== */
.m-game-tile {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.m-game-tile:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.m-game-tile__image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-darker);
}

.m-game-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.m-game-tile:hover .m-game-tile__image {
    transform: scale(1.05);
}

.m-game-tile__info {
    padding: var(--space-md);
}

.m-game-tile__title {
    font-size: 1rem;
    color: var(--neon-cyan);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

/* ===== 15. GAME TILE LOCKED ===== */
.m-game-tile--locked .m-game-tile__image {
    filter: blur(4px) grayscale(70%);
    opacity: 0.5;
}

.m-game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 26, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    z-index: 10;
}

.m-game-tile__lock-icon {
    font-size: 2rem;
    color: var(--neon-magenta);
    text-shadow: var(--glow-magenta);
}

.m-game-tile__lock-text {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* ===== 16. PROVIDER SECTION (Reviews) ===== */


/* ===== 17. FILTER ===== */
.m-filter {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.m-filter__btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: 2px solid rgba(0, 255, 255, 0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.m-filter__btn:hover,
.m-filter__btn.is-active {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

/* ===== 18. UNLOCK BANNER ===== */
.m-unlock-banner {
    background: linear-gradient(135deg, var(--bg-card), rgba(157, 0, 255, 0.2));
    border: 2px solid var(--neon-purple);
    border-radius: var(--radius-xl);
    margin: var(--space-xl) 0;
    box-shadow: var(--glow-purple);
}

.m-unlock-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    padding: var(--space-xl);
    flex-wrap: wrap;
}

.m-unlock-banner__icon {
    font-size: 3rem;
}

.m-unlock-banner__text h3 {
    color: var(--neon-magenta);
    margin-bottom: var(--space-sm);
}

.m-unlock-banner__text p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===== 19. FAQ ===== */
.m-faq {
    max-width: 800px;
    margin: 0 auto;
}

.m-faq__item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.m-faq__item.is-open {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.m-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-faq__question:hover {
    color: var(--neon-magenta);
}

.m-faq__icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.m-faq__item.is-open .m-faq__icon {
    transform: rotate(45deg);
}

.m-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.m-faq__item.is-open .m-faq__answer {
    max-height: 500px;
}

.m-faq__answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    margin: 0;
}

/* ===== 20. DISCLAIMER ===== */
.m-disclaimer {
    background: linear-gradient(135deg, rgba(255, 16, 240, 0.1), rgba(157, 0, 255, 0.1));
    border: 2px solid var(--neon-magenta);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--glow-magenta);
}

.m-disclaimer__title {
    font-size: 1.5rem;
    color: var(--neon-magenta);
    text-shadow: var(--glow-magenta);
    margin-bottom: var(--space-md);
    text-align: center;
}

.m-disclaimer__content {
    color: var(--text-secondary);
}

.m-disclaimer__badges {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.m-disclaimer__badge {
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neon-cyan);
}

/* ===== 21. FOOTER ===== */
.m-footer {
    background: var(--bg-dark);
    border-top: 2px solid var(--neon-cyan);
    padding: var(--space-3xl) 0 var(--space-lg);
    margin-top: var(--space-3xl);
}

.m-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.m-footer__top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.m-footer__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    margin-bottom: var(--space-md);
}

.m-footer__tagline {
    color: var(--text-muted);
    font-size: 0.975rem;
}

.m-footer__links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.m-footer__column h4 {
    font-size: 1rem;
    color: var(--neon-magenta);
    margin-bottom: var(--space-md);
}

.m-footer__column a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
    transition: all 0.3s ease;
}

.m-footer__column a:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    padding-left: var(--space-sm);
}

.m-footer__compliance {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.m-footer__badges {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.m-footer__badge {
    display: block;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.m-footer__badge img {
    height: 40px;
    width: auto;
}

.m-footer__badge:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.m-footer__age-badge {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-pink);
    border: 3px solid var(--neon-pink);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-footer__bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.m-footer__bottom p {
    margin-bottom: var(--space-sm);
}

.m-footer__disclaimer {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* ===== 22. MODALS ===== */
.m-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.m-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.m-modal__overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.m-modal__content {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.5),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    z-index: 1;
}

.m-modal__content--game {
    max-width: 1200px;
    padding: 0;
}

.m-modal__content--age {
    max-width: 600px;
}

.m-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: rgba(255, 16, 240, 0.2);
    border: 2px solid var(--neon-magenta);
    border-radius: 50%;
    color: var(--neon-magenta);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.m-modal__close:hover {
    background: var(--neon-magenta);
    color: var(--bg-dark);
    box-shadow: var(--glow-magenta);
}

.m-modal__header h2 {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.m-modal__body {
    color: var(--text-secondary);
}

.m-modal__body p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.m-modal__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin: var(--space-xl) 0;
}

.m-modal__warning {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.m-modal__tabs {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.m-modal__tab {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: var(--space-md);
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.m-modal__tab:hover,
.m-modal__tab.is-active {
    color: var(--neon-cyan);
    border-bottom-color: var(--neon-cyan);
}

.m-modal__tab-content {
    display: none;
}

.m-modal__tab-content.is-active {
    display: block;
}

.m-modal__game-container {
    width: 100%;
    height: 80vh;
    background: var(--bg-darker);
}

.m-modal__game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== 23. COOKIE CONSENT ===== */
.m-cookie-consent {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    max-width: 400px;
    background: var(--bg-card);
    border: 2px solid var(--neon-purple);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--glow-purple);
    display: none;
    z-index: 1500;
}

.m-cookie-consent.is-visible {
    display: block;
}

.m-cookie-consent__content {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.m-cookie-consent__link {
    color: var(--neon-cyan);
    text-decoration: underline;
}

/* ===== 24. AUTH FORMS ===== */
.m-auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.m-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.m-form-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
}

.m-form-group input {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(10, 10, 26, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: all 0.3s ease;
}

.m-form-group input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    background: rgba(10, 10, 26, 0.8);
}

.m-auth-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.m-auth-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.m-auth-card__title {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    margin-bottom: var(--space-lg);
    text-align: center;
}

/* ===== 25. ACCOUNT PAGE ===== */
.m-profile {
    background: var(--bg-card);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--glow-cyan);
}

.m-profile__header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.m-profile__level-badge {
    width: 100px;
    height: 100px;
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(157, 0, 255, 0.1));
    box-shadow: var(--glow-cyan);
}

.m-profile__level-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
}

.m-profile__level-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.m-profile__info {
    flex: 1;
}

.m-profile__name {
    font-size: 2rem;
    color: var(--neon-magenta);
    text-shadow: var(--glow-magenta);
    margin-bottom: var(--space-sm);
}

.m-profile__email {
    color: var(--text-muted);
    margin: 0;
}

/* ===== 26. PROFILE ===== */


/* ===== 27. XP PROGRESS ===== */
.m-profile__xp {
    margin-bottom: var(--space-xl);
}

.m-profile__xp-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
}

.m-profile__xp-bar {
    height: 30px;
    background: rgba(10, 10, 26, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.m-profile__xp-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    border-radius: var(--radius-lg);
    transition: width 0.5s ease;
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.5),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
}

/* ===== 28. STATS ===== */
.m-profile__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.m-profile__stat {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(10, 10, 26, 0.5);
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: var(--radius-lg);
}

.m-profile__stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-magenta);
    margin-bottom: var(--space-sm);
}

.m-profile__stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.m-profile__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== 29. CONTENT PAGES ===== */
.m-breadcrumb {
    padding: var(--space-lg) 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.m-breadcrumb a {
    color: var(--neon-cyan);
}

.m-article,
.m-review {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.m-article__header {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.m-article__meta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.m-article__category {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neon-magenta);
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 16, 240, 0.1);
    border: 1px solid var(--neon-magenta);
    border-radius: var(--radius-md);
}

.m-article__reading-time {
    color: var(--text-muted);
}

.m-article__title,
.m-review__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    margin-bottom: var(--space-lg);
}

.m-article__intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.m-article__content,
.m-review__content {
    color: var(--text-secondary);
}

.m-article__content h2,
.m-review__content h2 {
    color: var(--neon-magenta);
    margin-top: var(--space-2xl);
}

.m-article__content h3,
.m-review__content h3 {
    color: var(--neon-purple);
    margin-top: var(--space-xl);
}

.m-content-list {
    list-style: none;
    padding-left: 0;
}

.m-content-list li {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    position: relative;
}

.m-content-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

.m-table-wrap {
    overflow-x: auto;
    margin: var(--space-xl) 0;
}

.m-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.m-table thead {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
}

.m-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
    padding: var(--space-md);
    text-align: left;
}

.m-table td {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.m-info-box {
    background: rgba(26, 15, 58, 0.5);
    border-left: 4px solid;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

.m-info-box--tip {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.05);
}

.m-info-box--warning {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 110, 0.05);
}

.m-info-box--info {
    border-color: var(--electric-blue);
    background: rgba(30, 144, 255, 0.05);
}

.m-article__footer {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 2px solid rgba(0, 255, 255, 0.2);
}

.m-article__nav {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.m-review__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.m-review__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.m-review__stars {
    color: var(--neon-green);
}

.m-review__score {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--neon-cyan);
}

.m-review__meta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.m-cta-box {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(157, 0, 255, 0.1));
    border: 2px solid var(--neon-cyan);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    margin-top: var(--space-2xl);
}

.m-cta-box h3 {
    color: var(--neon-cyan);
    margin-bottom: var(--space-md);
}

.m-cta-box p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* ===== 30. BLOG GRID ===== */
.m-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.m-blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.m-blog-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.m-blog-card__category {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-magenta);
    text-transform: uppercase;
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 16, 240, 0.1);
    border: 1px solid var(--neon-magenta);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.m-blog-card__title {
    font-size: 1.25rem;
    color: var(--neon-cyan);
    margin-bottom: var(--space-md);
}

.m-blog-card__title a {
    color: var(--neon-cyan);
}

.m-blog-card__excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.m-blog-card__meta {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

/* ===== 31. REVIEWS GRID ===== */
.m-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.m-reviews-grid--large {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.m-review-card {
    background: var(--bg-card);
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.m-review-card:hover {
    border-color: var(--neon-magenta);
    box-shadow: var(--glow-magenta);
    transform: translateY(-5px);
}

.m-review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.m-review-card__title {
    font-size: 1.5rem;
    color: var(--neon-magenta);
    margin: 0;
}

.m-review-card__rating {
    font-size: 1.125rem;
    color: var(--neon-green);
    white-space: nowrap;
}

.m-review-card__excerpt,
.m-review-card__description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.m-review-card__stats {
    display: flex;
    gap: var(--space-lg);
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

/* ===== 32. UTILITY CLASSES ===== */
.is-hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

/* ===== 33. SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-magenta));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-magenta), var(--neon-purple));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    :root {
        --header-height: 60px;
    }
    
    .m-header__nav,
    .m-header__account-btn {
        display: none;
    }
    
    .m-header__burger {
        display: flex;
    }
    
    .m-footer__top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .m-hero {
        min-height: 500px;
        padding: var(--space-2xl) 0;
    }
    
    .m-benefits {
        grid-template-columns: 1fr;
    }
    
    .m-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .m-games-grid--featured {
        grid-template-columns: 1fr;
    }
    
    .m-profile__header {
        flex-direction: column;
        text-align: center;
    }
    
    .m-auth-cards {
        grid-template-columns: 1fr;
    }
    
    .m-cookie-consent {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: none;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .m-games-grid {
        grid-template-columns: 1fr;
    }
    
    .m-hero__badges {
        gap: var(--space-sm);
    }
    
    .m-hero__badge {
        min-width: 100px;
        font-size: 0.875rem;
    }
    
    .m-unlock-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .m-filter {
        flex-direction: column;
    }
    
    .m-filter__btn {
        width: 100%;
    }
}
