/* ============================================
   RogerDrew — Cosmic Guardian Style
   Fonts: Space Grotesk + Inter
   Palette: Green, Black, Cosmic
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors */
    --primary: #00e676;
    --primary-dark: #00c853;
    --primary-rgb: 0, 230, 118;
    --secondary: #1b5e20;
    --accent: #69f0ae;
    --accent-dark: #00e676;

    /* Backgrounds */
    --bg-dark: #0a0e17;
    --bg-darker: #060a10;
    --bg-card: #111a2b;
    --bg-card-hover: #162236;
    --bg-section: #0d1321;
    --bg-hero: radial-gradient(ellipse at 50% 20%, rgba(0,230,118,0.08) 0%, transparent 60%), #0a0e17;

    /* Text */
    --text-primary: #e8f5e9;
    --text-secondary: #a5d6a7;
    --text-muted: #5c7a6b;
    --text-white: #ffffff;

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

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

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

    /* Fonts */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 230, 118, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 230, 118, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 230, 118, 0.12);
    --shadow-glow: 0 0 20px rgba(0, 230, 118, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

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

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

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style: none;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

.m-container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* 5. Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 14, 23, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 230, 118, 0.1);
    z-index: 1000;
    transition: background var(--transition-base);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.logo:hover {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

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

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width var(--transition-base);
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.4);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--primary);
}

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

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

/* 6. Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

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

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

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(0, 230, 118, 0.08);
    transition: color var(--transition-fast), padding-left var(--transition-base);
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
    color: var(--primary);
    padding-left: var(--space-md);
}

/* 7. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    white-space: nowrap;
    line-height: 1.4;
}

.btn--primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 16px rgba(0, 230, 118, 0.25);
}

.btn--primary:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.4);
    transform: translateY(-1px);
}

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

.btn--secondary:hover {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent);
    border-color: var(--accent);
}

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

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

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

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

/* 9. Hero Section */
.m-hero {
    position: relative;
    background: var(--bg-hero);
    padding: var(--space-3xl) 0;
    text-align: center;
    overflow: hidden;
}

.m-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(0,230,118,0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(105,240,174,0.03) 0%, transparent 40%);
    animation: cosmicDrift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cosmicDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, -1%) rotate(1deg); }
    66% { transform: translate(-1%, 2%) rotate(-1deg); }
}

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

.m-hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,230,118,0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

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

.m-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}

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

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

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

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

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

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

.m-hero__title--404 {
    font-size: 8rem;
    color: var(--primary);
    text-shadow: 0 0 60px rgba(0, 230, 118, 0.3);
    line-height: 1;
    margin-bottom: var(--space-lg);
}

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

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

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

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

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

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

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

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

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

.m-section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: var(--space-md);
}

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

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

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

.m-page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

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

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

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

.benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.2);
    box-shadow: var(--shadow-md);
}

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

.benefit-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--space-sm);
}

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

/* 12. Featured Providers */
.featured-provider__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-md);
    margin-top: var(--space-xl);
    text-align: center;
}

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

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

/* 14. Game Tile / Game Card */
.game-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.25);
    box-shadow: var(--shadow-md);
}

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

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

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

.game-card__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.game-card:hover .game-card__play-overlay {
    opacity: 1;
}

.game-card__play-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-glow);
}

.game-card__title {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* m-game-tile (for games.js renderer) */
.m-game-tile {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.m-game-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.25);
    box-shadow: var(--shadow-md);
}

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

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

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

.m-game-tile__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0.5);
    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-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-glow);
}

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

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

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

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

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

.m-game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.m-game-tile__lock-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

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

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

.provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(0, 230, 118, 0.15);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.provider-section__title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.4);
}

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

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

.provider-filter__btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 230, 118, 0.15);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.provider-filter__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 230, 118, 0.05);
}

.provider-filter__btn.is-active {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.25);
}

/* 18. Unlock Banner */
.unlock-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, rgba(0,230,118,0.08) 0%, rgba(0,200,83,0.04) 100%);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--radius-md);
}

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

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

/* 19. FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item.is-open {
    border-color: rgba(0, 230, 118, 0.2);
}

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

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

.faq-item__icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    line-height: 1;
}

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

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

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

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

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

.disclaimer__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.disclaimer__text a {
    color: var(--accent);
}

/* 21. Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 230, 118, 0.08);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

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

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer__description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 340px;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

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

.footer__compliance {
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(0, 230, 118, 0.06);
    border-bottom: 1px solid rgba(0, 230, 118, 0.06);
}

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

.footer__compliance-logo {
    height: 32px;
    width: auto;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
    filter: grayscale(20%);
}

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

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

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}

.footer__bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

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

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

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

.modal__content {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.modal__content--bonus {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0,230,118,0.05) 100%);
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.modal__text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

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

.daily-bonus__amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: var(--space-lg) 0;
    text-shadow: 0 0 30px rgba(0, 230, 118, 0.4);
}

/* Game Modal */
.game-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.game-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.game-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.game-modal__content {
    position: relative;
    width: 95%;
    max-width: 1100px;
    height: 80vh;
    background: var(--bg-darker);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 1;
}

.game-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.game-modal__close:hover {
    background: rgba(0, 230, 118, 0.15);
    border-color: var(--primary);
}

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

/* 23. Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(0, 230, 118, 0.15);
    z-index: 1500;
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-consent__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
    line-height: 1.5;
}

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

/* 24. Auth Forms */
.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    padding: var(--space-lg);
}

.auth-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.auth-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.auth-modal__content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 420px;
    width: 100%;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.auth-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

.auth-modal__tabs {
    display: flex;
    gap: 0;
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(0, 230, 118, 0.1);
}

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

.auth-modal__tab.is-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

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

.auth-modal__note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-lg);
}

.auth-form__group {
    margin-bottom: var(--space-md);
}

.auth-form__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.auth-form__input {
    width: 100%;
    padding: 12px var(--space-md);
    background: var(--bg-darker);
    border: 1px solid rgba(0, 230, 118, 0.12);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

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

.auth-form__input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1);
}

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

.account-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

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

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

.why-account__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.why-account__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.why-account__item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.06);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-base);
}

.why-account__item:hover {
    border-color: rgba(0, 230, 118, 0.15);
}

.why-account__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.why-account__item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--space-xs);
}

.why-account__item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 26. Profile */
.profile-header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.1);
    border-radius: var(--radius-lg);
}

.profile-header__badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}

.profile-header__name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-xs);
}

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

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

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

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

.xp-bar {
    width: 100%;
    height: 12px;
    background: var(--bg-darker);
    border-radius: 6px;
    overflow: hidden;
}

.xp-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 6px;
    transition: width 0.8s ease;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
}

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

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

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

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

/* 29. Content Pages */
.m-content-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.m-content-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

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

.m-content-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

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

.m-content-card ul,
.m-content-card ol {
    margin: var(--space-md) 0;
    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: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

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

.m-content-card a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

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

.m-table th,
.m-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid rgba(0, 230, 118, 0.08);
}

.m-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 230, 118, 0.04);
}

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

.m-table tr:hover td {
    background: rgba(0, 230, 118, 0.02);
}

/* Responsible Gaming */
.responsible-facts {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.responsible-fact {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 230, 118, 0.04);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.responsible-fact__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.responsible-fact strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-bottom: var(--space-xs);
}

.responsible-fact p {
    margin: 0;
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

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

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

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

.review-game-tile {
    background: var(--bg-darker);
    border: 1px solid rgba(0, 230, 118, 0.06);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-align: center;
}

.review-game-tile img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.review-game-tile span {
    display: block;
    padding: var(--space-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.blog-grid--reviews {
    margin-bottom: 0;
}

.blog-reviews {
    margin-top: var(--space-3xl);
}

.article-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.2);
    box-shadow: var(--shadow-md);
}

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

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

.article-card__category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

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

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

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

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

.review-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.2);
    box-shadow: var(--shadow-md);
}

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

.review-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.review-card__rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.review-card__score {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.review-card__description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

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

.review-card__stat {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

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

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

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

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

::-webkit-scrollbar-thumb {
    background: rgba(0, 230, 118, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 230, 118, 0.4);
}

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

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

    .mobile-menu-toggle { display: flex; }

    .header__actions .btn { display: none; }

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

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

    .account-forms { grid-template-columns: 1fr; }

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

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

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

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

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

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

    .m-hero__row { flex-direction: column; text-align: center; }
    .m-hero__auth-buttons { justify-content: center; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .m-hero { padding: var(--space-2xl) 0; }
    .m-hero__title { font-size: 2rem; }
    .m-hero__title--404 { font-size: 5rem; }
    .m-hero__subtitle { font-size: 1.1rem; }

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

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

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

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

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

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

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

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

    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }

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

    .provider-filter { gap: var(--space-xs); }
    .provider-filter__btn { padding: 8px 14px; font-size: 0.8rem; }

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

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

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

    .profile-header { flex-direction: column; text-align: center; }
    .profile-actions { flex-direction: column; }

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

    .m-table { font-size: 0.8rem; }
    .m-table th, .m-table td { padding: var(--space-sm); }

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

    .game-modal__content { width: 100%; height: 70vh; border-radius: var(--radius-md); }
}

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

    .stat-card { padding: var(--space-md); }
    .stat-card__value { font-size: 1.5rem; }

    .m-content-card h2 { font-size: 1.3rem; }
    .m-content-card h3 { font-size: 1.05rem; }
    .m-content-card p, .m-content-card li { font-size: 0.9rem; }

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