/* ==========================================================================
   ZB368 LIVE SPORTS - MAIN STYLESHEET (OPTIMIZED FOR PERFORMANCE & SEO)
   Theme: Modern Dark Sports UI, Vibrant Emerald, Electric Gold & Deep Indigo
   ========================================================================== */

:root {
    --bg-dark: #0a0e17;
    --bg-card: #121826;
    --bg-card-hover: #192236;
    --bg-card-subtle: #141c2c;
    --bg-glass: rgba(18, 24, 38, 0.85);
    
    --primary: #00e676;
    --primary-hover: #00c853;
    --primary-glow: rgba(0, 230, 118, 0.35);
    
    --gold: #ffb700;
    --gold-light: #ffd54f;
    --gold-glow: rgba(255, 183, 0, 0.35);

    --accent-red: #ff3d57;
    --accent-blue: #00b0ff;
    
    --text-main: #f0f4f8;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --text-highlight: #ffffff;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 230, 118, 0.25);
    
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px var(--primary-glow);
    --shadow-gold: 0 0 25px var(--gold-glow);
}

/* Reset & Box Sizing */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

ul, ol {
    list-style: none;
}

button, input, select {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Containers */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Announcement Bar */
.top-bar {
    background: linear-gradient(90deg, #09121d 0%, #152238 50%, #09121d 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.marquee-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.badge-live {
    background: var(--accent-red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    animation: pulseRed 1.8s infinite;
    white-space: nowrap;
}

@keyframes pulseRed {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(0.96); }
}

.top-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

/* Header & Nav */
.header-main {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.brand-logo .brand-highlight {
    color: var(--gold);
    text-shadow: 0 0 12px var(--gold-glow);
}

.brand-logo .brand-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #032b14;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
    color: #ffffff;
}

.nav-item.active::after, .nav-item:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00b34d 100%);
    color: #032b14;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
    background: linear-gradient(135deg, #26ff8f 0%, var(--primary) 100%);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #e69d00 100%);
    color: #2b1800;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--gold-glow);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

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

.btn-sm {
    padding: 6px 14px;
    font-size: 0.82rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.pulse-animation {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(0, 230, 118, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 70px 0 60px;
    background: radial-gradient(circle at 50% 20%, #17263d 0%, #0a0e17 80%);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, rgba(255, 183, 0, 0.05) 50%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 183, 0, 0.12);
    border: 1px solid rgba(255, 183, 0, 0.3);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #00e676 0%, #ffb700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 35px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.highlight-num.gold {
    color: var(--gold);
}

.highlight-num.blue {
    color: var(--accent-blue);
}

.highlight-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Match Spotlight Card */
.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
}

.card-header-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.league-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.match-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card-subtle);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 38%;
    text-align: center;
}

.team-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    border: 1px solid var(--border-color);
}

.team-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 24%;
}

.match-vs {
    font-weight: 900;
    color: var(--accent-red);
    font-size: 1rem;
}

.match-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.odds-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.odd-btn {
    background: #1a2336;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.odd-btn:hover {
    border-color: var(--primary);
    background: rgba(0, 230, 118, 0.1);
    transform: translateY(-1px);
}

.odd-type {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
}

.odd-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
}

/* Quick Features / USPs */
.features-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.section-tag {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-icon.gold {
    background: rgba(255, 183, 0, 0.1);
    color: var(--gold);
}

.feature-icon.blue {
    background: rgba(0, 176, 255, 0.1);
    color: var(--accent-blue);
}

.feature-icon.red {
    background: rgba(255, 61, 87, 0.1);
    color: var(--accent-red);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Live Odds Table Section */
.odds-section {
    padding: 60px 0;
    background: #0d131f;
    border-bottom: 1px solid var(--border-color);
}

.odds-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    color: #032b14;
    border-color: var(--primary);
    font-weight: 700;
}

.odds-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.odds-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.odds-table th {
    background: #162033;
    color: var(--text-muted);
    padding: 14px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}

.odds-table th:first-child {
    text-align: left;
}

.odds-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    vertical-align: middle;
}

.odds-table td:first-child {
    text-align: left;
}

.odds-table tr:hover td {
    background: var(--bg-card-hover);
}

.match-info-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.match-teams-row {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.match-league-time {
    font-size: 0.78rem;
    color: var(--gold);
}

.odd-badge {
    display: inline-block;
    background: #1a2336;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: var(--primary);
    min-width: 65px;
    cursor: pointer;
    transition: all 0.2s;
}

.odd-badge:hover {
    background: var(--primary);
    color: #032b14;
    border-color: var(--primary);
}

/* Tournaments Section */
.tournaments-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.tournament-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.tournament-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 183, 0, 0.15);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.tournament-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.tournament-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.tournament-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tournament-stats span {
    color: var(--primary);
    font-weight: 700;
}

/* Sports Predictions / Soi Keo Cards */
.predictions-section {
    padding: 60px 0;
    background: #0d131f;
    border-bottom: 1px solid var(--border-color);
}

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

.prediction-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.prediction-thumb {
    height: 160px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.prediction-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.prediction-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prediction-meta {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
}

.prediction-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.prediction-summary {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.5;
}

.prediction-pick {
    background: var(--bg-card-subtle);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 14px;
}

/* Promotions Banner Section */
.promo-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.promo-card {
    background: linear-gradient(145deg, #162035 0%, #101624 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.promo-tag {
    display: inline-block;
    background: var(--primary);
    color: #032b14;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.promo-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.promo-value {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
}

.promo-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Steps Guide Section */
.guide-section {
    padding: 60px 0;
    background: #0d131f;
    border-bottom: 1px solid var(--border-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold) 0%, #ff8c00 100%);
    color: #000;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Rich SEO Text Content Area */
.seo-content-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.seo-article {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.8;
}

.seo-article h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 30px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin: 22px 0 12px;
}

.seo-article h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin: 16px 0 8px;
}

.seo-article p {
    margin-bottom: 16px;
}

.seo-article ul {
    margin-bottom: 18px;
    padding-left: 20px;
    list-style: disc;
}

.seo-article li {
    margin-bottom: 8px;
}

.seo-article strong {
    color: #ffffff;
}

.seo-keyword-highlight {
    color: var(--primary);
    font-weight: 700;
}

.seo-box-quote {
    background: rgba(0, 230, 118, 0.05);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: #f0fdf4;
}

/* FAQ Accordion */
.faq-section {
    padding: 60px 0;
    background: #0d131f;
    border-bottom: 1px solid var(--border-color);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    padding: 18px 20px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

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

.faq-toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 20px 18px;
    max-height: 500px;
}

/* Breadcrumbs Component */
.breadcrumb-nav {
    padding: 14px 0;
    background: #080c14;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-separator {
    color: var(--text-dim);
}

.breadcrumb-active {
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
.footer-main {
    background: #070a10;
    padding: 60px 0 30px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand-title span {
    color: var(--gold);
}

.footer-text {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.trust-badge-item {
    background: #111723;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* Floating Sticky Mobile Bottom Bar */
.floating-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    z-index: 999;
    padding: 8px 12px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.5);
}

.floating-mobile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.floating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 4px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    background: #141c2c;
    border: 1px solid var(--border-color);
}

.floating-item svg {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    fill: currentColor;
}

.floating-item.active-cta {
    background: linear-gradient(135deg, var(--gold) 0%, #ff8c00 100%);
    color: #111;
    font-weight: 800;
    border-color: var(--gold);
}

.floating-item.active-cta svg {
    fill: #111;
}

/* Quick Betting Modal / Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 35px var(--primary-glow);
    animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
}

.modal-close:hover {
    color: #fff;
}
