/* ============================================
   PrePresents — Premium/Лакшери Style
   Palette: #1a1a2e, #d4af37, Playfair Display / Montserrat
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors */
    --primary: #c9a84c;
    --primary-dark: #a07e1e;
    --secondary: #1e2a3a;
    --accent: #f0d060;
    --accent-cool: #5b8a9a;
    --accent-warm: #c97d4c;
    --accent-rose: #9a6b7b;

    /* Backgrounds */
    --bg-dark: #0f1923;
    --bg-darker: #0a1118;
    --bg-card: #162231;
    --bg-card-hover: #1d2f42;
    --bg-elevated: #1a2d40;

    /* Text */
    --text-primary: #e8e4d9;
    --text-secondary: #b0a998;
    --text-muted: #6d7a82;

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

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Decorative */
    --glow-primary: 0 0 20px rgba(201, 168, 76, 0.15);
    --glow-strong: 0 0 40px rgba(201, 168, 76, 0.25);
    --grain-opacity: 0.03;
    --line-subtle: rgba(201, 168, 76, 0.08);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Film grain texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: var(--grain-opacity);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* Custom selection color */
::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(91, 138, 154, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
    background-attachment: fixed;
}

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

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

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);
    color: var(--text-primary);
    line-height: 1.3;
    font-weight: 700;
}

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

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

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

/* 5. Header */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 17, 24, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--line-subtle);
    z-index: 1000;
}

.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: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.logo:hover {
    color: var(--accent);
    filter: brightness(1.2);
}

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

.m-header__link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition);
}

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

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

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

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

.m-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.m-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* 6. Mobile Menu */
.m-mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 17, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-subtle);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
}

.m-mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.m-mobile-menu__content {
    display: flex;
    flex-direction: column;
    padding: var(--space-lg);
}

.m-mobile-menu__link {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: var(--space-md) var(--space-sm);
    border-bottom: 1px solid var(--line-subtle);
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}

.m-mobile-menu__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-cool);
    transition: width var(--transition);
}

.m-mobile-menu__link:hover::before,
.m-mobile-menu__link.is-active::before {
    width: 16px;
}

.m-mobile-menu__link:hover,
.m-mobile-menu__link.is-active {
    color: var(--primary);
    padding-left: var(--space-xl);
}

/* 7. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

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

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

.btn--primary:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--bg-darker);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35), var(--glow-primary);
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.btn--secondary:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: inset 0 0 20px rgba(201, 168, 76, 0.06);
}

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

.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 {
    padding: var(--space-3xl) 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.m-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 160%;
    background:
        radial-gradient(ellipse 40% 50% at 15% 30%, rgba(91, 138, 154, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 35% 40% at 85% 70%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 30% 35% at 50% 10%, rgba(154, 107, 123, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: heroAmbient 20s ease-in-out infinite alternate;
}

@keyframes heroAmbient {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-2%, 1%) scale(1.02); }
    100% { transform: translate(1%, -1%) scale(1); }
}

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

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

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 40%, var(--accent-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.m-hero__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cool), var(--primary), var(--accent-warm));
    margin: var(--space-md) auto 0;
    border-radius: 2px;
}

.m-hero__title--404 {
    font-size: 8rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-cool), var(--primary), var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulseGlow 3s ease-in-out infinite;
}

.m-hero__subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--accent-cool);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: var(--space-lg);
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.m-hero__subtitle::before,
.m-hero__subtitle::after {
    content: '—';
    color: rgba(201, 168, 76, 0.3);
    margin: 0 var(--space-sm);
    font-weight: 300;
}

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

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

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

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

.m-hero__auth-buttons {
    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--inner {
    padding-top: var(--space-2xl);
}

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

.m-section__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: var(--space-md) auto 0;
    border-radius: 2px;
}

.m-section__title::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent-cool);
    border-radius: 50%;
    margin: 0 auto var(--space-sm);
    opacity: 0.6;
}

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

.m-section__cta {
    text-align: center;
    margin-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 10%, var(--line-subtle) 50%, transparent 90%);
}

.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 10%, var(--line-subtle) 50%, transparent 90%);
}

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

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

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

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

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

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), var(--glow-primary);
}

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

.benefit-card:hover .benefit-card__icon {
    transform: scale(1.15) translateY(-4px);
}

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

.benefit-card:hover .benefit-card__title {
    color: var(--primary);
}

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

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

.featured-provider__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.featured-provider__title::before,
.featured-provider__title::after {
    content: '';
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-subtle));
}

.featured-provider__title::after {
    background: linear-gradient(90deg, var(--line-subtle), transparent);
}

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

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

/* 14. Game Tile — used on homepage featured */
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-slow);
    position: relative;
}

.game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0);
    transition: box-shadow var(--transition);
    pointer-events: none;
    z-index: 3;
}

.game-card:hover::after {
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.3);
}

.game-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), var(--glow-primary);
}

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

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

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

.game-card__overlay-play {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.game-card__play-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-warm));
    color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    transition: transform var(--transition-bounce);
}

.game-card:hover .game-card__play-icon {
    transform: scale(1.1);
}

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

.game-card__name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* 15. Game Tile — games page (rendered by JS) */
.m-game-tile {
    background: var(--bg-card);
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-slow);
    position: relative;
}

.m-game-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cool), var(--primary), var(--accent-warm));
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 3;
}

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

.m-game-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), var(--glow-primary);
}

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

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

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

.m-game-tile__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.m-game-tile__play-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-warm));
    color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    transition: transform var(--transition-bounce);
}

.m-game-tile:hover .m-game-tile__play-icon {
    transform: scale(1.1);
}

.m-game-tile__info {
    padding: var(--space-md);
    text-align: center;
}

.m-game-tile__name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    transition: color var(--transition);
}

.m-game-tile:hover .m-game-tile__name {
    color: var(--primary);
}

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

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

.m-game-tile--locked:hover {
    transform: none;
    border-color: rgba(212, 175, 55, 0.1);
    box-shadow: none;
}

.m-game-tile--locked .m-game-tile__image img {
    filter: blur(5px) grayscale(60%) brightness(0.7);
    opacity: 0.5;
}

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

.m-game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 24, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(2px);
}

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

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

/* 17. Provider Section (games page) */
.m-provider-section {
    margin-bottom: var(--space-3xl);
}

.m-provider-section__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--line-subtle);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.m-provider-section__title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--accent-cool), var(--primary));
    border-radius: 2px;
    flex-shrink: 0;
}

/* 18. Filter */
.provider-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    justify-content: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--line-subtle);
}

.provider-filter__btn {
    padding: 10px 24px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-muted);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.provider-filter__btn:hover {
    color: var(--text-primary);
    background: rgba(201, 168, 76, 0.06);
}

.provider-filter__btn.is-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-darker);
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
}

/* 19. Unlock Banner */
.unlock-banner {
    background: linear-gradient(135deg, rgba(91, 138, 154, 0.08), rgba(201, 168, 76, 0.06));
    border: 1px solid rgba(91, 138, 154, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    margin-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.unlock-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(201, 168, 76, 0.06), transparent);
    pointer-events: none;
}

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

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

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

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

/* 20. FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.15);
}

.faq-item.is-open {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 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: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

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

.faq-item__icon {
    font-size: 1.1rem;
    color: var(--primary);
    transition: transform var(--transition), color var(--transition);
    flex-shrink: 0;
    margin-left: var(--space-md);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--space-lg);
}

.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);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 21. Disclaimer */
.disclaimer-box {
    background: rgba(91, 138, 154, 0.04);
    border: 1px solid rgba(91, 138, 154, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    position: relative;
}

.disclaimer-box::before {
    content: '⚡';
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    font-size: 1.2rem;
    opacity: 0.4;
}

.disclaimer-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: var(--space-2xl);
}

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

.disclaimer-box--sm {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
}

/* 22. Footer */
.m-footer {
    background: var(--bg-darker);
    border-top: none;
    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, var(--primary), var(--accent-cool), var(--primary), transparent);
    opacity: 0.3;
}

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

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

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

.m-footer__links {
    display: flex;
    gap: var(--space-3xl);
    justify-content: flex-end;
}

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

.m-footer__column h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent-cool);
    margin-bottom: var(--space-md);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.m-footer__column a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition);
    text-decoration: none;
}

.m-footer__column a:hover {
    color: var(--text-primary);
    padding-left: var(--space-xs);
}

.m-footer__bottom {
    border-top: 1px solid var(--line-subtle);
    padding-top: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

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

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

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

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

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--accent-cool);
    color: var(--accent-cool);
    font-size: 0.8rem;
    font-weight: 700;
    transition: all var(--transition);
}

.age-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(91, 138, 154, 0.3);
}

.m-footer__copyright p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* 23. Modals */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 2000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal__content {
    background: var(--bg-elevated);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), var(--glow-primary);
}

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

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

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

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

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

.modal__content--auth {
    max-width: 450px;
    text-align: left;
}

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

/* Game Modal */
.game-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 2000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.game-modal__content {
    background: var(--bg-darker);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg);
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), var(--glow-strong);
}

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

.game-modal__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
}

.game-modal__close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

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

.game-modal__body {
    flex: 1;
    min-height: 0;
}

.game-modal__body iframe {
    width: 100%;
    height: 70vh;
    border: none;
}

/* 24. Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--line-subtle);
    padding: var(--space-lg);
    z-index: 1500;
    display: none;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cookie-consent.is-visible {
    display: block;
}

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

.cookie-consent__content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

/* 25. Auth Forms */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: var(--space-xl);
}

.auth-tabs__btn {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition);
    border-bottom: 2px solid transparent;
}

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

.auth-tabs__btn.is-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(201, 168, 76, 0.05);
}

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

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

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

.auth-form__group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form__group input {
    padding: 12px var(--space-md);
    background: var(--bg-darker);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

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

.auth-form__group input:focus {
    outline: none;
    border-color: var(--accent-cool);
    box-shadow: 0 0 0 3px rgba(91, 138, 154, 0.1);
}

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

.account-form-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

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

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

/* 27. Profile */
.account-profile {
    max-width: 700px;
    margin: 0 auto;
}

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

.account-profile__badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cool), var(--primary), var(--accent-warm));
    color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
    animation: pulseGlow 4s ease-in-out infinite;
}

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

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

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

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

.xp-bar__track {
    height: 12px;
    background: var(--bg-darker);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.xp-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cool), var(--primary), var(--accent-warm));
    border-radius: 6px;
    transition: width 0.6s ease;
    position: relative;
}

.xp-bar__fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

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

.account-stats__item {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
}

.account-stats__value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cool), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: var(--space-xs);
}

.account-stats__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* 30. Content Pages */
.m-page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: 1px;
}

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

.m-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.m-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

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

.m-breadcrumb__sep {
    color: rgba(201, 168, 76, 0.25);
    font-size: 0.7rem;
}

.m-content-card {
    background: var(--bg-card);
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
}

.m-content-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cool), var(--primary), var(--accent-warm), transparent);
    border-radius: 1px;
    opacity: 0.5;
}

.m-content-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    border-left: 3px solid var(--accent-cool);
}

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

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

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

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

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

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

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

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

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-slow);
    position: relative;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-cool), var(--primary));
    transition: height var(--transition-slow);
    z-index: 2;
    border-radius: 0 0 2px 0;
}

.article-card:hover::before {
    height: 100%;
}

.article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

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

.article-card__category {
    display: inline-block;
    font-size: 0.65rem;
    color: var(--accent-cool);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(91, 138, 154, 0.1);
    border-radius: var(--radius-sm);
}

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

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

.article-card__link {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    transition: all var(--transition);
    text-transform: uppercase;
}

.article-card:hover .article-card__link {
    color: var(--accent);
    letter-spacing: 2px;
}

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

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cool), var(--primary), var(--accent-warm));
    transform: scaleX(0);
    transition: transform var(--transition-slow);
    transform-origin: left;
}

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

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

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

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

.review-card:hover .review-card__title {
    color: var(--primary);
}

.stars {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

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

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

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

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

.review-hero .stars {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

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

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

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

.review-game-tile img {
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

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

.review-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

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

.responsible-fact {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: rgba(91, 138, 154, 0.04);
    border: 1px solid rgba(91, 138, 154, 0.1);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    transition: border-color var(--transition);
}

.responsible-fact:hover {
    border-color: rgba(91, 138, 154, 0.25);
}

.responsible-fact__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

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

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

/* Daily Bonus Modal */
.daily-bonus {
    text-align: center;
}

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

.daily-bonus__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

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

.daily-bonus__amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

/* 33. Utility Classes */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary);
}

/* 34. Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-cool), var(--primary));
    border-radius: 3px;
    opacity: 0.6;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary), var(--accent-warm));
}

/* 35. Unique Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(201, 168, 76, 0.15); }
    50% { box-shadow: 0 0 30px rgba(201, 168, 76, 0.25); }
}

/* Intersection observer animation targets */
.m-section {
    animation: fadeInUp 0.6s ease-out both;
}

/* Unique corner accents for elevated cards */
.m-page-title {
    position: relative;
}

.m-page-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cool), var(--primary));
    margin-top: var(--space-sm);
    border-radius: 1px;
}

/* Unique link underline animation */
.m-content-card a {
    position: relative;
    text-decoration: none;
}

.m-content-card a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.m-content-card a:hover::after {
    width: 100%;
}

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

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

    .m-header__nav {
        display: none;
    }

    .m-header__burger {
        display: flex;
    }

    .m-header__actions .btn {
        display: none;
    }

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

    .m-footer__links {
        justify-content: flex-start;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .provider-filter__btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .m-hero__title {
        font-size: 1.8rem;
    }

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

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

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

    .modal__content {
        padding: var(--space-lg);
        width: 95%;
    }

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