/* ============================================
   HANSEN XMAS CASINO - Festive Christmas CSS
   Fonts: Bangers + Nunito
   Palette: Christmas Red, Forest Green, Gold
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors - Christmas palette */
    --primary: #c41e3a;
    --primary-dark: #8b0000;
    --primary-light: #e74c5e;
    --secondary: #1b5e20;
    --secondary-dark: #0d3b0f;
    --secondary-light: #2e7d32;
    --accent: #ffd700;
    --accent-dark: #daa520;

    /* Backgrounds */
    --bg-dark: #0c1a0c;
    --bg-darker: #071207;
    --bg-card: #162416;
    --bg-card-hover: #1e3220;
    --bg-hero: linear-gradient(135deg, #0c1a0c 0%, #14261a 50%, #1b3a28 100%);

    /* Text */
    --text-primary: #f0f0f5;
    --text-secondary: #b8b8d0;
    --text-muted: #7878a0;
    --text-dark: #1a1a2e;

    /* Functional */
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #c41e3a;
    --info: #2e7d32;

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

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

    /* Fonts - Bangers for headings, Nunito for body */
    --font-body: 'Nunito', sans-serif;
    --font-heading: 'Bangers', cursive;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow-red: 0 0 20px rgba(196, 30, 58, 0.4);
    --shadow-glow-blue: 0 0 20px rgba(27, 94, 32, 0.4);
    --shadow-glow-gold: 0 0 20px rgba(255, 215, 0, 0.4);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 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: 400;
    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;
    background-image: radial-gradient(ellipse at 20% 50%, rgba(27, 94, 32, 0.06) 0%, transparent 50%),
                      radial-gradient(ellipse at 80% 20%, rgba(196, 30, 58, 0.04) 0%, transparent 50%);
}

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

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

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

ul, ol {
    list-style: none;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

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

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

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

/* 5. Header */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 26, 12, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--primary);
    height: var(--header-height);
    box-shadow: 0 2px 20px rgba(196, 30, 58, 0.15), 0 1px 10px rgba(255, 215, 0, 0.08);
}

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

.m-header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.m-header__logo.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.5), 0 0 30px rgba(255, 215, 0, 0.15);
    transition: text-shadow var(--transition-base);
    white-space: nowrap;
    position: relative;
}

.m-header__logo.logo::before {
    content: '🎄';
    margin-right: 6px;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}

.m-header__logo.logo:hover {
    text-shadow: 0 0 20px rgba(196, 30, 58, 0.8), 0 0 40px rgba(255, 215, 0, 0.3);
    color: var(--primary-light);
}

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

.m-header__link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

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

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

.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 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Burger */
.m-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1010;
}

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

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

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

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

/* 6. Mobile Menu */
.m-header__mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 18, 7, 0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: var(--space-2xl) var(--space-lg);
    overflow-y: auto;
}

.m-header__mobile-menu.is-open {
    display: block;
    animation: fadeSlideDown 0.3s ease forwards;
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.m-header__mobile-link {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color var(--transition-fast);
    letter-spacing: 2px;
}

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

.m-header__mobile-account {
    margin-top: var(--space-lg);
    width: 100%;
}

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

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.5), 0 0 15px rgba(255, 215, 0, 0.15);
    transform: translateY(-2px);
}

.btn--secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.btn--secondary:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    color: #fff;
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.5);
    transform: translateY(-2px);
}

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

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

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

/* 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) var(--space-lg);
    text-align: center;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-hero--small {
    min-height: 260px;
    padding: var(--space-2xl) var(--space-lg);
}

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

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

/* Snowflake Pattern overlay */
.m-hero__web-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.12;
    background-image:
        radial-gradient(circle at 15% 25%, #fff 1.5px, transparent 1.5px),
        radial-gradient(circle at 85% 15%, #fff 1px, transparent 1px),
        radial-gradient(circle at 45% 75%, #fff 1.2px, transparent 1.2px),
        radial-gradient(circle at 70% 55%, rgba(255, 215, 0, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 25% 60%, #fff 0.8px, transparent 0.8px),
        radial-gradient(circle at 90% 80%, #fff 1px, transparent 1px);
    background-size: 120px 120px, 80px 100px, 150px 130px, 100px 90px, 60px 70px, 140px 110px;
    pointer-events: none;
    animation: snowDrift 20s linear infinite;
}

@keyframes snowDrift {
    0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 120px 120px, -80px 100px, 150px 130px, -100px 90px, 60px 70px, -140px 110px; }
}

.m-hero__web-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(196, 30, 58, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(27, 94, 32, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-primary);
    text-shadow: 2px 2px 0 var(--primary), 4px 4px 0 rgba(196, 30, 58, 0.3), 0 0 40px rgba(255, 215, 0, 0.15);
    margin-bottom: var(--space-md);
    letter-spacing: 3px;
}

.m-hero__title--404 {
    font-size: 8rem;
    color: var(--primary);
    text-shadow: 3px 3px 0 var(--secondary), 6px 6px 0 rgba(27, 94, 32, 0.3);
}

.m-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}

.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__cta {
    margin-top: var(--space-md);
}

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

.m-hero__col {
    flex: 1;
}

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

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

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

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

.m-section--benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
}

.m-section--benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 94, 32, 0.2), transparent);
}

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

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

.m-section--faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.2), transparent);
}

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

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

.m-section--filter {
    padding: var(--space-lg) 0;
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(27, 94, 32, 0.2);
}

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

.m-section__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: 2px;
    position: relative;
}

.m-section__title::after {
    content: '❄ ✦ ❄';
    display: block;
    width: auto;
    height: auto;
    background: none;
    margin: var(--space-sm) auto 0;
    font-size: 0.6rem;
    letter-spacing: 8px;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

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

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

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

.m-page-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
    text-shadow: 1px 1px 0 var(--primary), 0 0 30px rgba(255, 215, 0, 0.1);
}

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

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

.benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(27, 94, 32, 0.2);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-glow-gold);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

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

.benefit-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
}

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

/* 12. Featured Providers */
.featured-provider__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
    margin-top: var(--space-xl);
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

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

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

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

.game-card:hover,
.m-game-tile:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow-gold);
}

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

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

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

.game-card__play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.6), rgba(27, 94, 32, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.game-card__play-icon {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.game-card__name,
.m-game-tile__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    letter-spacing: 1px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card__provider,
.m-game-tile__provider {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

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

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

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

.m-game-tile__lock-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

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

.provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--accent-dark);
    display: inline-block;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

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

.filter-btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 8px 20px;
    border: 2px solid rgba(27, 94, 32, 0.3);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.filter-btn.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 2px 10px rgba(196, 30, 58, 0.3);
}

/* 18. Unlock Banner */
.unlock-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(196, 30, 58, 0.08) 50%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
}

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

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

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

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

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 94, 32, 0.15);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item.is-open {
    border-color: var(--primary);
}

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

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

.faq-item__icon {
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

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

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

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

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

/* 20. Disclaimer */
.disclaimer-box {
    background: var(--bg-card);
    border: 1px solid rgba(196, 30, 58, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border-left: 3px solid var(--primary);
}

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

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

/* 21. Footer */
.m-footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary);
    padding-top: var(--space-3xl);
    position: relative;
}

.m-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent), var(--primary), var(--secondary));
}

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

.m-footer__content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.m-footer__logo.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    display: inline-block;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.4);
}

.m-footer__logo.logo::before {
    content: '🎄';
    margin-right: 6px;
    font-size: 1rem;
}

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

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

.m-footer__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
}

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

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

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

/* Compliance */
.m-footer__compliance {
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.m-footer__compliance-logo:hover {
    opacity: 1;
    filter: none;
}

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

.m-footer__age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: 400;
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.3);
}

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

.m-footer__copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: var(--space-xs);
}

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

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

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

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

.modal__content {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    padding: var(--space-2xl);
    border: 1px solid rgba(27, 94, 32, 0.25);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 215, 0, 0.08);
    max-height: 90vh;
    overflow-y: auto;
}

.modal__content--game {
    max-width: 900px;
    padding: 0;
}

.modal__content--auth {
    max-width: 420px;
}

.modal__content--bonus {
    max-width: 400px;
    text-align: center;
}

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

.modal__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

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

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

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

.modal__body p {
    color: var(--text-secondary);
}

.modal__body--game {
    padding: 0;
    aspect-ratio: 16/9;
}

.modal__footer {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-end;
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* 23. Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--secondary);
    padding: var(--space-lg);
    z-index: 1500;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: none;
}

.cookie-consent.is-visible {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

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

/* 24. Auth Forms */
.auth-tabs {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

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

.auth-tabs__btn.is-active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

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

.auth-form__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: var(--space-xl);
    letter-spacing: 1px;
}

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

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

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-darker);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

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

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

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

.account-auth-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border: 1px solid rgba(27, 94, 32, 0.2);
}

.account-auth-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: var(--space-xl);
    letter-spacing: 1px;
}

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

/* 26. Profile */
.account-profile {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid rgba(27, 94, 32, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

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

.account-profile__badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    box-shadow: var(--shadow-glow-gold);
    flex-shrink: 0;
}

.account-profile__name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

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

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

.xp-bar__label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

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

.xp-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    border-radius: 6px;
    transition: width var(--transition-slow);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

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

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

.account-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

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

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

/* Daily Bonus */
.daily-bonus {
    padding: var(--space-xl);
}

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

.daily-bonus__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.daily-bonus__text {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.daily-bonus__amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: var(--space-lg);
    letter-spacing: 2px;
}

/* 29. Content Pages */
.m-content-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid rgba(27, 94, 32, 0.15);
    line-height: 1.8;
}

.m-content-card h2 {
    font-size: 1.8rem;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--accent);
}

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

.m-content-card h3 {
    font-size: 1.3rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--secondary-light);
    text-shadow: 0 0 10px rgba(27, 94, 32, 0.15);
}

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

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

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

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

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

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

.m-content-card__cta {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Table */
.m-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-lg);
}

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

.m-table th {
    font-family: var(--font-heading);
    color: var(--accent);
    letter-spacing: 1px;
    background: var(--bg-darker);
}

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

.m-table tr:hover td {
    background: rgba(226, 54, 54, 0.05);
}

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

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

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

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

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

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

.info-card {
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border: 1px solid rgba(27, 94, 32, 0.15);
    text-align: center;
}

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

.info-card h3 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.info-card p {
    margin-bottom: 0;
}

/* Help Links */
.help-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.help-link {
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    border-left: 3px solid var(--accent-dark);
}

.help-link h3 {
    margin-top: 0;
    margin-bottom: var(--space-xs);
}

.help-link p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.review-hero__rating {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

.review-hero__tagline {
    color: var(--text-secondary);
    font-size: 1rem;
}

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

.review-game-tile {
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(27, 94, 32, 0.1);
    transition: all var(--transition-fast);
}

.review-game-tile:hover {
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

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

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

/* 30. Blog Grid */
.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-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(27, 94, 32, 0.15);
    transition: all var(--transition-base);
}

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

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

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

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

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

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
    color: var(--text-primary);
}

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

.article-card__meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.article-card__link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--primary);
    letter-spacing: 1px;
}

/* 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-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(27, 94, 32, 0.15);
    transition: all var(--transition-base);
}

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

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

.review-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
}

.review-card__rating.stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.games-loading {
    text-align: center;
    color: var(--text-muted);
    padding: var(--space-2xl);
    font-size: 1.1rem;
    display: none;
}

.games-loading.is-visible {
    display: block;
}

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

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

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

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

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

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

    .m-header__nav {
        display: none;
    }

    .m-header__burger {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

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

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

    .m-hero {
        min-height: 360px;
        padding: var(--space-2xl) var(--space-md);
    }

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

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

    .m-hero--small {
        min-height: 200px;
    }

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

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

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

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

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

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

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

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

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

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

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

    .filter-bar {
        gap: var(--space-xs);
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

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

    .m-content-card__cta {
        flex-direction: column;
    }

    .m-content-card__cta .btn {
        width: 100%;
    }

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

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

    .account-actions .btn {
        width: 100%;
    }

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

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

    .modal__content {
        padding: var(--space-xl);
        margin: var(--space-md);
    }

    .modal__content--game {
        padding: 0;
    }

    .modal__footer {
        flex-direction: column;
    }

    .modal__footer .btn {
        width: 100%;
    }
}

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

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

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

    .m-header__logo.logo {
        font-size: 1.3rem;
    }

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

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

    .btn--lg {
        font-size: 1rem;
        padding: 14px 28px;
    }

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

    .m-footer__compliance-badges {
        gap: var(--space-md);
    }

    .m-footer__compliance-logo {
        height: 28px;
    }
}