/* ==========================================================================
   LorenRole — css/styles.css
   Stylistic: #13 Retro (Press Start 2P / VT323 / Special Elite)
   Palette: #f4e4ba, #e8a87c, #2d1b00, #5c3d1e, #a0522d
   ========================================================================== */

/* 1. CSS Variables (:root)
   ========================================================================== */
:root {
    /* Colors — Retro warm palette */
    --primary: #e8a87c;
    --primary-dark: #c4845a;
    --secondary: #a0522d;
    --accent: #f4e4ba;

    /* Backgrounds — warm vintage */
    --bg-dark: #2d1b00;
    --bg-darker: #1a0f00;
    --bg-card: #3d2810;
    --bg-card-hover: #4a3218;

    /* Text */
    --text-primary: #f4e4ba;
    --text-secondary: #d4c49a;
    --text-muted: #a08c6a;
    --text-dark: #2d1b00;

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

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

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

    /* Fonts — Retro */
    --font-body: 'VT323', monospace;
    --font-heading: 'Press Start 2P', cursive;
    --font-accent: 'Special Elite', cursive;

    /* Borders */
    --border-retro: 3px solid #e8a87c;
    --border-pixel: 4px solid #f4e4ba;
    --border-subtle: 2px solid rgba(232, 168, 124, 0.25);

    /* Shadows */
    --shadow-retro: 4px 4px 0 #1a0f00;
    --shadow-card: 6px 6px 0 #1a0f00;
    --shadow-glow: 0 0 20px rgba(232, 168, 124, 0.3);
}

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

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

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

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

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

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

ul, ol {
    list-style-position: inside;
    padding-left: var(--space-md);
}

/* 3. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--accent);
    line-height: 1.4;
    margin-bottom: var(--space-md);
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1rem; }
h3 { font-size: 0.85rem; }
h4 { font-size: 0.75rem; }

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

.pixel-icon {
    display: inline-block;
    font-size: 0.7em;
    margin-right: var(--space-xs);
}

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

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

/* 5. Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-darker);
    border-bottom: var(--border-retro);
    height: var(--header-height);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent);
    text-decoration: none;
    text-shadow: 2px 2px 0 var(--secondary);
    letter-spacing: 1px;
    white-space: nowrap;
}

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

.logo--footer {
    font-size: 0.85rem;
}

.logo--mobile {
    font-size: 0.9rem;
}

/* Site Navigation */
.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.site-nav__link {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-sm) 0;
    transition: color 0.2s;
    white-space: nowrap;
}

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

/* Header Actions */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* XP Bar Header */
.xp-bar-header {
    background: var(--bg-darker);
    border-bottom: 2px solid rgba(232, 168, 124, 0.2);
    padding: var(--space-xs) 0;
}

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

.xp-bar-header__label {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    color: var(--accent);
    min-width: 60px;
}

.xp-bar-header__track {
    flex: 1;
    height: 8px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    overflow: hidden;
}

.xp-bar-header__fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.5s ease;
}

.xp-bar-header__xp {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    color: var(--text-secondary);
    min-width: 70px;
    text-align: right;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: var(--border-retro);
    cursor: pointer;
    padding: 6px;
}

.burger__line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transition: transform 0.3s, opacity 0.3s;
}

.burger.is-open .burger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.burger.is-open .burger__line:nth-child(2) {
    opacity: 0;
}

.burger.is-open .burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

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

/* 6. Mobile Menu
   ========================================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.mobile-menu__inner {
    position: relative;
    z-index: 1;
    width: 85%;
    max-width: 340px;
    height: 100%;
    background: var(--bg-darker);
    border-right: var(--border-retro);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: var(--border-subtle);
}

.mobile-menu__close {
    width: 40px;
    height: 40px;
    background: none;
    border: var(--border-retro);
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    color: var(--text-secondary);
    padding: var(--space-md);
    border-bottom: 1px solid rgba(232, 168, 124, 0.15);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
    color: var(--accent);
    background: rgba(232, 168, 124, 0.08);
}

.mobile-menu__footer {
    padding: var(--space-lg);
    border-top: var(--border-subtle);
}

/* 7. Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.6rem;
    color: var(--text-dark);
    background: var(--primary);
    border: 3px solid var(--primary-dark);
    padding: var(--space-md) var(--space-xl);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
    box-shadow: var(--shadow-retro);
    line-height: 1.3;
    white-space: nowrap;
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #1a0f00;
    color: var(--text-dark);
    background: var(--accent);
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #1a0f00;
}

.btn--retro {
    /* already base style */
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--text-dark);
}

.btn--sm {
    font-size: 0.5rem;
    padding: var(--space-sm) var(--space-md);
}

.btn--lg {
    font-size: 0.65rem;
    padding: var(--space-md) var(--space-2xl);
}

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

/* Age Badge */
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    color: var(--accent);
    border: var(--border-retro);
    padding: var(--space-xs) var(--space-sm);
    min-width: 40px;
}

.age-badge--mobile {
    font-size: 0.5rem;
}

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

/* 9. Hero Section
   ========================================================================== */
.m-hero {
    position: relative;
    padding: var(--space-3xl) 0;
    text-align: center;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(244, 228, 186, 0.03) 3px,
            rgba(244, 228, 186, 0.03) 4px
        ),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-bottom: var(--border-retro);
    overflow: hidden;
}

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

.m-hero__pixel-frame {
    position: absolute;
    inset: 20px;
    border: 2px dashed rgba(232, 168, 124, 0.2);
    pointer-events: none;
}

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    text-shadow: 4px 4px 0 var(--secondary), 6px 6px 0 #1a0f00;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.m-hero__title--sm {
    font-size: 1.3rem;
}

.m-hero__title--404 {
    font-size: 4rem;
    text-shadow: 6px 6px 0 var(--secondary), 10px 10px 0 #1a0f00;
}

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

.m-hero__text {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-xl) auto;
    line-height: 1.7;
}

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

.m-hero--small .m-hero__pixel-frame {
    display: none;
}

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

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

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

@media (max-width: 768px) {
    .m-hero__title {
        font-size: 1.3rem;
    }
    .m-hero__title--sm {
        font-size: 1rem;
    }
    .m-hero__title--404 {
        font-size: 2.5rem;
    }
    .m-hero__row {
        flex-direction: column;
        text-align: center;
    }
}

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

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

.m-section--benefits {
    background: var(--bg-darker);
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
}

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

.m-section--faq {
    background: var(--bg-darker);
    border-top: var(--border-subtle);
}

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

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

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

.m-section__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 0 var(--secondary);
}

.m-section__subtitle {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-xl);
}

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

.m-section__empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 20px;
}

.m-page-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent);
    text-shadow: 3px 3px 0 var(--secondary);
    margin-bottom: var(--space-md);
}

.m-page-subtitle {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

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

.benefit-card {
    position: relative;
    background: var(--bg-card);
    border: var(--border-retro);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translate(-2px, -2px);
}

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

.benefit-card__title {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.benefit-card__text {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

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

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

@media (max-width: 768px) {
    .m-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Also used in games.php: */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 768px) {
    .games-grid--featured {
        max-width: 100%;
        gap: 12px;
    }
}

/* 14. Game Tile (used in games.js renderer)
   ========================================================================== */
.m-game-tile {
    position: relative;
    background: var(--bg-card);
    border: var(--border-retro);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.m-game-tile:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #1a0f00;
}

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

.m-game-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.m-game-tile__info {
    padding: var(--space-sm) var(--space-md);
    border-top: 2px solid rgba(232, 168, 124, 0.3);
}

.m-game-tile__title {
    font-family: var(--font-heading);
    font-size: 0.45rem;
    color: var(--accent);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-game-tile__provider {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
}

.m-game-tile__play-btn {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    z-index: 3;
    font-size: 0.45rem;
    padding: var(--space-xs) var(--space-sm);
    opacity: 0;
    transition: opacity 0.2s;
}

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

/* Game Card (used in home.php featured) */
.game-card {
    position: relative;
    background: var(--bg-card);
    border: var(--border-retro);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s;
}

.game-card:hover {
    transform: translate(-2px, -2px);
}

.game-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__info {
    padding: var(--space-sm) var(--space-md);
    border-top: 2px solid rgba(232, 168, 124, 0.3);
}

.game-card__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.45rem;
    color: var(--accent);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card__provider {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
}

.game-card__play-btn {
    margin: var(--space-sm) var(--space-md) var(--space-md);
    width: calc(100% - var(--space-xl));
}

/* 15. Game Tile Locked
   ========================================================================== */
.m-game-tile--locked .m-game-tile__image {
    filter: blur(4px) grayscale(50%);
    opacity: 0.6;
}

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

.m-game-tile__lock-icon {
    font-size: 32px;
    margin-bottom: var(--space-sm);
}

.m-game-tile__lock-text {
    font-family: var(--font-heading);
    font-size: 0.4rem;
    color: var(--primary);
    text-align: center;
    padding: 0 var(--space-sm);
}

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

.provider-section__title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: var(--border-subtle);
}

/* 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.45rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 2px solid rgba(232, 168, 124, 0.3);
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 2px 2px 0 #1a0f00;
}

.provider-filter__btn:hover,
.provider-filter__btn.is-active {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary-dark);
}

/* 18. Unlock Banner
   ========================================================================== */
.unlock-banner {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(232, 168, 124, 0.05) 10px,
            rgba(232, 168, 124, 0.05) 20px
        ),
        var(--bg-darker);
    border-top: var(--border-retro);
    border-bottom: var(--border-retro);
    padding: var(--space-lg) 0;
}

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

.unlock-banner__icon {
    font-size: 32px;
    flex-shrink: 0;
}

.unlock-banner__text {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .unlock-banner__inner {
        flex-direction: column;
        text-align: center;
    }
}

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

.faq-item {
    border: var(--border-retro);
    margin-bottom: var(--space-md);
    background: var(--bg-card);
    box-shadow: var(--shadow-retro);
}

.faq-item__question {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.55rem;
    cursor: pointer;
    text-align: left;
    line-height: 1.5;
    transition: color 0.2s;
}

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

.faq-item__question span {
    font-size: 0.5rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-item__answer {
    display: none;
    padding: 0 var(--space-lg) var(--space-lg);
    border-top: 1px solid rgba(232, 168, 124, 0.2);
}

.faq-item.is-open .faq-item__answer {
    display: block;
}

.faq-item__answer p {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item__answer a {
    color: var(--primary);
}

/* 20. Disclaimer
   ========================================================================== */
.disclaimer-box {
    background: var(--bg-card);
    border: 2px dashed rgba(232, 168, 124, 0.4);
    padding: var(--space-xl);
}

.disclaimer-box__text {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.disclaimer-box__text strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.5rem;
}

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

/* 21. Footer
   ========================================================================== */
.site-footer {
    background: var(--bg-darker);
    border-top: var(--border-retro);
    padding-top: var(--space-3xl);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: var(--border-subtle);
}

.site-footer__tagline {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-muted);
    margin-top: var(--space-md);
    line-height: 1.6;
}

.site-footer__age {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.site-footer__age-text {
    font-family: var(--font-heading);
    font-size: 0.4rem;
    color: var(--text-muted);
}

.site-footer__heading {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    color: var(--accent);
    margin-bottom: var(--space-lg);
}

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

.site-footer__link {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    padding: 2px 0;
}

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

@media (max-width: 992px) {
    .site-footer__top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .site-footer__top {
        grid-template-columns: 1fr;
    }
}

/* Compliance */
.site-footer__compliance {
    padding: var(--space-xl) 0;
    border-bottom: var(--border-subtle);
    text-align: center;
}

.site-footer__compliance-title {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.site-footer__compliance-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.footer__compliance-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}

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

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

.site-footer__disclaimer {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer Bottom */
.site-footer__bottom {
    padding: var(--space-lg) 0;
    text-align: center;
}

.site-footer__copyright {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.site-footer__copyright small {
    font-size: 16px;
    color: var(--text-muted);
    opacity: 0.7;
}

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

.modal {
    position: relative;
    background: var(--bg-darker);
    border: var(--border-pixel);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 8px 8px 0 #1a0f00;
}

.modal--game {
    max-width: 900px;
}

.modal--auth {
    max-width: 480px;
}

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

.modal__pixel-border {
    position: absolute;
    inset: 4px;
    border: 2px dashed rgba(232, 168, 124, 0.2);
    pointer-events: none;
    z-index: 0;
}

.modal__content {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl);
    text-align: center;
}

.modal__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: var(--border-subtle);
}

.modal__body {
    position: relative;
    z-index: 1;
    padding: var(--space-xl);
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0;
}

.modal__close {
    width: 40px;
    height: 40px;
    background: none;
    border: var(--border-retro);
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

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

.modal__icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
    display: block;
}

.modal__icon--bonus {
    font-size: 56px;
}

.modal__text {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.modal__sub {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

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

.modal__legal {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 0;
}

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

.modal__iframe {
    width: 100%;
    height: 500px;
    border: 2px solid rgba(232, 168, 124, 0.3);
    background: #000;
}

@media (max-width: 768px) {
    .modal__iframe {
        height: 350px;
    }
}

/* 23. Cookie Consent
   ========================================================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1800;
    background: var(--bg-darker);
    border-top: var(--border-retro);
    padding: var(--space-lg) 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

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

.cookie-consent__text p {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.cookie-consent__text a {
    color: var(--primary);
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* 24. Auth Forms
   ========================================================================== */
.auth-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.auth-tabs__btn {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 0.5rem;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 2px solid rgba(232, 168, 124, 0.3);
    padding: var(--space-md);
    cursor: pointer;
    transition: all 0.2s;
}

.auth-tabs__btn.is-active {
    color: var(--text-dark);
    background: var(--primary);
    border-color: var(--primary-dark);
}

.auth-form__group {
    margin-bottom: var(--space-lg);
    text-align: left;
}

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

.auth-form__input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-primary);
    background: var(--bg-card);
    border: var(--border-retro);
    padding: var(--space-md);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

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

.auth-form__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(244, 228, 186, 0.2);
}

.auth-form__error {
    font-family: var(--font-heading);
    font-size: 0.45rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-md);
}

.auth-form__footer {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-lg);
}

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

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

.account-card {
    background: var(--bg-card);
    border: var(--border-retro);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.account-card__header {
    padding: var(--space-lg) var(--space-xl);
    border-bottom: var(--border-subtle);
    background: rgba(232, 168, 124, 0.05);
}

.account-card__title {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--accent);
    margin-bottom: 0;
}

.account-card .auth-form {
    padding: var(--space-xl);
}

@media (max-width: 768px) {
    .account-forms-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Register */
.why-register {
    text-align: center;
}

.why-register__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: var(--space-xl);
    text-shadow: 2px 2px 0 var(--secondary);
}

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

.why-register__item {
    background: var(--bg-card);
    border: var(--border-retro);
    padding: var(--space-xl);
    box-shadow: var(--shadow-retro);
}

.why-register__icon {
    font-size: 36px;
    display: block;
    margin-bottom: var(--space-md);
}

.why-register__item h3 {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.why-register__item p {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .why-register__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-register__grid {
        grid-template-columns: 1fr;
    }
}

/* 26. Profile
   ========================================================================== */
.account-profile {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: var(--bg-card);
    border: var(--border-retro);
    box-shadow: var(--shadow-card);
}

.level-badge {
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: var(--border-pixel);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: var(--shadow-retro);
}

.level-badge__number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1;
}

.level-badge__label {
    font-family: var(--font-heading);
    font-size: 0.35rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.account-profile__name {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 2px;
}

.account-profile__email {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .account-profile {
        flex-direction: column;
        text-align: center;
    }
}

/* 27. XP Progress
   ========================================================================== */
.xp-progress {
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: var(--bg-card);
    border: var(--border-retro);
    box-shadow: var(--shadow-retro);
}

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

.xp-progress__label {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    color: var(--accent);
}

.xp-progress__values {
    font-family: var(--font-heading);
    font-size: 0.45rem;
    color: var(--primary);
}

.xp-progress__track {
    height: 16px;
    background: var(--bg-darker);
    border: 2px solid var(--primary);
    overflow: hidden;
}

.xp-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.8s ease;
    position: relative;
}

.xp-progress__bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 4px,
        rgba(0,0,0,0.15) 4px,
        rgba(0,0,0,0.15) 8px
    );
}

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

.account-stats__item {
    background: var(--bg-card);
    border: var(--border-retro);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-retro);
}

.account-stats__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.account-stats__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.4rem;
    color: var(--text-muted);
}

.account-actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .account-stats {
        grid-template-columns: 1fr;
    }
}

/* Daily Bonus */
.daily-bonus__amount {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    text-shadow: 3px 3px 0 var(--secondary);
    margin-bottom: var(--space-md);
}

.daily-bonus__streak {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* 29. Content Pages
   ========================================================================== */
.m-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
}

.m-breadcrumb__link {
    font-family: var(--font-heading);
    font-size: 0.4rem;
    color: var(--text-muted);
    text-decoration: none;
}

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

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

.m-breadcrumb__current {
    font-family: var(--font-heading);
    font-size: 0.4rem;
    color: var(--primary);
}

.m-content-card {
    background: var(--bg-card);
    border: var(--border-retro);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-xl);
}

.m-content-card h2 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--accent);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(232, 168, 124, 0.2);
}

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

.m-content-card h3 {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    color: var(--primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.m-content-card p {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.m-content-card ul,
.m-content-card ol {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.m-content-card li {
    margin-bottom: var(--space-xs);
}

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

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

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

.m-content-card__meta {
    font-family: var(--font-heading);
    font-size: 0.45rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.m-content-card__cta {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 2px dashed rgba(232, 168, 124, 0.3);
}

/* Content Table */
.m-content-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-xl);
    font-family: var(--font-body);
    font-size: 20px;
}

.m-content-table th {
    font-family: var(--font-heading);
    font-size: 0.4rem;
    color: var(--accent);
    background: var(--bg-darker);
    padding: var(--space-md);
    text-align: left;
    border: 2px solid rgba(232, 168, 124, 0.3);
}

.m-content-table td {
    padding: var(--space-md);
    color: var(--text-secondary);
    border: 2px solid rgba(232, 168, 124, 0.15);
    vertical-align: top;
}

.m-content-table tr:hover td {
    background: rgba(232, 168, 124, 0.05);
}

/* Contact Info */
.contact-info {
    background: var(--bg-darker);
    border: var(--border-subtle);
    padding: var(--space-lg);
    margin-top: var(--space-md);
}

.contact-info p {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

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

/* Responsible Gaming */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.fact-card {
    background: var(--bg-darker);
    border: var(--border-retro);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-retro);
}

.fact-card__icon {
    font-size: 32px;
    display: block;
    margin-bottom: var(--space-md);
}

.fact-card h3 {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.fact-card p {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .facts-grid {
        grid-template-columns: 1fr;
    }
}

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

.help-resource {
    background: var(--bg-darker);
    border: var(--border-retro);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-retro);
}

.help-resource h3 {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.help-resource p {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
    .help-resources {
        grid-template-columns: 1fr;
    }
}

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

.article-card {
    position: relative;
    background: var(--bg-card);
    border: var(--border-retro);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.article-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #1a0f00;
}

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

.article-card__category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.35rem;
    color: var(--text-dark);
    background: var(--primary);
    padding: 2px 8px;
    margin-bottom: var(--space-md);
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

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

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

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

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Reviews Section */
.blog-reviews-section {
    margin-top: var(--space-xl);
}

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

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Provider Reviews Grid (on /reviews page) */
.provider-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.provider-review-card {
    position: relative;
    background: var(--bg-card);
    border: var(--border-retro);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
}

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

.provider-review-card__name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0;
}

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

.rating-text {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    color: var(--text-secondary);
}

.provider-review-card__desc {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.provider-review-card__stats {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.provider-review-card__stat {
    font-family: var(--font-heading);
    font-size: 0.4rem;
    color: var(--text-muted);
}

/* 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__meta {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.review-hero__meta span {
    font-family: var(--font-heading);
    font-size: 0.45rem;
    color: var(--text-muted);
}

/* 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: 2px solid rgba(232, 168, 124, 0.3);
    overflow: hidden;
    text-align: center;
}

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

.review-game-tile__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.35rem;
    color: var(--text-secondary);
    padding: var(--space-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .review-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 32. Utility Classes
   ========================================================================== */
.stars {
    color: #ffc107;
}

.card {
    position: relative;
}

.offer-card {
    position: relative;
}

.games-loading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    color: var(--text-muted);
    padding: var(--space-2xl) 0;
}

.games-loading[style*="display: none"],
.games-loading[style*="display:none"] {
    display: none;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border: 2px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--text-dark);
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu,
    .modal-overlay,
    .cookie-consent,
    .burger {
        display: none !important;
    }
    
    .m-main {
        margin-top: 0;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}