/* ============================================
   SpaceMar — Social Casino
   Stylistic: #15 Геймификация
   Palette: Purple #6c5ce7, Yellow #ffd93d
   Fonts: Fredoka One (headings), Quicksand (body)
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors */
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --primary-light: #a29bfe;
    --secondary: #ffd93d;
    --secondary-dark: #f0c929;
    --accent: #ff6b6b;
    --accent-dark: #ee5a5a;
    --success: #00b894;
    --info: #74b9ff;

    /* Backgrounds */
    --bg-dark: #1a1033;
    --bg-darker: #120b24;
    --bg-card: #241a42;
    --bg-card-hover: #2e2252;
    --bg-input: #1e1538;
    --bg-hero: linear-gradient(135deg, #1a1033 0%, #2d1b69 50%, #1a1033 100%);

    /* Text */
    --text-primary: #f0eeff;
    --text-secondary: #c4b8e8;
    --text-muted: #8a7fad;
    --text-on-primary: #ffffff;
    --text-on-secondary: #1a1033;

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

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

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

    /* Fonts */
    --font-body: 'Quicksand', sans-serif;
    --font-heading: 'Fredoka One', cursive;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(108, 92, 231, 0.15);
    --shadow-md: 0 4px 20px rgba(108, 92, 231, 0.2);
    --shadow-lg: 0 8px 40px rgba(108, 92, 231, 0.25);
    --shadow-glow: 0 0 20px rgba(108, 92, 231, 0.4);
    --shadow-gold: 0 0 20px rgba(255, 217, 61, 0.3);

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

/* 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-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

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

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

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

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

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

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

/* 5. Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(26, 16, 51, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(108, 92, 231, 0.3);
    z-index: 1000;
    transition: background var(--transition-normal);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
    text-shadow: 0 0 10px rgba(255, 217, 61, 0.3);
}

.logo:hover {
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(255, 217, 61, 0.6);
}

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

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

.site-header__link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.site-header__link:hover,
.site-header__link.is-active {
    color: var(--secondary);
    background: rgba(108, 92, 231, 0.15);
}

.site-header__link.is-active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

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

/* 6. Mobile Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.burger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

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

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

.mobile-menu__nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--bg-darker);
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
}

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

.mobile-menu__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 1.5rem;
    color: var(--text-muted);
    padding: var(--space-sm);
    transition: color var(--transition-fast);
}

.mobile-menu__close:hover {
    color: var(--text-primary);
}

.mobile-menu__link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-secondary);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
    color: var(--secondary);
    background: rgba(108, 92, 231, 0.15);
}

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

.btn--primary {
    background: var(--primary);
    color: var(--text-on-primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.5);
    color: var(--text-on-primary);
}

.btn--accent {
    background: var(--secondary);
    color: var(--text-on-secondary);
    border-color: var(--secondary);
    box-shadow: var(--shadow-gold);
}

.btn--accent:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 217, 61, 0.5);
    color: var(--text-on-secondary);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(108, 92, 231, 0.5);
}

.btn--outline:hover {
    background: rgba(108, 92, 231, 0.15);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn--lg {
    font-size: 1.05rem;
    padding: 14px 32px;
}

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

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

.btn--account {
    background: rgba(108, 92, 231, 0.2);
    color: var(--text-primary);
    border: 2px solid rgba(108, 92, 231, 0.4);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
}

.btn--account:hover {
    background: rgba(108, 92, 231, 0.35);
    border-color: var(--primary);
    color: var(--text-primary);
}

.btn--account__icon {
    font-size: 1.1rem;
}

.btn--account__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 {
    position: relative;
    background: var(--bg-hero);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    text-align: center;
}

.m-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(108, 92, 231, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.m-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    pointer-events: none;
}

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

.m-hero__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--secondary);
    background: rgba(255, 217, 61, 0.1);
    border: 1px solid rgba(255, 217, 61, 0.3);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.5px;
}

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 30px rgba(108, 92, 231, 0.3);
}

.m-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
}

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

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

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

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

.m-hero__stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary);
    text-shadow: var(--shadow-gold);
}

.m-hero__stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Small (Games page) */
.m-hero--small {
    padding: var(--space-2xl) 0 var(--space-xl);
}

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

.m-hero__row {
    position: relative;
    z-index: 1;
    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;
}

/* Hero 404 */
.m-hero--404 {
    padding: var(--space-3xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.m-hero__404-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    animation: floatBounce 3s ease-in-out infinite;
}

.m-hero__title--404 {
    font-size: 6rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* 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;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-md);
}

.m-section__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

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

.m-section__empty {
    text-align: center;
    color: var(--text-muted);
    padding: var(--space-2xl);
}

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

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

.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);
}

/* Page title */
.m-page-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.benefit-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.4);
    box-shadow: var(--shadow-lg);
}

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

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

.benefit-card__xp {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--secondary);
    background: rgba(255, 217, 61, 0.1);
    border: 1px solid rgba(255, 217, 61, 0.3);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

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

.benefit-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.benefit-card__progress {
    width: 100%;
    height: 6px;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.benefit-card__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 1s ease;
}

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

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

/* 14. Game Tile (via JS on /games) */
.game-tile {
    position: relative;
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.game-tile:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

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

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

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

.game-tile__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(108, 92, 231, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.game-tile__play-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-on-secondary);
    box-shadow: var(--shadow-gold);
}

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

.game-tile__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-tile__provider {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

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

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

.game-tile--locked:hover {
    transform: none;
    border-color: rgba(108, 92, 231, 0.15);
    box-shadow: none;
}

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

.game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 11, 36, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    z-index: 2;
}

.game-tile__lock-icon {
    font-size: 2rem;
}

.game-tile__lock-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--secondary);
    text-align: center;
    padding: 0 var(--space-sm);
}

/* 16. Provider Section (games page headings) */
.provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: var(--space-2xl) 0 var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(108, 92, 231, 0.2);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.provider-section__title::before {
    content: '🎮';
}

.games-count {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: var(--space-xl);
}

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

.filter-btn {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.filter-btn.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-on-primary);
    box-shadow: var(--shadow-glow);
}

/* 18. Unlock Banner */
.unlock-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(255, 217, 61, 0.1) 100%);
    border: 2px solid rgba(108, 92, 231, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
}

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

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

.unlock-banner__text strong {
    color: var(--secondary);
}

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

/* 19. FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.is-open {
    border-color: rgba(108, 92, 231, 0.4);
}

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

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

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

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

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

.faq-item__answer p {
    margin: 0;
}

/* 20. Disclaimer */
.disclaimer-box {
    background: rgba(255, 107, 107, 0.08);
    border: 2px solid rgba(255, 107, 107, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
}

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

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

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

/* 21. Footer */
.site-footer {
    background: var(--bg-darker);
    border-top: 2px solid rgba(108, 92, 231, 0.2);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

.site-footer__tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: var(--space-md) 0;
    line-height: 1.6;
}

.site-footer__disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.site-footer__heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

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

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

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

/* Footer Compliance */
.site-footer__compliance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(108, 92, 231, 0.15);
    border-bottom: 1px solid rgba(108, 92, 231, 0.15);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

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

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

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

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

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

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.site-footer__age-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 200px;
}

/* Footer Bottom */
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.site-footer__copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.site-footer__copy small {
    opacity: 0.7;
}

.site-footer__legal-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 500px;
    text-align: right;
    line-height: 1.5;
    opacity: 0.7;
}

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

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

.modal__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.modal__box {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.3s ease;
}

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

.modal__box--game {
    max-width: 960px;
    padding: 0;
    text-align: left;
    overflow: hidden;
}

.modal__box--auth {
    max-width: 440px;
    text-align: left;
}

.modal__box--bonus {
    max-width: 400px;
}

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

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

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

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

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

.modal__decline {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

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

.modal__compliance {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-lg);
    line-height: 1.5;
}

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

/* Game Modal */
.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-darker);
    border-bottom: 2px solid rgba(108, 92, 231, 0.2);
}

.modal__header .modal__title {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.modal__close {
    font-size: 1.8rem;
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.modal__close:hover {
    color: var(--text-primary);
    background: rgba(108, 92, 231, 0.2);
}

.modal__game-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.modal__game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 23. Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid rgba(108, 92, 231, 0.3);
    padding: var(--space-lg);
    z-index: 1500;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
    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__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-consent__text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-consent__link {
    color: var(--primary-light);
    text-decoration: underline;
}

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

/* 24. Auth Forms */
.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: var(--space-xl);
    background: var(--bg-input);
    border-radius: var(--radius-full);
    padding: 4px;
}

.auth-tabs__btn {
    flex: 1;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    text-align: center;
    transition: all var(--transition-fast);
}

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

.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.auth-form__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.auth-form__input {
    width: 100%;
    padding: 12px var(--space-md);
    background: var(--bg-input);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
    outline: none;
}

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

.auth-form__input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.auth-form__error {
    color: var(--accent);
    font-size: 0.85rem;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 107, 107, 0.1);
    border-radius: var(--radius-sm);
}

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

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

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

.account-card {
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.account-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.account-card__icon {
    font-size: 1.8rem;
}

.account-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
}

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

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

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

.why-register__item {
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-lg);
    transition: all var(--transition-normal);
}

.why-register__item:hover {
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-3px);
}

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

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

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

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

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

.profile-header__name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

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

.profile-header__rank {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--secondary);
    background: rgba(255, 217, 61, 0.1);
    border: 1px solid rgba(255, 217, 61, 0.3);
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

/* 27. XP Progress */
.xp-section {
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

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

.xp-section__label {
    font-weight: 700;
    color: var(--text-primary);
}

.xp-section__values {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.1rem;
}

.xp-progress {
    width: 100%;
    height: 16px;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
    position: relative;
}

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

.xp-progress__bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px 8px 0 0;
}

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

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

.stat-card {
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-3px);
}

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

.stat-card__value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

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

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

/* Daily Bonus */
.daily-bonus__xp {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary);
    margin: var(--space-lg) 0;
    text-shadow: var(--shadow-gold);
}

.daily-bonus__streak {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* 29. Content Pages */
.m-content-card {
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

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

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

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

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

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

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

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

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

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

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

.m-content-card__intro {
    font-size: 1.1rem;
    color: var(--text-primary);
    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(108, 92, 231, 0.15);
}

/* Info grid (responsible gaming) */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.info-item {
    display: flex;
    gap: var(--space-md);
    background: rgba(108, 92, 231, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.info-item__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.9rem;
    margin: 0;
}

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

.review-hero__rating {
    margin-bottom: var(--space-sm);
}

.review-hero__meta {
    font-size: 0.95rem;
    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-radius: var(--radius-sm);
    overflow: hidden;
    text-align: center;
}

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

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

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

.article-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.article-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

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

.article-card__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(255, 217, 61, 0.1);
    border: 1px solid rgba(255, 217, 61, 0.3);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

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

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

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

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

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

.review-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-normal);
}

.review-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card__header {
    margin-bottom: var(--space-md);
}

.review-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.review-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.review-card__stat {
    flex: 1;
    text-align: center;
    background: rgba(108, 92, 231, 0.08);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
}

.review-card__stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--secondary);
}

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

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

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

.hidden {
    display: none !important;
}

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

/* Game Card (featured on home) */
.game-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid rgba(108, 92, 231, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.game-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.game-card__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(108, 92, 231, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

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

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

.game-card__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card__provider {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

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

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

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

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

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

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

    .burger {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

    .m-hero__subtitle {
        font-size: 1.2rem;
    }

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

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

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

    .m-hero__col--actions {
        justify-content: center;
    }

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

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

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

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

    .site-footer__compliance {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__bottom {
        flex-direction: column;
    }

    .site-footer__legal-note {
        text-align: left;
    }

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

    .filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: var(--space-sm);
    }

    .filter-bar::-webkit-scrollbar {
        display: none;
    }

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

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

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

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

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

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

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

    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent__text {
        flex-direction: column;
    }

    .cookie-consent__actions {
        justify-content: center;
    }

    .btn--account__text {
        display: none;
    }

    .m-hero__stats {
        gap: var(--space-xl);
    }

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

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

    .m-hero__title {
        font-size: 2rem;
    }

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

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

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

    .m-hero__stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .profile-header__badge {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

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

    .modal__box {
        padding: var(--space-xl) var(--space-lg);
    }

    .daily-bonus__xp {
        font-size: 2rem;
    }

    .m-hero__col--actions {
        flex-direction: column;
        width: 100%;
    }

    .m-hero__col--actions .btn {
        width: 100%;
    }
}