/* ============================================
   Marine Wallon — Лучник (Archer) Style
   Fonts: Bitter (heading) + Karla (body)
   Palette: Forest Green, Black, Gold accents
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors — Archer palette */
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary: #1a1a1a;
    --accent: #c9a227;
    --accent-light: #e2c04f;

    /* Backgrounds */
    --bg-dark: #0d1a0f;
    --bg-darker: #071009;
    --bg-card: #142318;
    --bg-card-hover: #1a2e20;
    --bg-section: #0f1f13;

    /* Text */
    --text-primary: #e8f0e9;
    --text-secondary: #a8bfab;
    --text-muted: #6d8a71;
    --text-heading: #f0f7f1;

    /* 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 — Bitter + Karla */
    --font-body: 'Karla', sans-serif;
    --font-heading: 'Bitter', serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(46, 125, 50, 0.3);

    /* Transitions */
    --transition-fast: 0.2s 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.7;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

h1 { font-size: 2.5rem; margin-bottom: var(--space-lg); }
h2 { font-size: 2rem; margin-bottom: var(--space-lg); margin-top: var(--space-2xl); }
h3 { font-size: 1.5rem; margin-bottom: var(--space-md); }
h4 { font-size: 1.25rem; margin-bottom: var(--space-md); }

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

strong {
    color: var(--text-primary);
}

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

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

/* 5. Header */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(13, 26, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(46, 125, 50, 0.2);
    z-index: 1000;
    transition: background var(--transition-base);
}

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

.m-header__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

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

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

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

.m-header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

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

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

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

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

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

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

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

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

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

/* 6. Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-darker);
    border-left: 1px solid rgba(46, 125, 50, 0.15);
    z-index: 1500;
    transition: right var(--transition-base);
    overflow-y: auto;
}

.mobile-menu.is-open {
    right: 0;
}

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

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(46, 125, 50, 0.15);
}

.mobile-menu__close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
    padding: var(--space-sm);
    line-height: 1;
}

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

.mobile-menu__link {
    display: block;
    padding: var(--space-md);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
    color: var(--primary-light);
    background: rgba(46, 125, 50, 0.1);
}

.mobile-menu__actions {
    padding-top: var(--space-md);
}

.mobile-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1499;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu__overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

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

.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

.btn--primary:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.4);
    transform: translateY(-1px);
}

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

.btn--secondary:hover {
    background: var(--primary);
    color: #fff;
}

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

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

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

.btn__icon {
    font-size: 1.1em;
}

.btn__text {
    display: inline;
}

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

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

.m-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 160%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(46, 125, 50, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.m-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.m-hero__content--row {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.m-hero__text-block {
    flex: 1;
}

.m-hero__arrow-accent {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: inline-block;
    animation: arrowFloat 3s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

.m-hero__title--404 {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.m-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

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

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

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

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

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

.m-hero--404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.m-hero__404-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* 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(46, 125, 50, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.benefit-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(46, 125, 50, 0.3);
}

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

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

.benefit-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    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 {
    margin-bottom: var(--space-2xl);
}

.featured-provider__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

/* 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);
    }
}

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

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

/* Alternate class used in home.php */
.games-grid {
    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;
}

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

/* 14. Game Tile */
.m-game-tile {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
}

.m-game-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(46, 125, 50, 0.3);
}

.m-game-tile__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-darker);
}

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

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

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

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

.m-game-tile__play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.4);
}

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

.m-game-tile__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.m-game-tile__provider {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Game Card (home.php featured) */
.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(46, 125, 50, 0.3);
}

.game-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-darker);
}

.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__overlay-play {
    position: absolute;
    inset: 0;
    background: rgba(13, 26, 15, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.game-card__play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

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

.game-card__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

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

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

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

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

.m-game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 9, 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-sm);
}

.m-game-tile__lock-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0 var(--space-md);
}

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

.provider-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(46, 125, 50, 0.15);
}

.provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.provider-section__count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.provider-filter__btn {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(46, 125, 50, 0.15);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.provider-filter__btn:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.provider-filter__btn--active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.provider-filter__btn--active:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* 18. Unlock Banner */
.unlock-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15) 0%, rgba(201, 162, 39, 0.08) 100%);
    border: 1px solid rgba(46, 125, 50, 0.25);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
}

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

.unlock-banner__text {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(46, 125, 50, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item--open {
    border-color: rgba(46, 125, 50, 0.3);
}

.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-heading);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: var(--space-md);
    transition: color var(--transition-fast);
}

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

.faq-item__arrow {
    font-size: 0.8rem;
    transition: transform var(--transition-base);
    flex-shrink: 0;
    color: var(--primary);
}

.faq-item--open .faq-item__arrow {
    transform: rotate(180deg);
}

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

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

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

/* 20. Disclaimer */
.disclaimer-box {
    background: rgba(201, 162, 39, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

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

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

/* 21. Footer */
.m-footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(46, 125, 50, 0.12);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

.m-footer__logo {
    text-decoration: none;
    display: inline-block;
    margin-bottom: var(--space-md);
}

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

.m-footer__nav-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-lg);
}

.m-footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.m-footer__nav-list li {
    margin-bottom: var(--space-sm);
}

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

.m-footer__nav-link:hover {
    color: var(--primary-light);
}

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

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

.footer__compliance-logo {
    height: 36px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

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

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

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

.m-footer__bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(46, 125, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.m-footer__copyright {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

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

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

@media (max-width: 480px) {
    .m-footer__content {
        grid-template-columns: 1fr;
    }
    .m-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

.age-modal__content {
    background: var(--bg-card);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 440px;
    width: 100%;
    text-align: center;
}

.age-modal__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

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

.age-modal__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
}

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

/* Game Modal */
.game-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--space-lg);
}

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

.game-modal__content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.game-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(46, 125, 50, 0.12);
}

.game-modal__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-modal__close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color var(--transition-fast);
}

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

.game-modal__body {
    flex: 1;
    min-height: 0;
}

.game-modal__iframe {
    width: 100%;
    height: 70vh;
    border: none;
    display: block;
}

/* 23. Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(46, 125, 50, 0.2);
    padding: var(--space-lg) var(--space-xl);
    z-index: 2500;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-consent__text {
    flex: 1;
}

.cookie-consent__text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-heading);
    margin-bottom: var(--space-xs);
}

.cookie-consent__text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

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

@media (max-width: 768px) {
    .cookie-consent__content {
        flex-direction: column;
    }
    .cookie-consent__actions {
        width: 100%;
        justify-content: stretch;
    }
    .cookie-consent__actions .btn {
        flex: 1;
    }
}

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

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

.auth-modal__content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 440px;
    width: 100%;
    z-index: 1;
}

.auth-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

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

.auth-modal__tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(46, 125, 50, 0.12);
    padding-bottom: var(--space-md);
}

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

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

.auth-modal__tab--active {
    color: var(--primary-light);
    background: rgba(46, 125, 50, 0.1);
}

.auth-modal__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-heading);
    text-align: center;
    margin-bottom: var(--space-lg);
}

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

.auth-modal__switch a {
    color: var(--primary-light);
    font-weight: 600;
}

.auth-modal__form {
    /* no extra styles needed */
}

/* Form Elements */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group--checkbox {
    margin-bottom: var(--space-lg);
}

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

.form-input {
    width: 100%;
    padding: 12px var(--space-md);
    background: var(--bg-darker);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox__mark {
    display: none;
}

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

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

.account-card {
    background: var(--bg-card);
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.account-card__header {
    padding: var(--space-xl);
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
    text-align: center;
}

.account-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
}

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

.account-card__body {
    padding: var(--space-xl);
}

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

.why-register__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-bottom: var(--space-xl);
}

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

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

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

.why-register__item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
}

.why-register__item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    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-dashboard {
    max-width: 600px;
    margin: 0 auto;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.profile-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}

.profile-card__level {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.profile-card__info {
    flex: 1;
}

.profile-card__name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.profile-card__email {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.profile-card__actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

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

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

.xp-progress__label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.xp-progress__values {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.xp-progress__bar {
    height: 10px;
    background: var(--bg-darker);
    border-radius: 5px;
    overflow: hidden;
}

.xp-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 5px;
    transition: width var(--transition-slow);
}

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

.profile-stats__item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-darker);
    border-radius: var(--radius-md);
}

.profile-stats__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: var(--space-xs);
}

.profile-stats__label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Daily Bonus Modal */
.daily-bonus-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--space-lg);
}

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

.daily-bonus-modal__content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 400px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.daily-bonus-modal__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.daily-bonus-modal__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.daily-bonus-modal__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.daily-bonus-modal__xp {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: var(--space-lg);
}

/* 29. Content Pages */
.m-content-card {
    background: var(--bg-card);
    border: 1px solid rgba(46, 125, 50, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.m-content-card h2 {
    color: var(--primary-light);
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
    padding-bottom: var(--space-md);
}

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

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

.m-content-card li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.m-content-card__intro {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    border-left: 3px solid var(--primary);
    padding-left: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.m-content-card__cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.m-page-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-heading);
    margin-bottom: var(--space-xl);
    line-height: 1.25;
}

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

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

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

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

.m-breadcrumb__current {
    color: var(--primary-light);
    font-size: 0.88rem;
    font-weight: 500;
}

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

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

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

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

.m-content-table th,
.m-content-table td {
    padding: var(--space-md);
    text-align: left;
    border: 1px solid rgba(46, 125, 50, 0.12);
}

.m-content-table th {
    background: var(--bg-darker);
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
}

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

.m-content-table tr:hover td {
    background: rgba(46, 125, 50, 0.05);
}

/* Fact Cards (responsible page) */
.fact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.fact-card {
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(46, 125, 50, 0.08);
}

.fact-card__icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.fact-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
}

.fact-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

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

/* Age Restriction Box */
.age-restriction-box {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin: var(--space-lg) 0;
}

.age-restriction-box__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid var(--accent);
}

.age-restriction-box__text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

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

.help-resource {
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border: 1px solid rgba(46, 125, 50, 0.08);
}

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

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

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

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

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

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

.article-card {
    background: var(--bg-card);
    border: 1px solid rgba(46, 125, 50, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(46, 125, 50, 0.3);
}

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

.article-card__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(201, 162, 39, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.article-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

.article-card__read-more {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-light);
    transition: color var(--transition-fast);
}

.article-card:hover .article-card__read-more {
    color: var(--accent);
}

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

/* Blog Reviews */
.blog-reviews {
    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 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

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

.provider-review-card {
    background: var(--bg-card);
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.provider-review-card__header {
    padding: var(--space-xl);
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
    text-align: center;
}

.provider-review-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
}

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

.stars {
    color: #ffc107;
}

.provider-review-card__score {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.provider-review-card__body {
    padding: var(--space-xl);
    flex: 1;
}

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

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

.provider-review-card__stat {
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
}

.provider-review-card__stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.provider-review-card__stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.provider-review-card__footer {
    padding: var(--space-lg) var(--space-xl);
    border-top: 1px solid rgba(46, 125, 50, 0.08);
    text-align: center;
}

/* Review Hero (in review pages) */
.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: 700;
    color: var(--accent);
}

.review-hero__meta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.review-hero__tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-secondary);
}

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

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

.review-game-tile {
    text-align: center;
}

.review-game-tile img {
    width: 100%;
    border-radius: var(--radius-sm);
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: var(--space-sm);
}

.review-game-tile__title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
}

/* 32. Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}

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

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

@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .m-hero__title { font-size: 2.2rem; }
    .m-hero__content--row {
        flex-direction: column;
        text-align: center;
    }
    .m-hero__auth-buttons {
        justify-content: center;
        margin-top: var(--space-lg);
    }

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

    #accountBtn .btn__text {
        display: none;
    }
}

@media (max-width: 768px) {
    .m-hero__title { font-size: 1.8rem; }
    .m-hero__title--404 { font-size: 4rem; }
    .m-hero__subtitle { font-size: 1.1rem; }
    .m-hero { padding: var(--space-2xl) 0; }
    .m-hero--small { padding: var(--space-xl) 0; }

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

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

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

    .profile-card__actions {
        flex-direction: column;
    }

    .game-modal__iframe {
        height: 55vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }

    .m-hero__title { font-size: 1.5rem; }
    .m-hero__title--404 { font-size: 3rem; }
    .m-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .m-hero__auth-buttons {
        flex-direction: column;
        width: 100%;
    }
    .m-hero__auth-buttons .btn {
        width: 100%;
    }

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

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

    .age-modal__buttons {
        flex-direction: column;
    }
    .age-modal__buttons .btn {
        width: 100%;
    }

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

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

    .profile-stats__value {
        font-size: 1.2rem;
    }
}