/* ============================================
   BelCosmetik - Social Casino
   Style: Dark Knight (#2)
   Fonts: Cinzel + Roboto Condensed
   ============================================ */

/* 1. CSS Variables (:root) */
:root {
    /* Colors - Emerald Noir palette */
    --primary: #c9a84c;
    --primary-dark: #a6872e;
    --secondary: #2d3436;
    --accent: #e8d584;
    --emerald: #2ecc71;
    --emerald-dark: #1a9c54;
    --copper: #c9884c;
    --ruby: #e74c6f;
    
    /* Backgrounds */
    --bg-dark: #080b0e;
    --bg-darker: #040608;
    --bg-card: #0f1318;
    --bg-card-hover: #161c22;
    --bg-header: rgba(8, 11, 14, 0.97);
    
    /* Text */
    --text-primary: #e6e8ec;
    --text-secondary: #8f9baa;
    --text-muted: #506070;
    
    /* Borders */
    --border-color: #1a2030;
    --border-light: #253040;
    
    /* 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: 'Roboto Condensed', sans-serif;
    --font-heading: 'Cinzel', serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 24px rgba(201, 168, 76, 0.25), 0 0 48px rgba(46, 204, 113, 0.08);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--copper) 50%, var(--emerald) 100%);
    --gradient-hero: linear-gradient(160deg, #040608 0%, #0a1015 30%, #0d1520 60%, #080b0e 100%);
    --gradient-section: linear-gradient(180deg, rgba(46, 204, 113, 0.02) 0%, transparent 40%, rgba(201, 168, 76, 0.02) 100%);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

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

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);
    margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

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

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

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

/* 5. Header */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-header);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.m-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), rgba(46, 204, 113, 0.2), transparent);
}

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

.m-header__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.m-header__logo::before {
    content: '◆';
    font-size: 0.5rem;
    color: var(--emerald);
    margin-right: 8px;
    vertical-align: middle;
    opacity: 0.7;
}

.m-header__logo:hover {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.4), 0 0 40px rgba(46, 204, 113, 0.15);
}

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

.m-header__link {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color 0.3s ease;
}

.m-header__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--primary));
    transition: width 0.3s ease, left 0.3s ease;
    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__account-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-header__account-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.m-header__account-icon {
    font-size: 1rem;
}

/* 6. Mobile Menu */
.m-header__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    width: 36px;
    height: 36px;
}

.m-header__mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.m-header__mobile-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.m-header__mobile-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.m-header__mobile-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-lg);
    z-index: 999;
}

.m-header__mobile-menu.is-open {
    display: block;
}

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

.m-header__mobile-link {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

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

.m-header__mobile-account {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: var(--space-sm);
    transition: background 0.3s ease;
}

.m-header__mobile-account:hover {
    background: var(--accent);
}

/* 7. Buttons */
.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.m-btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--copper) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

.m-btn--primary:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--bg-dark);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.4), 0 0 40px rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
}

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

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

.m-btn--secondary:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

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

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

/* 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;
    text-align: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.m-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 600px 400px at 20% 50%, rgba(46, 204, 113, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 80% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 50% 80%, rgba(201, 136, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.m-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), rgba(46, 204, 113, 0.15), rgba(201, 168, 76, 0.2), transparent);
}

@keyframes heroGlow {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

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

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

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

.m-hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.2), 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.m-hero__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-brand);
    margin: var(--space-md) auto 0;
    border-radius: 2px;
}

.m-hero__title--404 {
    font-size: 8rem;
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.m-hero__subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
}

.m-hero__subtitle::before,
.m-hero__subtitle::after {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-muted));
}

.m-hero__subtitle::after {
    background: linear-gradient(90deg, var(--text-muted), transparent);
}

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

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

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

.m-hero--small .m-hero__title::after {
    width: 40px;
}

.m-hero--404 {
    min-height: 60vh;
    display: flex;
    align-items: 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--benefits {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.m-section--benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-section);
    pointer-events: none;
}

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

.m-section--faq {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.m-section--faq::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.15), rgba(201, 168, 76, 0.2), transparent);
}

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

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

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

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

.m-section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

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

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

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

.m-section__divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin: var(--space-2xl) 0;
}

.m-page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: var(--space-md);
}

.m-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

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

.m-benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.m-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.m-benefit-card:hover {
    border-color: var(--border-light);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

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

.m-benefit-card__icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: rgba(46, 204, 113, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.m-benefit-card:hover .m-benefit-card__icon {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.2);
    transform: scale(1.1);
}

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

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

/* 12. Featured Providers */
.m-featured__provider-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.m-featured__provider-title::before,
.m-featured__provider-title::after {
    content: '';
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, transparent, var(--border-light));
}

.m-featured__provider-title::after {
    background: linear-gradient(90deg, var(--border-light), transparent);
}

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

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

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

/* 14. Game Tile / Card */
.m-game-tile {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.m-game-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.m-game-tile:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.1);
}

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

.m-game-tile__image {
    position: relative;
    width: 100%;
    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.08);
}

.m-game-tile__info {
    padding: var(--space-sm) var(--space-md);
    position: relative;
    z-index: 2;
}

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

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

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

.m-game-tile--locked .m-game-tile__image img {
    filter: blur(4px) grayscale(50%);
    opacity: 0.6;
}

.m-game-tile--locked:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-color);
}

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

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

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

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

/* Game Card (for featured / review) */
.m-game-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-game-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(201, 168, 76, 0.1);
}

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

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

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

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

.m-game-card__title {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.m-game-card--small {
    cursor: default;
}

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

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

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

.m-provider-section__title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-brand);
    border-radius: 2px;
    flex-shrink: 0;
}

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

.m-filter__btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.m-filter__btn.is-active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--copper) 100%);
    border-color: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 2px 10px rgba(201, 168, 76, 0.25);
}

/* 18. Unlock Banner */
.m-unlock-banner {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-lg) 0;
}

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

.m-unlock-banner__icon {
    font-size: 1.75rem;
}

.m-unlock-banner__text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    flex: 1;
    min-width: 200px;
}

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

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

.m-faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.m-faq__item.is-active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.08);
}

.m-faq__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-body);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.m-faq__icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.m-faq__item.is-active .m-faq__icon {
    transform: rotate(45deg);
}

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

.m-faq__item.is-active .m-faq__answer {
    max-height: 500px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.m-faq__answer p {
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 20. Disclaimer */
.m-disclaimer {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.m-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ruby), var(--primary), var(--emerald));
    opacity: 0.6;
}

.m-disclaimer__text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0;
    line-height: 1.6;
}

.m-disclaimer__text strong {
    color: var(--primary);
}

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

.m-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), rgba(46, 204, 113, 0.2), transparent);
}

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

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

.m-footer__logo {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.m-footer__logo::before {
    content: '◆';
    font-size: 0.5rem;
    color: var(--emerald);
    margin-right: 6px;
    vertical-align: middle;
    opacity: 0.7;
}

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

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

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

.m-footer__link {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

.m-footer__age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--ruby);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ruby);
}

.m-footer__bottom {
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-lg);
    text-align: center;
}

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

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

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

.m-modal__content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.m-modal__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
}

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

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

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

.m-modal__btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-modal__btn--confirm {
    background: var(--primary);
    color: var(--bg-dark);
}

.m-modal__btn--confirm:hover {
    background: var(--accent);
    box-shadow: var(--shadow-glow);
}

.m-modal__btn--decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.m-modal__btn--decline:hover {
    border-color: #ff4444;
    color: #ff4444;
}

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

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

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

.m-game-modal__content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    z-index: 1;
}

.m-game-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.125rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

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

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

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

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

.m-cookie-consent__text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    min-width: 250px;
}

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

.m-cookie-consent__btn {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary);
    color: var(--bg-dark);
}

.m-cookie-consent__btn:hover {
    background: var(--accent);
}

.m-cookie-consent__btn--secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.m-cookie-consent__btn--secondary:hover {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

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

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

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

.m-auth-modal__content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 440px;
    width: 90%;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

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

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

.m-auth-modal__tabs {
    display: flex;
    gap: 0;
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-color);
}

.m-auth-modal__tab {
    flex: 1;
    padding: var(--space-md);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.m-form-input {
    width: 100%;
    padding: 12px var(--space-md);
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.m-form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

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

.m-account-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.m-account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
    opacity: 0.4;
}

.m-account-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

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

/* 26. Profile */
.m-profile {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.m-profile__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0;
    letter-spacing: 1px;
}

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

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

.m-profile__xp-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.m-profile__xp-bar {
    width: 100%;
    height: 12px;
    background: var(--bg-darker);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.m-profile__xp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    border-radius: 6px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
}

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

.m-profile__stat {
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.m-profile__stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.m-profile__stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

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

.m-bonus-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
}

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

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

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

.m-bonus-modal__reward {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
}

/* 29. Content Pages */
.m-content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.m-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
    opacity: 0.5;
}

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

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

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

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

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

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

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

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

.m-content-card__date {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--space-xl) !important;
}

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

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

.m-info-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.m-info-card:hover {
    border-color: var(--border-light);
    transform: translateY(-3px);
}

.m-info-card:hover::after {
    opacity: 1;
}

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

.m-info-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

.m-review-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

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

.m-article-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.m-article-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

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

.m-article-card__category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--emerald);
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.m-article-card__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}

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

.m-article-card__rating {
    margin-bottom: var(--space-md);
}

.m-article-card__read-more {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.m-review-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.m-review-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

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

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

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

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

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

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

.m-review-card__stat {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    background: var(--bg-darker);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

/* 32. Utility Classes */
.stars {
    color: var(--accent);
    font-size: 1.125rem;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(232, 213, 132, 0.3);
}

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

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

.mb-0 {
    margin-bottom: 0 !important;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--border-light), rgba(201, 168, 76, 0.3));
    border-radius: 3px;
}

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

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

@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .m-header__nav {
        display: none;
    }
    
    .m-header__account-btn {
        display: none;
    }
    
    .m-header__mobile-toggle {
        display: flex;
    }
    
    .m-hero__title {
        font-size: 2.5rem;
    }
    
    .m-hero__content--row {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .m-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-games-grid--review {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .m-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .m-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-games-grid--featured {
        max-width: 100%;
        gap: 12px;
    }
    
    .m-games-grid--review {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-hero__title {
        font-size: 2rem;
    }
    
    .m-hero__title--404 {
        font-size: 5rem;
    }
    
    .m-hero--small .m-hero__title {
        font-size: 1.75rem;
    }
    
    .m-page-title {
        font-size: 1.75rem;
    }
    
    .m-section__title {
        font-size: 1.5rem;
    }
    
    .m-account-grid {
        grid-template-columns: 1fr;
    }
    
    .m-profile__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }
    
    .m-profile__actions {
        flex-direction: column;
    }
    
    .m-content-card {
        padding: var(--space-lg);
    }
    
    .m-content-card__cta {
        flex-direction: column;
    }
    
    .m-review-hero__meta {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .m-unlock-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .m-filter {
        gap: var(--space-xs);
    }
    
    .m-filter__btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    
    .m-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .m-reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .m-hero__title {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }
    
    .m-hero__title--404 {
        font-size: 4rem;
    }
    
    .m-hero__subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .m-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .m-footer__content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .m-modal__content {
        padding: var(--space-lg);
    }
    
    .m-auth-modal__content {
        padding: var(--space-lg);
    }
    
    .m-profile {
        padding: var(--space-lg);
    }
    
    .m-profile__header {
        flex-direction: column;
        text-align: center;
    }
    
    .m-profile__stats {
        grid-template-columns: 1fr;
    }
    
    .m-info-grid {
        grid-template-columns: 1fr;
    }
    
    .m-hero__auth-buttons {
        flex-direction: column;
        width: 100%;
    }
}
.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
