/* ============================================
   CELTIC STAR - Social Casino
   Style: #8 Женщина-воин
   Palette: Red, Gold, Blue
   Fonts: Cormorant Garamond / Lato
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors */
    --primary: #b8860b;
    --primary-dark: #8b6508;
    --secondary: #8b0000;
    --accent: #1a3a6b;
    --accent-light: #2a5298;

    /* Backgrounds */
    --bg-dark: #0d0a14;
    --bg-darker: #08060e;
    --bg-card: #1a1525;
    --bg-card-hover: #231d32;
    --bg-section: #120e1c;

    /* Text */
    --text-primary: #f0e6d3;
    --text-secondary: #c4b69c;
    --text-muted: #8a7e6b;

    /* Accent colors */
    --gold: #d4a017;
    --gold-light: #f0c040;
    --red: #c41e3a;
    --red-dark: #8b0000;
    --blue: #1a3a6b;
    --blue-light: #2a5298;

    /* 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 */
    --font-body: 'Lato', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
}

/* 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);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

ul, ol {
    list-style-position: inside;
}

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

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

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

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

/* 5. Header */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(13, 10, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    z-index: 1000;
    transition: background 0.3s ease;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.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: 700;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.m-header__account-btn {
    background: linear-gradient(135deg, var(--gold), var(--primary-dark));
    color: var(--bg-dark);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-header__account-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.m-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.m-header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.m-mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.m-mobile-menu__close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.m-mobile-menu__close:hover {
    color: var(--gold);
}

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

.m-mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
    transition: color 0.3s ease;
}

.m-mobile-menu__link:hover,
.m-mobile-menu__link.is-active {
    color: var(--gold);
}

/* 7. Buttons */
.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.m-btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--primary-dark));
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.25);
}

.m-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 160, 23, 0.4);
    color: var(--bg-dark);
}

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

.m-btn--secondary:hover {
    background: rgba(212, 160, 23, 0.1);
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.m-btn--lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.m-btn--sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--primary-dark));
    color: var(--bg-dark);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 160, 23, 0.4);
}

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

.btn--secondary:hover {
    background: rgba(212, 160, 23, 0.1);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

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

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

.m-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(196, 30, 58, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(212, 160, 23, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(26, 58, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.m-hero__content {
    max-width: 700px;
    margin: 0 auto;
}

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.m-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.m-hero__decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.m-hero__shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.05);
    opacity: 0.3;
}

.m-hero__shield::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(196, 30, 58, 0.05);
}

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

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

.m-hero--games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

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

.m-hero--404 {
    min-height: 60vh;
}

.m-hero__title--404 {
    font-size: 8rem;
    line-height: 1;
    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: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

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

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

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

.m-section--games {
    background: var(--bg-dark);
    padding-top: var(--space-xl);
}

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

.m-section--reviews-cta {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(212, 160, 23, 0.1);
}

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

.m-benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.m-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 160, 23, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

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

.m-benefit-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--gold);
}

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

/* 12. Featured Providers */
.m-featured-provider {
    margin-bottom: var(--space-2xl);
}

.m-featured-provider__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Game Card (featured) */
.game-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.2);
}

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

.game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.game-card__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 10, 20, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.game-card__play-btn {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

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

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

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

/* 14. Game Tile */
.m-game-tile {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-game-tile:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.15);
}

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

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

.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, 10, 20, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.m-game-tile__play-btn {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

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

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

.m-game-tile__provider {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 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 {
    transform: none;
    border-color: rgba(212, 160, 23, 0.1);
    box-shadow: none;
}

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

.m-game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 10, 20, 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-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

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

.m-provider-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.m-provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.m-filter-btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.m-filter-btn.is-active {
    background: linear-gradient(135deg, var(--gold), var(--primary-dark));
    color: var(--bg-dark);
    border-color: var(--gold);
}

/* 18. Unlock Banner */
.m-unlock-banner {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(212, 160, 23, 0.1));
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

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

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

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

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

.m-faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.m-faq-item:hover {
    border-color: rgba(212, 160, 23, 0.2);
}

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

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

.m-faq-item__icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.m-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.m-faq-item.is-open .m-faq-item__answer {
    max-height: 500px;
}

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

/* 20. Disclaimer */
.m-disclaimer {
    background: rgba(196, 30, 58, 0.08);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

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

.m-disclaimer strong {
    color: var(--red);
}

.m-disclaimer a {
    color: var(--gold);
    text-decoration: underline;
}

/* 21. Footer */
.m-footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

.m-footer__top {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

.m-footer__brand {
    max-width: 400px;
}

.m-footer__brand .logo {
    margin-bottom: var(--space-md);
    display: inline-block;
}

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

.m-footer__nav {
    display: flex;
    gap: var(--space-3xl);
}

.m-footer__nav-group h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.m-footer__nav-group a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: var(--space-xs) 0;
    transition: color 0.3s ease;
}

.m-footer__nav-group a:hover {
    color: var(--gold);
}

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

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

.m-footer__compliance a {
    display: flex;
    align-items: center;
}

.footer__compliance-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

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

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

.m-footer__copy {
    text-align: right;
}

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

/* 22. Modals */
/* Game Modal */
.m-game-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

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

.m-game-modal__content {
    position: relative;
    width: 90vw;
    height: 85vh;
    max-width: 1100px;
    background: var(--bg-darker);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 160, 23, 0.2);
    overflow: hidden;
    z-index: 1;
}

.m-game-modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: var(--text-primary);
    font-size: 1.75rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
}

.m-game-modal__close:hover {
    background: var(--red);
    border-color: var(--red);
}

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

/* 23. Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    padding: var(--space-lg);
    z-index: 1800;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

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

/* Age Modal */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.age-modal__content {
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.age-modal__content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.age-modal__content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

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

/* 24. Auth Forms */
.m-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

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

.m-auth-modal__content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    width: 90%;
    max-width: 450px;
    z-index: 1;
}

.m-auth-modal__close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.m-auth-modal__close:hover {
    color: var(--gold);
}

.m-auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: var(--space-xl);
    border-bottom: 2px solid rgba(212, 160, 23, 0.1);
}

.m-auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: var(--space-md);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.m-auth-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.m-auth-tab.is-active {
    color: var(--gold);
}

.m-auth-tab.is-active::after {
    opacity: 1;
}

.m-auth-form__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.m-auth-form--hidden {
    display: none;
}

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

.m-auth-form__group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.m-auth-form__group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-darker);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.m-auth-form__group input:focus {
    border-color: var(--gold);
}

.m-auth-form__group input::placeholder {
    color: var(--text-muted);
}

.m-auth-form__error {
    color: var(--red);
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
    min-height: 20px;
}

.m-auth-form__terms {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-md);
    margin-bottom: 0;
}

.m-auth-form__terms a {
    color: var(--gold);
    text-decoration: underline;
}

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

.m-account-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.m-account-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.m-account-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

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

/* 26. Profile */
.m-account-profile {
    max-width: 600px;
    margin: 0 auto;
}

.m-account-profile__header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius-lg);
}

.m-account-profile__badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.m-account-profile__name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2px;
}

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

/* 27. XP Progress */
.m-xp-progress {
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.m-xp-progress__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.m-xp-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    border-radius: 6px;
    transition: width 0.6s ease;
}

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

.m-account-stat {
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

.m-account-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.m-account-stat__label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Daily Bonus Modal */
.m-bonus-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

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

.m-bonus-modal__content {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 400px;
    width: 90%;
    z-index: 1;
}

.m-bonus-modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    cursor: pointer;
}

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

.m-bonus-modal__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.m-bonus-modal__text {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.m-bonus-modal__reward {
    margin-bottom: var(--space-lg);
}

.m-bonus-modal__xp {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-light);
}

/* 29. Content Pages */
.m-page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.m-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.m-breadcrumb a:hover {
    color: var(--gold);
}

.m-breadcrumb__separator {
    color: var(--text-muted);
}

.m-breadcrumb span:last-child {
    color: var(--gold);
}

.m-content-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

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

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

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

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

.m-content-card ul,
.m-content-card ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
    list-style-position: outside;
}

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

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

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

.m-content-card em {
    color: var(--text-muted);
}

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

.m-content-table th {
    background: var(--bg-darker);
    color: var(--gold);
    padding: var(--space-md);
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    border-bottom: 2px solid rgba(212, 160, 23, 0.2);
}

.m-content-table td {
    padding: var(--space-md);
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(212, 160, 23, 0.07);
}

.m-content-table tr:hover td {
    background: rgba(212, 160, 23, 0.03);
}

.m-content-cta {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    text-align: center;
}

.m-content-cta p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.m-contact-info {
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    margin-top: var(--space-md);
}

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

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

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

.m-fact-card {
    background: var(--bg-darker);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

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

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

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

.m-help-resources {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.m-help-resource {
    background: var(--bg-darker);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.m-help-resource h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-top: 0;
    margin-bottom: var(--space-xs);
}

.m-help-resource p {
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

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

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

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

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

.m-review-verdict {
    background: var(--bg-darker);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
}

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

.m-review-verdict__item {
    text-align: center;
}

.m-review-verdict__label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.m-review-verdict__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

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

.article-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

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

.article-card__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(196, 30, 58, 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.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.article-card__excerpt {
    font-size: 0.9rem;
    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__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.m-review-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.m-review-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.m-review-card__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

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

.stars {
    color: #ffc107;
}

.m-review-card__score {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.m-review-card__description {
    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;
}

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

.m-review-card__stat {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--bg-darker);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

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

/* 32. Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Card base position rule */
.article-card, .offer-card, .card, .m-game-tile, .game-card, .m-review-card {
    position: relative;
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(212, 160, 23, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 160, 23, 0.5);
}

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

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

    .m-header__burger {
        display: flex;
    }

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

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

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

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

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

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

    .m-footer__top {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .m-footer__brand {
        max-width: 100%;
    }

    h1 { font-size: 2.25rem; }
    .m-hero__title { font-size: 2.75rem; }
}

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

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

    .m-hero__title {
        font-size: 2.25rem;
        letter-spacing: 1px;
    }

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

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

    .m-hero--games-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }

    .m-hero__auth-buttons {
        justify-content: center;
    }

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

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

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

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

    .m-facts-grid {
        grid-template-columns: 1fr;
    }

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

    .m-provider-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: var(--space-sm);
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
    }

    .m-filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

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

    .m-footer__nav {
        flex-direction: column;
        gap: var(--space-xl);
    }

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

    .m-footer__compliance {
        justify-content: center;
    }

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

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

    .m-account-actions {
        flex-direction: column;
    }

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

    .age-modal__buttons {
        flex-direction: column;
    }

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

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

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

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

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

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

    .m-game-modal__content {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
}