/* ============================================
   DJ Bet Brasil - Master Stylesheet
   Style: Luxury Gold Casino (Style 1)
   Created: 2025-12-04
   ============================================ */

/* ============================================
   CSS Variables - Design System
   ============================================ */
:root {
    /* Primary Colors - Gold Luxury Theme */
    --primary-gold: #FFD700;
    --primary-gold-light: #FFE55C;
    --primary-gold-dark: #B8860B;
    --primary-gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);

    /* Background Colors */
    --bg-primary: #0D0D0D;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #242424;
    --bg-card: #1E1E1E;
    --bg-card-hover: #2A2A2A;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #707070;
    --text-gold: #FFD700;

    /* Accent Colors */
    --accent-success: #00C853;
    --accent-warning: #FFB300;
    --accent-error: #FF5252;
    --accent-info: #448AFF;

    /* Border Colors */
    --border-primary: #333333;
    --border-gold: rgba(255, 215, 0, 0.3);
    --border-gold-hover: rgba(255, 215, 0, 0.6);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.2);
    --shadow-gold-hover: 0 8px 30px rgba(255, 215, 0, 0.3);

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes */
    --fs-xs: 0.75rem;      /* 12px */
    --fs-sm: 0.875rem;     /* 14px */
    --fs-base: 1rem;       /* 16px */
    --fs-md: 1.125rem;     /* 18px */
    --fs-lg: 1.25rem;      /* 20px */
    --fs-xl: 1.5rem;       /* 24px */
    --fs-2xl: 2rem;        /* 32px */
    --fs-3xl: 2.5rem;      /* 40px */
    --fs-4xl: 3rem;        /* 48px */

    /* Spacing */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1rem;

    /* Header Height */
    --header-height: 70px;
    --header-height-mobile: 60px;
}

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

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

body {
    font-family: var(--font-secondary);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

h1 {
    font-size: var(--fs-3xl);
}

h2 {
    font-size: var(--fs-2xl);
}

h3 {
    font-size: var(--fs-xl);
}

h4 {
    font-size: var(--fs-lg);
}

h5 {
    font-size: var(--fs-md);
}

h6 {
    font-size: var(--fs-base);
}

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

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

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

strong, b {
    font-weight: 600;
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.section-dark {
    background-color: var(--bg-secondary);
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grid {
    display: grid;
}

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

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

/* ============================================
   Header Styles
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 45px;
    width: auto;
}

.header-logo-text {
    font-family: var(--font-primary);
    font-size: var(--fs-xl);
    font-weight: 800;
    background: var(--primary-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    background-color: rgba(255, 215, 0, 0.1);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-gold);
    transition: all var(--transition-fast);
}

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

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

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gold-gradient);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-hover);
    color: var(--bg-primary);
}

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

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--bg-primary);
}

.btn-lg {
    font-size: var(--fs-base);
    padding: var(--space-lg) var(--space-2xl);
}

.btn-sm {
    font-size: var(--fs-xs);
    padding: var(--space-sm) var(--space-md);
}

/* CTA Button (for affiliate links) */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-primary);
    font-size: var(--fs-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-lg) var(--space-2xl);
    background: var(--primary-gold-gradient);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-hover);
    color: var(--bg-primary);
}

.cta-button i {
    transition: transform var(--transition-fast);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* ============================================
   Cards
   ============================================ */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

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

.card-title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}

.card-text {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
}

/* Game Card */
.game-card {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.game-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px) scale(1.02);
}

.game-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-md);
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-info {
    padding: var(--space-md);
}

.game-card-title {
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.game-card-provider {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.game-card-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--primary-gold-gradient);
    color: var(--bg-primary);
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--container-padding) var(--space-3xl);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: var(--fs-4xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    background: var(--primary-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-sm {
    min-height: 50vh;
}

.hero-page {
    min-height: 40vh;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-page::before {
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
}

.hero-responsible {
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(34, 197, 94, 0.05) 50%, var(--bg-secondary) 100%);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-sm);
}

.section-title span {
    color: var(--primary-gold);
}

.section-subtitle {
    font-size: var(--fs-md);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Game Grid
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.game-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

/* ============================================
   Features Section
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl);
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold-gradient);
    border-radius: var(--radius-lg);
    color: var(--bg-primary);
    font-size: var(--fs-xl);
}

.feature-icon-sm {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-md);
    font-size: var(--fs-base);
}

.step-number {
    font-size: var(--fs-xl);
    font-weight: 700;
}

/* Content Box */
.content-box {
    max-width: 800px;
    margin: 0 auto;
}

/* Features Grid Variants */
.features-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

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

/* Responsible Gaming Section */
.responsible-gaming-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

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

.responsible-gaming-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius-md);
}

.responsible-gaming-item i {
    color: var(--accent-success);
    font-size: var(--fs-xl);
}

.responsible-gaming-warning {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    margin-top: var(--space-xl);
}

.responsible-gaming-warning i {
    color: var(--accent-warning);
}

@media (max-width: 768px) {
    .responsible-gaming-grid {
        grid-template-columns: 1fr;
    }
}

.feature-title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}

.feature-text {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

/* ============================================
   Tables
   ============================================ */
.table-container {
    overflow-x: auto;
    margin: var(--space-lg) 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

th, td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--border-primary);
}

th {
    background-color: var(--bg-tertiary);
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    font-size: var(--fs-sm);
    letter-spacing: 0.5px;
}

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

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: rgba(255, 215, 0, 0.05);
}

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

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

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

.faq-question i {
    color: var(--primary-gold);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    max-width: 300px;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-primary);
    font-size: var(--fs-lg);
    font-weight: 800;
    background: var(--primary-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: var(--space-sm);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-primary);
    padding-top: var(--space-xl);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

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

.footer-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

.footer-badge img {
    height: 30px;
    width: auto;
    opacity: 0.7;
}

/* Responsible Gaming Warning */
.footer-warning {
    background-color: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    text-align: center;
}

.footer-warning-icon {
    font-size: var(--fs-xl);
    color: var(--accent-warning);
    margin-bottom: var(--space-sm);
}

.footer-warning-text {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

.footer-warning-text strong {
    color: var(--text-primary);
}

/* Affiliate Disclosure */
.footer-disclosure {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-disclosure-text {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin: 0;
}

.footer-disclosure-text i {
    color: var(--primary-gold);
    margin-right: var(--space-xs);
}

/* Author Box */
.author-box {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-2xl);
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: var(--fs-xl);
    color: var(--bg-primary);
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.author-info .author-title {
    color: var(--primary-gold);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-sm);
}

.author-info p {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-primary);
}

.article-meta span {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

.article-meta i {
    color: var(--primary-gold);
    margin-right: var(--space-xs);
}

/* ============================================
   Utility Classes
   ============================================ */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.py-1 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-2 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-3 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-4 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-5 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .game-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: var(--fs-3xl);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
    }

    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: var(--header-height-mobile);
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--space-xl);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 999;
        overflow-y: auto;
        height: calc(100vh - var(--header-height-mobile));
        min-height: calc(100vh - var(--header-height-mobile));
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: var(--bg-primary);
        padding-bottom: var(--space-xl);
    }

    .nav-link {
        width: 100%;
        padding: var(--space-md);
        font-size: var(--fs-lg);
        background-color: var(--bg-secondary);
        margin-bottom: var(--space-sm);
        border-radius: var(--radius-md);
        text-align: center;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: var(--bg-tertiary);
    }

    .nav .btn {
        width: 100%;
        margin-top: var(--space-lg);
        padding: var(--space-md);
        font-size: var(--fs-lg);
        text-align: center;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hero */
    .hero {
        min-height: 70vh;
        padding-top: calc(var(--header-height-mobile) + var(--space-xl));
    }

    .hero-title {
        font-size: var(--fs-2xl);
    }

    .hero-subtitle {
        font-size: var(--fs-base);
    }

    .hero-cta {
        flex-direction: column;
    }

    /* Grids */
    .game-grid-4,
    .game-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Section */
    .section {
        padding: var(--space-2xl) 0;
    }

    .section-title {
        font-size: var(--fs-xl);
    }

    /* Tables */
    th, td {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--fs-sm);
    }
}

@media (max-width: 480px) {
    .game-grid-4,
    .game-grid-3,
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .btn-lg {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--fs-sm);
    }

    .cta-button {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--fs-sm);
        width: 100%;
    }

    .hero-title {
        font-size: var(--fs-xl);
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Loading placeholder shimmer */
.shimmer {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-tertiary) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
