/* ==========================================================================
   GHKristin Casino — Женщина-воин (Wonder Woman) Style
   Fonts: Cormorant Garamond (heading) + Lato (body)
   Palette: Red, Gold, Blue, Deep Navy
   ========================================================================== */

/* 1. CSS Variables (:root) */
:root {
    /* Colors — Emerald Sovereign palette */
    --primary: #0d7c5f;
    --primary-dark: #064d3a;
    --primary-light: #10b981;
    --secondary: #2d1b4e;
    --secondary-dark: #1a0f30;
    --accent: #e2b04a;
    --accent-light: #f5d06b;
    --accent-dark: #b8882a;

    /* Backgrounds */
    --bg-dark: #0a0f1a;
    --bg-darker: #050810;
    --bg-card: #111827;
    --bg-card-hover: #1c2537;
    --bg-surface: #151c2c;

    /* Text */
    --text-primary: #e8ecf1;
    --text-secondary: #9ba8bd;
    --text-muted: #5f6d82;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;

    /* 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: 'Nunito Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

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

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

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

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

/* 3. Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

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

strong {
    font-weight: 700;
    color: var(--text-white);
}

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

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

/* 5. Header */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(5, 8, 16, 0.92);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid rgba(16, 185, 129, 0.12);
    z-index: 1000;
    transition: background var(--transition-base);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
    text-shadow: 0 0 24px rgba(226, 176, 74, 0.15);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent), var(--primary-light));
    opacity: 0.6;
    border-radius: 1px;
}

.logo:hover {
    color: var(--accent-light);
    text-shadow: 0 0 32px rgba(226, 176, 74, 0.35);
}

.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: 400;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.m-header__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    transition: width var(--transition-base);
    border-radius: 1px;
}

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

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

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

.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: 0;
    z-index: 1001;
}

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

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

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

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

/* 6. Mobile Menu */
.m-mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 16, 0.98);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    overflow-y: auto;
}

.m-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.m-mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-3xl) var(--space-lg);
    gap: var(--space-lg);
}

.m-mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--transition-fast);
}

.m-mobile-menu__link:hover {
    color: var(--accent);
}

.m-mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    width: 100%;
    max-width: 280px;
}

.m-mobile-menu__actions .m-button {
    width: 100%;
    text-align: center;
}

/* 7. Buttons */
.m-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.m-button--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(13, 124, 95, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.m-button--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    transition: left 0.5s ease;
}

.m-button--primary:hover::before {
    left: 100%;
}

.m-button--primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--text-white);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
    transform: translateY(-2px);
}

.m-button--outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    position: relative;
    overflow: hidden;
}

.m-button--outline:hover {
    background: var(--accent);
    color: var(--bg-darker);
    box-shadow: 0 4px 16px rgba(226, 176, 74, 0.2);
}

.m-button--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;
    padding: var(--space-3xl) 0;
    text-align: center;
    background: linear-gradient(170deg, var(--bg-darker) 0%, var(--secondary-dark) 40%, #071218 70%, var(--bg-dark) 100%);
    overflow: hidden;
}

.m-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 55%),
                radial-gradient(ellipse at 70% 80%, rgba(226, 176, 74, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(45, 27, 78, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.m-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(from 0deg, transparent 0deg 8deg, rgba(16, 185, 129, 0.008) 8deg 10deg);
    animation: heroRotate 120s linear infinite;
    pointer-events: none;
}

@keyframes heroRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.m-hero__inner {
    position: relative;
    z-index: 1;
}

.m-hero__inner--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.m-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-light) 50%, var(--text-white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 6s ease-in-out infinite;
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.m-hero__title--404 {
    font-size: clamp(5rem, 15vw, 12rem);
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.m-hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--primary-light);
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}

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

.m-hero__cta {
    font-size: 1rem;
    padding: 14px 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.m-section__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent), var(--primary-light));
    margin: var(--space-sm) auto 0;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
}

.m-section__subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

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

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

/* 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(16, 185, 129, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

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

.m-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.08), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.m-benefit-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(45, 27, 78, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.12);
}

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

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

/* 12. Featured Providers */
.m-featured__provider-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    text-align: center;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

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

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

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

.m-game-card:hover {
    transform: translateY(-5px) scale(1.015);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 12px 36px rgba(16, 185, 129, 0.1), 0 4px 16px rgba(0, 0, 0, 0.4);
}

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

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

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

.m-game-card__overlay-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 124, 95, 0.5), rgba(45, 27, 78, 0.4));
    font-size: 2.5rem;
    color: var(--text-white);
    opacity: 0;
    transition: opacity var(--transition-fast);
    backdrop-filter: blur(2px);
}

.m-game-card__overlay-play::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(226, 176, 74, 0.2);
    border: 2px solid rgba(226, 176, 74, 0.5);
}

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

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

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

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

/* Small variant for reviews */
.m-game-card--small {
    cursor: default;
}

.m-game-card--small:hover {
    transform: none;
}

.m-game-card--small img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.m-game-card--small span {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-games-grid--review {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

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

.m-game-card__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 16, 31, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

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

.m-game-card__lock-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.m-provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.m-provider-section__title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

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

.m-filter-btn {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.m-filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(226, 176, 74, 0.06);
}

.m-filter-btn.is-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.2);
}

/* 18. Unlock Banner */
.m-unlock-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: linear-gradient(135deg, rgba(13, 124, 95, 0.1), rgba(45, 27, 78, 0.12), rgba(226, 176, 74, 0.06));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
}

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

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

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

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

.m-faq-item {
    border: 1px solid rgba(16, 185, 129, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    background: var(--bg-card);
    transition: all var(--transition-fast);
}

.m-faq-item.is-active {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.06);
}

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

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

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

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

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

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

/* 20. Disclaimer */
.m-disclaimer {
    background: rgba(13, 124, 95, 0.06);
    border: 1px solid rgba(13, 124, 95, 0.15);
    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(--accent);
}

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

/* 21. Footer */
.m-footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
}

.m-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), rgba(226, 176, 74, 0.2), rgba(16, 185, 129, 0.3), transparent);
}

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

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

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

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

.m-footer__column h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.m-footer__column ul {
    list-style: none;
    padding: 0;
}

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

.m-footer__column a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.m-footer__bottom {
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    padding-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

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

.m-footer__compliance a {
    display: inline-flex;
}

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

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

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

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    font-weight: 900;
    font-size: 0.85rem;
    border: 2px solid var(--primary-light);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.2);
}

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

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

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

.modal__content {
    background: var(--bg-card);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(16, 185, 129, 0.05);
}

.modal__content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

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

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

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

/* Game Modal */
.modal--game .modal__content--game {
    max-width: 900px;
    padding: 0;
    overflow: hidden;
}

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

.modal__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0;
}

.modal__header .modal__close {
    position: static;
    flex-shrink: 0;
}

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

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

/* Auth Modal */
.modal--auth .modal__content--auth {
    max-width: 420px;
    padding: var(--space-xl);
    text-align: left;
}

/* Bonus Modal */
.modal--bonus .modal__content--bonus {
    max-width: 400px;
    text-align: center;
}

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

.m-daily-bonus__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

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

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

/* 23. Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    padding: var(--space-lg);
    z-index: 1500;
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.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.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    flex: 1;
}

/* 24. Auth Forms */
.m-auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: var(--space-lg);
    border-bottom: 2px solid rgba(212, 160, 23, 0.15);
}

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

.m-auth-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background var(--transition-fast);
}

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

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

.m-auth-tab.is-active::after {
    background: var(--accent);
}

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

.m-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.m-form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.m-input {
    padding: 12px var(--space-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-darker);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.m-input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.m-auth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

/* 25. Account Page */
.m-account-dashboard {
    max-width: 600px;
    margin: 0 auto;
}

.m-account-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

/* 26. Profile */
.m-content-card {
    background: var(--bg-card);
    border: 1px solid rgba(16, 185, 129, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.m-content-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-lg);
}

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

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

.m-level-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25), 0 0 24px rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(226, 176, 74, 0.3);
}

.m-profile-info h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
}

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

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

.m-xp-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.m-xp-bar {
    height: 12px;
    background: var(--bg-darker);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.1);
}

.m-xp-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
    border-radius: 6px;
    transition: width var(--transition-slow);
    min-width: 0;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
    position: relative;
}

.m-xp-bar__fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-light);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(226, 176, 74, 0.6);
}

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

.m-stat-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(16, 185, 129, 0.06);
    transition: all var(--transition-fast);
}

.m-stat-item:hover {
    border-color: rgba(16, 185, 129, 0.15);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.06);
}

.m-stat-item__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.m-stat-item__label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
}

/* Why Register */
.m-why-register {
    margin-top: var(--space-xl);
}

/* 29. Content Pages */
.m-content-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

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

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

.m-content-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}

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

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

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

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

.m-content-card__intro {
    font-size: 1.1rem;
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.8;
    border-left: 3px solid var(--primary-light);
    padding-left: var(--space-lg);
    margin-bottom: var(--space-xl);
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.04), transparent);
    padding: var(--space-md) var(--space-lg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.m-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-xl);
}

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

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

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

.m-breadcrumb span {
    margin: 0 var(--space-xs);
    color: var(--text-muted);
}

/* Review Header */
.m-review-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.m-review-header__rating {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

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

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

.m-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent);
    background: var(--bg-darker);
    border-bottom: 2px solid rgba(16, 185, 129, 0.12);
}

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

.m-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.04);
}

/* Info Grid (responsible page) */
.m-info-grid {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.m-info-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(16, 185, 129, 0.06);
    transition: border-color var(--transition-fast);
}

.m-info-item:hover {
    border-color: rgba(16, 185, 129, 0.15);
}

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

.m-info-item strong {
    display: block;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.m-info-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

.article-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(16, 185, 129, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.article-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.article-card:hover::after {
    transform: scaleX(1);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

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

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

.article-card__category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    background: rgba(16, 185, 129, 0.12);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: var(--space-md);
}

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

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

.article-card__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    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(16, 185, 129, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

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

.m-review-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 12px 36px rgba(16, 185, 129, 0.06), 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

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

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

.m-review-card__rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stars {
    color: #f5d06b;
    text-shadow: 0 0 6px rgba(245, 208, 107, 0.3);
}

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

.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-muted);
    background: var(--bg-darker);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.06);
}

/* 32. Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.text-red { color: var(--primary-light); }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }

/* Card position relative for overlays */
.article-card,
.offer-card,
.card {
    position: relative;
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.5);
}

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

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

    .m-header__actions {
        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: repeat(2, 1fr);
    }

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

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

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

/* Mobile - 768px */
@media (max-width: 768px) {
    .m-hero {
        padding: var(--space-2xl) 0;
    }

    .m-hero__inner--row {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }

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

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

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

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

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

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

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

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

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

    .m-stat-item__value {
        font-size: 1.4rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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