/* ==========================================================================
   Binnelow.com — Social Casino
   Stylistic: #5 Космический страж
   Palette: Green, Black, Cosmic, Space Grotesk / Inter
   ========================================================================== */

/* 1. CSS Variables (:root) */
:root {
    /* Colors — Cosmic Guardian palette */
    --primary: #00e676;
    --primary-dark: #00c853;
    --primary-rgb: 0, 230, 118;
    --secondary: #1de9b6;
    --accent: #76ff03;

    /* Backgrounds */
    --bg-dark: #070e17;
    --bg-darker: #040a10;
    --bg-card: #0d1a2a;
    --bg-card-hover: #112240;
    --bg-elevated: #132035;

    /* Text */
    --text-primary: #e8f5e9;
    --text-secondary: #a5d6a7;
    --text-muted: #5e8a6e;

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

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 230, 118, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 230, 118, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 230, 118, 0.15);
    --shadow-glow: 0 0 20px rgba(0, 230, 118, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s 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(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

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

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

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

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

/* 5. Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(7, 14, 23, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 230, 118, 0.1);
    z-index: 1000;
    transition: background var(--transition-base);
}

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

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

.logo:hover {
    color: var(--accent);
    text-shadow: 0 0 16px rgba(0, 230, 118, 0.5);
}

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

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

.site-nav__link {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width var(--transition-base);
    box-shadow: 0 0 6px rgba(0, 230, 118, 0.4);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--primary);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    width: 100%;
}

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

/* 6. Mobile Menu */
.burger-btn {
    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: 1100;
}

.burger-btn__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.burger-btn.is-active .burger-btn__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.burger-btn.is-active .burger-btn__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

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

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

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-darker);
    border-left: 1px solid rgba(0, 230, 118, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
}

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

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(0, 230, 118, 0.08);
}

.mobile-menu__close {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-xs);
    flex: 1;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
    color: var(--primary);
    background: rgba(0, 230, 118, 0.06);
}

.mobile-menu__link--account {
    margin-top: var(--space-md);
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.15);
    text-align: center;
    color: var(--primary);
}

.mobile-menu__footer {
    padding: var(--space-lg);
    border-top: 1px solid rgba(0, 230, 118, 0.08);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-menu__legal-link {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

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

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 16px rgba(0, 230, 118, 0.3);
}

.btn--primary:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 24px rgba(118, 255, 3, 0.4);
    transform: translateY(-1px);
}

.btn--secondary {
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 230, 118, 0.25);
}

.btn--secondary:hover {
    background: rgba(0, 230, 118, 0.18);
    border-color: var(--primary);
}

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(0, 230, 118, 0.15);
}

.btn--ghost:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(0, 230, 118, 0.06);
}

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

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

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

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

/* 9. Hero Section */
.m-hero {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 230, 118, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 20%, rgba(29, 233, 182, 0.05) 0%, transparent 50%),
                var(--bg-darker);
}

.m-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1.5px 1.5px at 20% 30%, rgba(0, 230, 118, 0.3), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(29, 233, 182, 0.2), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(118, 255, 3, 0.15), transparent),
        radial-gradient(1.5px 1.5px at 40% 80%, rgba(0, 230, 118, 0.2), transparent),
        radial-gradient(1px 1px at 90% 50%, rgba(29, 233, 182, 0.15), transparent);
    background-size: 250px 250px, 300px 300px, 200px 200px, 350px 350px, 280px 280px;
    pointer-events: none;
    animation: starsFloat 60s linear infinite;
}

@keyframes starsFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-250px); }
}

.m-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
}

.m-hero__content {
    flex: 1;
    max-width: 600px;
}

.m-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    letter-spacing: -1px;
}

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

.m-hero__text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.m-hero__cta {
    font-size: 1.125rem;
    letter-spacing: 1px;
}

.m-hero__visual {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.m-hero__ring {
    position: absolute;
    inset: 20px;
    border: 3px solid rgba(0, 230, 118, 0.3);
    border-radius: 50%;
    animation: ringRotate 8s linear infinite;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.15), inset 0 0 30px rgba(0, 230, 118, 0.05);
}

.m-hero__ring::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--primary);
    transform: translateX(-50%);
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.m-hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 230, 118, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}

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

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

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

.m-hero__left {
    flex: 1;
}

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

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

.m-hero__container {
    max-width: 500px;
}

.m-hero__title--404 {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-md);
    text-shadow: none;
}

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

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

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

.m-section__title--mt {
    margin-top: var(--space-3xl);
}

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

.m-section__provider-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-md);
    margin-top: var(--space-xl);
    padding-left: var(--space-sm);
    border-left: 3px solid var(--primary);
}

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

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

/* Page Title & Subtitle */
.m-page-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.m-page-subtitle {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    margin-bottom: var(--space-2xl);
    max-width: 700px;
}

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

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

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

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

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

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

.benefit-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.2);
    box-shadow: var(--shadow-md);
}

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

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

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

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

/* 13. Games Grid */
.games-grid {
    /* Sections are rendered by JS */
}

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

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

/* 14. Game Tile */
.game-card,
.m-game-tile {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.game-card:hover,
.m-game-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.25);
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

/* Game Card Featured */
.game-card--featured {
    border-color: rgba(0, 230, 118, 0.12);
}

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

.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, 14, 23, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    gap: var(--space-sm);
}

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

.m-game-tile__lock-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    padding-left: var(--space-sm);
    border-left: 3px solid var(--primary);
}

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

.provider-filter__btn {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(0, 230, 118, 0.15);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.provider-filter__btn.is-active {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.3);
}

/* 18. Unlock Banner */
.unlock-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.08), rgba(29, 233, 182, 0.05));
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: var(--radius-md);
}

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

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

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

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

.faq-item {
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.is-open {
    border-color: rgba(0, 230, 118, 0.2);
}

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

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

.faq-item__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--primary);
}

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

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

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

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

/* 20. Disclaimer */
.disclaimer-box {
    background: rgba(0, 230, 118, 0.03);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

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

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

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

/* 21. Footer */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 230, 118, 0.08);
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-xl);
}

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

.site-footer__tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: var(--space-md);
    margin-bottom: var(--space-lg);
}

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

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

.site-footer__age-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.site-footer__heading {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-lg);
}

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

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

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

/* Compliance */
.site-footer__compliance {
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(0, 230, 118, 0.08);
    border-bottom: 1px solid rgba(0, 230, 118, 0.08);
    margin-bottom: var(--space-xl);
    text-align: center;
}

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

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

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

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

.site-footer__compliance-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

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

.site-footer__copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.site-footer__copyright small {
    opacity: 0.7;
}

.site-footer__bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.site-footer__bottom-link {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.site-footer__bottom-link:hover {
    color: var(--primary);
}

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

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

.modal-overlay[style*="display: none"] {
    opacity: 0;
    visibility: hidden;
}

.modal {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 230, 118, 0.08);
}

.modal__icon {
    margin-bottom: var(--space-lg);
}

.modal__icon svg {
    width: 56px;
    height: 56px;
    color: var(--primary);
}

.modal__icon--bonus {
    font-size: 3.5rem;
}

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

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

.modal__question {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

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

/* Game Modal */
.modal--game {
    max-width: 960px;
    padding: 0;
    text-align: left;
    overflow: hidden;
}

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

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

.modal__close {
    width: 36px;
    height: 36px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.modal__close:hover {
    background: rgba(0, 230, 118, 0.15);
    color: var(--primary);
}

.modal__close svg {
    width: 20px;
    height: 20px;
}

.modal__body {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-darker);
}

.modal__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

.modal--auth .modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
}

/* Bonus Modal */
.modal--bonus {
    max-width: 420px;
}

.daily-bonus__reward {
    margin: var(--space-lg) 0;
}

.daily-bonus__xp {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 24px rgba(0, 230, 118, 0.5);
}

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

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

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

.cookie-consent__text {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

.auth-form__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

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

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

.auth-form__input {
    padding: 12px var(--space-md);
    background: var(--bg-darker);
    border: 1px solid rgba(0, 230, 118, 0.12);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.auth-form__input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1);
}

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

.account-form-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.account-form-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

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

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

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

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

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

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

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

/* Account Dashboard */
.account-dashboard {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* 26. Profile */
.account-profile-card {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.level-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-dark);
    box-shadow: 0 0 24px rgba(0, 230, 118, 0.3);
}

.account-profile-card__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.account-profile-card__email {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* 27. XP Progress */
.account-xp-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.account-xp-card__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

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

.xp-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 6px;
    transition: width 0.6s ease;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
}

.xp-progress__labels {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-align: right;
}

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

.account-stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

.account-stat-card__value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: var(--space-xs);
}

.account-stat-card__label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

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

/* 29. Content Pages */
.m-content-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
}

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

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

.m-content-card h3 {
    font-size: 1.25rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--secondary);
}

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

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

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

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

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

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

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

.m-content-card__cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(0, 230, 118, 0.08);
}

/* Responsible Gaming Facts */
.responsible-facts {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.responsible-fact {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 230, 118, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 230, 118, 0.06);
}

.responsible-fact__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.responsible-fact strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: var(--space-xs);
}

.responsible-fact p {
    margin: 0;
    font-size: 0.875rem;
}

/* 30. Blog Grid */
.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(0, 230, 118, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.2);
    box-shadow: var(--shadow-md);
}

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

.article-card__category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(0, 230, 118, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: var(--space-sm);
}

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

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

.article-card__meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

/* 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: 1px solid rgba(0, 230, 118, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.25);
    box-shadow: var(--shadow-md);
}

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

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

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

.stars {
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-card__rating-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

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

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

.review-card__stat {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(0, 230, 118, 0.05);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(0, 230, 118, 0.08);
}

.review-card__stat strong {
    color: var(--primary);
}

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

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

.review-hero__rating-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

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

.review-hero__tag {
    font-size: 0.8125rem;
    color: var(--text-muted);
    background: rgba(0, 230, 118, 0.05);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(0, 230, 118, 0.1);
}

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

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

.review-game-tile img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
    border: 1px solid rgba(0, 230, 118, 0.06);
}

.review-game-tile span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* 32. Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.hidden { display: none !important; }

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

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

::-webkit-scrollbar-thumb {
    background: rgba(0, 230, 118, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 230, 118, 0.35);
}

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

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

    .burger-btn {
        display: flex;
    }

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

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

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

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

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

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

    .m-hero__visual {
        width: 200px;
        height: 200px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .site-footer__bottom-links {
        justify-content: center;
    }

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

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

    .m-hero__visual {
        display: none;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .provider-filter__btn {
        flex-shrink: 0;
    }
}