/* Font fallback with size-adjust to prevent CLS */
@font-face {
    font-family: 'Playfair Display Fallback';
    src: local('Georgia');
    size-adjust: 112%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Source Sans 3 Fallback';
    src: local('Arial');
    size-adjust: 100%;
    ascent-override: 92%;
    descent-override: 22%;
    line-gap-override: 0%;
}

/* Live Casino Royal Theme - ROYAL_ELEGANCE v17.0 */
/* Deep purple with gold accents - Theater stage style */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Background Hierarchy */
    --bg-deep: #0D0614;
    --bg-stage: #1A0F2E;
    --bg-card: #2D1B4E;
    --bg-elevated: #3D2A5C;
    --bg-overlay: rgba(13, 6, 20, 0.85);

    /* Gold Color System */
    --gold-primary: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    --gold-glow: rgba(212, 175, 55, 0.4);

    /* Purple Accents */
    --purple-primary: #7C3AED;
    --purple-accent: #9333EA;
    --purple-light: #A855F7;
    --purple-glow: rgba(147, 51, 234, 0.3);

    /* Status Colors */
    --live-red: #DC2626;
    --status-green: #22C55E;
    --vip-yellow: #EAB308;

    /* Gradients */
    --gradient-royal: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #D4AF37 100%);
    --gradient-stage: radial-gradient(ellipse at top, #2D1B4E 0%, #0D0614 70%);
    --gradient-spotlight: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.15) 0%, transparent 50%);
    --gradient-card: linear-gradient(180deg, rgba(61,42,92,0.5) 0%, rgba(45,27,78,0.8) 100%);

    /* Text Colors */
    --text-white: #FFFFFF;
    --text-primary: #E8E0F0;
    --text-secondary: #A89BC2;
    --text-muted: #6B5B7A;
    --text-gold: #D4AF37;

    /* Border System */
    --border-subtle: 1px solid rgba(168, 155, 194, 0.15);
    --border-gold: 1px solid var(--gold-primary);
    --border-glow: 2px solid rgba(212, 175, 55, 0.5);

    /* Shadows */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 30px var(--gold-glow);
    --shadow-purple: 0 0 30px var(--purple-glow);
    --shadow-stage: 0 -20px 60px rgba(212, 175, 55, 0.1);

    /* Border Radius */
    --radius-card: 16px;
    --radius-btn: 24px;
    --radius-badge: 8px;
    --radius-full: 9999px;

    /* Fonts */
    --font-display: 'Playfair Display', 'Playfair Display Fallback', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-deep);
    min-height: 100vh;
}

h1, h2, h3, .display-text {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-white);
}

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

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.site-header {
    background: rgba(13, 6, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    color: var(--text-white);
}

.logo:hover {
    color: var(--text-white);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-royal);
    border-radius: var(--radius-badge);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-deep);
    font-size: 18px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-badge);
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 8px;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.main-nav a.active {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 320px;
    background: var(--gradient-stage);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-deep) 100%);
    pointer-events: none;
}

.hero-decoration {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    font-size: 24px;
    color: var(--gold-primary);
    position: relative;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 16px;
    position: relative;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-royal {
    background: var(--gradient-royal);
    color: var(--bg-deep);
}

.btn-royal::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;
}

.btn-royal:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-gold);
    color: var(--bg-deep);
}

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

.btn-royal .suit {
    font-size: 16px;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    padding: 14px 28px;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-gold);
    color: var(--gold-primary);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 15px;
}

/* ============================================
   GAME TYPES SECTION
   ============================================ */
.games-section {
    height: 128px;
    overflow: hidden;
    padding: 40px 0;
    background: var(--bg-stage);
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
}

.games-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.game-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-card);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.game-badge i {
    font-size: 24px;
    color: var(--gold-primary);
}

/* ============================================
   FEATURED SECTION
   ============================================ */
.featured-section {
    padding: 80px 0;
    background: var(--bg-deep);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--gold-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Featured Card - Stream Style */
.featured-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 32px;
    text-align: center;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--gradient-spotlight);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

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

.featured-badge {
    display: inline-block;
    background: var(--gradient-royal);
    color: var(--bg-deep);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.featured-logo {
    width: 80px;
    height: 80px;
    background: var(--bg-elevated);
    border: 3px solid var(--gold-primary);
    border-radius: var(--radius-card);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-display);
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.featured-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-card);
}

.featured-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-family: var(--font-display);
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.featured-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.featured-rating i {
    color: var(--gold-primary);
    font-size: 16px;
}

.featured-score {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.featured-card .btn {
    position: relative;
    z-index: 1;
}

/* Stream Card - Live Video Style */
.stream-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stream-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--gradient-spotlight);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stream-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

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

.video-preview {
    aspect-ratio: 16/9;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 6, 20, 0.9) 100%);
    pointer-events: none;
}

.video-preview .placeholder-icon {
    font-size: 48px;
    color: var(--gold-primary);
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

.live-indicator {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--live-red);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: var(--radius-badge);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--text-white);
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.viewer-count {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(13, 6, 20, 0.8);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: var(--radius-badge);
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.1);
}

.viewer-count i {
    color: var(--gold-primary);
}

/* Dealer Profile */
.dealer-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(13, 6, 20, 0.5);
    border-bottom: var(--border-subtle);
}

.dealer-avatar {
    position: relative;
    flex-shrink: 0;
}

.dealer-avatar .avatar-circle {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--bg-elevated);
    border: 3px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.dealer-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: var(--status-green);
    border: 2px solid var(--bg-card);
    border-radius: 50%;
}

.dealer-info {
    flex: 1;
    min-width: 0;
}

.dealer-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.dealer-title {
    font-size: 13px;
    color: var(--text-secondary);
}

.dealer-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.dealer-rating .stars {
    color: var(--gold-primary);
    font-size: 12px;
    letter-spacing: 2px;
}

.dealer-rating .badge {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    color: var(--bg-deep);
    padding: 3px 10px;
    border-radius: var(--radius-badge);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Table Stats */
.table-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
    margin: 0 20px;
    border-radius: var(--radius-badge);
    overflow: hidden;
}

.stat-item {
    background: var(--bg-card);
    padding: 14px;
    text-align: center;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.stream-card-cta {
    padding: 20px;
}

.stream-card-cta .btn {
    width: 100%;
}

/* ============================================
   RANKINGS SECTION
   ============================================ */
.rankings-section {
    padding: 80px 0;
    background: var(--bg-stage);
}

.ranking-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: var(--border-subtle);
    transition: var(--transition);
}

.ranking-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    transform: translateX(8px);
}

.rank-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 50px;
    text-align: center;
}

.rank-number.top-3 {
    color: var(--gold-primary);
    text-shadow: var(--shadow-gold);
}

.brand-logo {
    width: 70px;
    height: 70px;
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--gold-primary);
    font-family: var(--font-display);
    flex-shrink: 0;
    border: 2px solid var(--gold-primary);
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-card);
}

.brand-info {
    flex: 1;
}

.brand-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-feature {
    background: var(--bg-elevated);
    color: var(--text-secondary);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: var(--border-subtle);
}

.brand-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--gold-primary);
    font-size: 14px;
}

.rating-score {
    font-weight: 700;
    font-size: 18px;
    color: var(--gold-primary);
    font-family: var(--font-display);
}

.brand-cta {
    min-width: 140px;
    text-align: right;
}

/* ============================================
   VIP FEATURES SECTION
   ============================================ */
.vip-section {
    padding: 80px 0;
    background: var(--bg-deep);
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vip-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

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

.vip-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-card);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold-primary);
}

.vip-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-white);
    font-family: var(--font-display);
}

.vip-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-stage);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    margin-bottom: 12px;
    border: var(--border-subtle);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: var(--font-body);
}

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

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

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

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    display: none;
    line-height: 1.7;
}

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

/* ============================================
   ARTICLES SECTION
   ============================================ */
.articles-section {
    padding: 80px 0;
    background: var(--bg-deep);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    overflow: hidden;
    border: var(--border-subtle);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

.article-image {
    aspect-ratio: 16/10;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--gold-primary);
}

.article-image i {
    font-size: 48px;
    color: var(--gold-primary);
    opacity: 0.7;
}

.article-content {
    padding: 24px;
}

.article-category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.article-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-white);
    font-family: var(--font-display);
}

.article-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

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

/* ============================================
   GAME ICONS
   ============================================ */
.game-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.game-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold-primary);
    transition: var(--transition);
}

.game-icon:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

/* Footer Game Icons */
.footer-game-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-game-icons .game-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--bg-deep);
    border-color: var(--gold-primary);
}

/* ============================================
   RANDOM BRAND RECOMMENDATIONS
   ============================================ */
.brand-recommend-card {
    position: relative;
    overflow: hidden;
}

.brand-logo-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-bottom: 2px solid var(--gold-primary);
    aspect-ratio: 16/10;
}

.brand-logo-text {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.brand-recommend-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--live-red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: livePulse 2s ease-in-out infinite;
}

.live-badge i {
    font-size: 6px;
}

.brand-rating-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.brand-rating-inline i {
    color: var(--gold-primary);
    font-size: 14px;
}

.brand-rating-inline span {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.brand-bonus {
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-bonus i {
    font-size: 12px;
}

.brand-tags-small {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.tag-small {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-secondary);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-suits {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    font-size: 24px;
    color: var(--gold-primary);
}

.footer-col h4,
.footer-title {
    color: var(--gold-primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

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

.disclaimer {
    background: var(--bg-card);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 20px;
    border-radius: var(--radius-card);
    margin-top: 40px;
}

.disclaimer p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.disclaimer strong {
    color: var(--live-red);
}

.footer-bottom {
    padding-top: 24px;
    border-top: var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.age-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--live-red);
    padding: 6px 14px;
    border-radius: var(--radius-badge);
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: var(--gradient-stage);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-spotlight);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    position: relative;
    color: var(--gold-primary);
}

.page-header p {
    color: var(--text-secondary);
    font-size: 16px;
    position: relative;
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-section {
    padding: 80px 0;
    background: var(--bg-stage);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-article {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-left: 4px solid var(--gold-primary);
    border-radius: var(--radius-card);
    padding: 32px;
    margin-bottom: 24px;
}

.terms-article h2 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terms-article h2 .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-royal);
    color: var(--bg-deep);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
}

.content-container h2 {
    font-size: 24px;
    margin: 48px 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-family: var(--font-display);
}

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

.content-container h3 {
    font-size: 18px;
    margin: 32px 0 16px;
    color: var(--text-white);
}

.content-container p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-container ul,
.content-container ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-container li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.content-container li::marker {
    color: var(--gold-primary);
}

.content-container strong {
    color: var(--text-white);
}

.terms-warning {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-card);
    padding: 24px;
    margin: 32px 0;
    display: flex;
    gap: 16px;
}

.terms-warning .icon {
    font-size: 32px;
    flex-shrink: 0;
}

.terms-warning p {
    margin: 0;
    color: var(--text-primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes gold-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shimmer-gold {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    background-size: 200% auto;
    animation: gold-shimmer 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes card-enter {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes border-glow {
    0%, 100% { box-shadow: 0 0 5px var(--gold-glow), 0 0 10px var(--gold-glow); }
    50% { box-shadow: 0 0 15px var(--gold-glow), 0 0 30px var(--gold-glow); }
}

.glow-border {
    animation: border-glow 2s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 1440px) {
    .container { max-width: 1320px; }
}

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-stage);
        flex-direction: column;
        padding: 20px;
        border-bottom: var(--border-subtle);
        gap: 0;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 0;
        border-bottom: var(--border-subtle);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 14px;
        letter-spacing: 0.2em;
    }

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

    .ranking-card {
        flex-wrap: wrap;
    }

    .brand-info {
        flex-basis: 100%;
        order: 3;
        margin-top: 16px;
        text-align: center;
    }

    .brand-info .brand-features {
        justify-content: center;
    }

    .brand-rating {
        order: 2;
    }

    .brand-cta {
        order: 4;
        width: 100%;
        text-align: center;
        margin-top: 16px;
    }

    .brand-cta .btn {
        width: 100%;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .games-grid {
        flex-direction: column;
        align-items: center;
    }

    .game-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .game-icons {
        gap: 12px;
    }

    .game-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.text-glow { text-shadow: var(--shadow-gold); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
