/* ==============================================================================
   TIGER 365 - MODERN HIGH-PERFORMANCE DESIGN TOKENS
   Aesthetic: Ultra-Clean, Architectural, Luxury Sports Intelligence Terminal
   ============================================================================== */

html {
    scroll-behavior: smooth;
}

:root {
    /* Deep Obsidian & Carbon Color Space */
    --color-bg-base: #060709;
    --color-bg-surface: #0c0e14;
    --color-bg-card: rgba(15, 18, 26, 0.85);
    --color-bg-glass: rgba(20, 24, 35, 0.65);
    --color-bg-hover: rgba(30, 36, 52, 0.8);

    /* Electric Neon Accents */
    --color-cyan: #00f0ff;
    --color-cyan-glow: rgba(0, 240, 255, 0.35);
    --color-cyan-dim: rgba(0, 240, 255, 0.12);

    --color-lime: #00ff87;
    --color-lime-glow: rgba(0, 255, 135, 0.35);
    --color-lime-dim: rgba(0, 255, 135, 0.12);
    --color-lando-lime: var(--color-lime);
    --color-lando-lime-glow: var(--color-lime-glow);
    --color-lando-lime-dim: var(--color-lime-dim);

    --color-orange: #ff7700;
    --color-orange-glow: rgba(255, 119, 0, 0.35);

    /* WhatsApp Official Green */
    --color-whatsapp: #25d366;
    --color-whatsapp-glow: rgba(37, 211, 102, 0.45);

    /* Text Colors */
    --color-white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #9aa2b6;
    --text-muted: #647087;

    /* Hairline Precision Borders */
    --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
    --border-glass: 1px solid rgba(255, 255, 255, 0.14);
    --border-cyan: 1px solid rgba(0, 240, 255, 0.3);
    --border-lime: 1px solid rgba(0, 255, 135, 0.3);

    /* Modern Typography (Plus Jakarta Sans & JetBrains Mono) */
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-racing: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-telemetry: 'JetBrains Mono', monospace;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Radii */
    --radius-pill: 9999px;
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;

    /* Shadows */
    --shadow-card: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow-cyan: 0 0 30px rgba(0, 240, 255, 0.25);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: var(--color-bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-base);
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

::selection {
    background: var(--color-cyan);
    color: #000;
}

/* ==============================================================================
   TIGER 365 - MODERN RESPONSIVE LAYOUT & NAVIGATION
   ============================================================================== */

/* Fullscreen Background 3D Canvas */
#apex-3d-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.75;
}

/* Base Container */
.container-apex {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ==============================================================================
   UNIFIED TOP NAVIGATION & TICKER SYSTEM (ADMIN BAR COMPATIBLE)
   ============================================================================== */
.apex-top-nav-system {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 7, 9, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
    transition: top 0.2s ease;
}

/* WordPress Admin Bar Compatibility */
body.admin-bar .apex-top-nav-system {
    top: 32px !important;
}
@media screen and (max-width: 782px) {
    body.admin-bar .apex-top-nav-system {
        top: 46px !important;
    }
}

/* Header inside System */
.apex-header {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
}

.apex-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Brand Logo */
.apex-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}

.apex-brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 255, 0, 0.12);
    color: var(--color-lime);
    border: 1px solid rgba(204, 255, 0, 0.4);
    font-family: var(--font-mono, monospace);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    padding: 3px 9px;
    border-radius: 6px;
    margin-left: 4px;
    box-shadow: 0 0 12px rgba(204, 255, 0, 0.2);
}

.apex-brand-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.apex-brand-text span {
    color: var(--color-lime);
}

/* Desktop Navigation */
.apex-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.apex-nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.apex-nav-links a:hover,
.apex-nav-links a.active {
    color: var(--color-cyan);
}

/* Header Actions */
.apex-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Audio Switch */
.apex-audio-btn {
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-subtle);
    padding: 7px 12px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.apex-audio-btn:hover,
.apex-audio-btn.active {
    color: #060709;
    background: var(--color-lime);
    border-color: var(--color-lime);
    box-shadow: 0 0 15px var(--color-lime-glow);
}

/* Latency Badge */
.apex-telemetry-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-lime);
    background: rgba(0, 255, 135, 0.08);
    border: 1px solid rgba(0, 255, 135, 0.25);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
}

.apex-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-lime);
    box-shadow: 0 0 8px var(--color-lime);
    animation: apexPulse 1.4s infinite alternate;
}

@keyframes apexPulse {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Login & Sign Up Buttons (Redirecting to WhatsApp) */
.btn-nav-login {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
}

.btn-nav-login:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
}

.btn-nav-signup {
    background: linear-gradient(135deg, var(--color-lime), #00d26a);
    color: #060709 !important;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 15px var(--color-lime-glow);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-nav-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 25px var(--color-lime);
}

/* Sleek Frosted Glass Hamburger Button (Hidden on Desktop, Visible on Mobile/Tablet) */
.apex-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .apex-hamburger {
        display: inline-flex;
    }
}

.apex-hamburger:hover,
.apex-hamburger:active {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    color: #00ff87;
    transform: scale(1.04);
}

.apex-hamburger svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    display: block;
    pointer-events: none;
}

/* Full Banner Clickable Utility */
.banner-clickable {
    cursor: pointer !important;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.banner-clickable:hover {
    border-color: #ff9900 !important;
    box-shadow: 0 12px 35px rgba(255, 153, 0, 0.2) !important;
}

/* ==============================================================================
   HERO SECTION - FULL WIDTH, WIDE & ZERO OVERFLOW
   ============================================================================== */
.apex-hero {
    padding-top: 28px;
    padding-bottom: 44px;
    position: relative;
    overflow: hidden;
}

.apex-hero-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.apex-hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    color: #ffaa00;
    background: rgba(255, 153, 0, 0.08);
    border: 1px solid rgba(255, 153, 0, 0.28);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}

.apex-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
    word-break: break-word;
    color: #ffffff;
}

.apex-hero-title .brand-sub {
    color: #ff9900;
}

.apex-hero-title .hero-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #00ff87 0%, #00d26a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apex-hero-description {
    font-family: var(--font-sans);
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
    color: #cbd5e1;
    line-height: 1.65;
    margin: 0 auto 24px;
    max-width: 760px;
}

.apex-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* Hero Action Buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.94rem;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #00ff87 0%, #00c97e 100%);
    color: #060709 !important;
    text-decoration: none;
    border: 1px solid #00ff87;
    box-shadow: 0 0 25px rgba(0, 255, 135, 0.4);
    transition: all 0.2s ease;
    animation: heroPulseGlow 2.5s infinite;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 255, 135, 0.65);
}

@keyframes heroPulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 135, 0.4); }
    50% { box-shadow: 0 0 32px rgba(0, 255, 135, 0.7); }
}

.btn-hero-demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.94rem;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    background: rgba(255, 153, 0, 0.08);
    border: 1px solid #ffaa00;
    color: #ffaa00 !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-hero-demo:hover {
    background: rgba(255, 153, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.35);
    transform: translateY(-2px);
}

.btn-hero-odds {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.94rem;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-hero-odds:hover {
    border-color: #00f0ff;
    color: #00f0ff !important;
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

/* 4-Card Hero Trust Grid */
.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.hero-trust-card {
    background: rgba(18, 22, 32, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.hero-trust-card:hover {
    border-color: rgba(0, 255, 135, 0.35);
    transform: translateY(-2px);
    background: rgba(24, 30, 44, 0.85);
}

.trust-icon {
    font-size: 1.35rem;
    display: block;
    margin-bottom: 4px;
}

.trust-title {
    font-family: var(--font-display);
    font-size: 0.98rem;
    display: block;
}

.trust-desc {
    font-family: var(--font-mono);
    font-size: 0.70rem;
    color: #94a3b8;
    display: block;
}

.text-lime { color: #00ff87 !important; }
.text-gold { color: #ffaa00 !important; }
.text-cyan { color: #00f0ff !important; }
.text-purple { color: #d8b4fe !important; }

/* 4-Card Responsive Telemetry Bar (Zero Cutout Risk) */
.apex-hero-telemetry-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    margin-top: 16px;
}

.hero-telemetry-card {
    background: rgba(12, 14, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.hero-telemetry-card:hover {
    border-color: rgba(0, 255, 135, 0.35);
    transform: translateY(-2px);
    background: rgba(18, 22, 32, 0.9);
}

.hero-telemetry-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: #71788a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-telemetry-val {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-telemetry-sub {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #8e95a5;
}

@media (max-width: 900px) {
    .apex-hero-telemetry-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 540px) {
    .apex-hero-telemetry-bar {
        grid-template-columns: 1fr;
    }
}

.btn-apex-primary {
    background: linear-gradient(135deg, var(--color-lime), #00d26a);
    color: #060709 !important;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px var(--color-lime-glow);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-apex-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-lime);
}

.btn-apex-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    border: var(--border-glass);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-apex-secondary:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan) !important;
    background: var(--color-cyan-dim);
}

/* ==============================================================================
   CONTINUOUS TICKER TAPE
   ============================================================================== */
.apex-ticker-tape {
    background: #0d1017;
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 30px 0;
}

.apex-ticker-tape-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    gap: 36px;
    color: var(--text-secondary);
}

.apex-ticker-tape-track span strong {
    color: var(--color-lime);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Bento Grid */
.apex-bento-section {
    padding: 70px 0;
}

.apex-section-header {
    margin-bottom: 40px;
}

.apex-section-tag {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 10px;
}

.apex-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.1;
}

.gapless-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

/* Distinct Sport Game Card Styling */
.sport-market-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sport-market-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-cyan) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px var(--color-cyan-glow);
}

.sport-card-image-wrap {
    position: relative;
    width: 100%;
    height: 165px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 18px;
    background: #080a10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.sport-market-card:hover .sport-card-img {
    transform: scale(1.05);
}

.sport-badge-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(6, 7, 9, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.sport-latency-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 255, 135, 0.12);
    border: 1px solid rgba(0, 255, 135, 0.35);
    color: var(--color-lime);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.sport-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #fff;
}

.sport-card-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 48px;
}

.sport-stat-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sport-stat-label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.sport-stat-val {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--color-lime);
}

.sport-card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
    width: 100%;
}

.btn-sport-play {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #00ff87 0%, #00c97e 100%);
    border: 1px solid #00ff87;
    border-radius: 6px;
    color: #060709 !important;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 10px 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-sport-play:hover {
    box-shadow: 0 0 16px rgba(0, 255, 135, 0.45);
    transform: translateY(-1px);
}

.btn-sport-odds {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-sport-odds:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
}

/* Two-Column Sport Detail Grid */
.sport-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    margin-bottom: 60px;
}

/* ==============================================================================
   PROFESSIONAL ARTICLES CARDS
   ============================================================================== */
.article-card {
    background: rgba(10, 11, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.1);
}

/* ==============================================================================
   FLOATING WHATSAPP BUTTON (BOTTOM-RIGHT)
   ============================================================================== */
.apex-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.whatsapp-radar-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    opacity: 0.35;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.45; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px var(--color-whatsapp-glow);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-float-label {
    background: #0d0e14;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    display: none;
    white-space: nowrap;
}

.apex-whatsapp-float:hover .whatsapp-float-label {
    display: block;
}

/* Footer */
.apex-footer {
    background: #040507;
    border-top: var(--border-subtle);
    padding: 70px 0 40px;
    margin-top: auto;
    position: relative;
}

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

.apex-footer-col h4,
.apex-footer-col .footer-col-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: 0.05em;
}

.apex-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apex-footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.apex-footer-links a:hover {
    color: var(--color-cyan);
}

.apex-disclaimer-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.apex-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    border-top: var(--border-subtle);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Mobile Navigation Drawer */
.apex-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: none;
}

.apex-drawer-overlay.open,
.apex-drawer-overlay.active {
    display: block !important;
}

.apex-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: #090a0f;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding: 28px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.apex-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: var(--border-subtle);
}

.apex-drawer-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.apex-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apex-drawer-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.apex-drawer-links a:hover {
    color: var(--color-cyan);
}

.apex-drawer-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: var(--border-subtle);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .apex-nav-links,
    .btn-nav-login {
        display: none;
    }
    .apex-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .apex-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .apex-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 88px !important;
        padding-bottom: 64px !important;
    }

    .apex-audio-btn,
    .apex-telemetry-badge,
    .btn-nav-demo,
    .btn-nav-login {
        display: none !important;
    }

    /* CARD & BANNER FREEZE PREVENTION ON MOBILE */
    .apex-card,
    .sport-market-card,
    .hero-trust-card,
    .banner-clickable,
    .apex-interactive {
        transform: none !important;
        transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    }

    .apex-header {
        padding: 8px 0 !important;
    }

    .apex-header-inner {
        gap: 8px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .apex-header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
    }

    .apex-brand {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        white-space: nowrap !important;
    }

    .apex-brand-text {
        font-size: 1.12rem !important;
        white-space: nowrap !important;
    }

    .apex-brand-badge {
        font-size: 0.64rem !important;
        padding: 2px 6px !important;
        margin-left: 4px !important;
        white-space: nowrap !important;
    }

    .tiger-lang-switch {
        padding: 2px !important;
    }

    .tiger-lang-btn {
        font-size: 0.68rem !important;
        padding: 4px 6px !important;
    }

    .btn-nav-signup {
        font-size: 0.72rem !important;
        padding: 5px 10px !important;
        height: 32px !important;
        white-space: nowrap !important;
    }

    /* Guaranteed Visible & Accessible Hamburger Button */
    .apex-hamburger {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.14) !important;
        border-radius: 10px !important;
        color: #ffffff !important;
        padding: 0 !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
        transition: all 0.2s ease !important;
    }

    .apex-hamburger:hover,
    .apex-hamburger:active {
        background: rgba(255, 255, 255, 0.14) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #00ff87 !important;
    }

    .apex-hamburger svg {
        width: 20px !important;
        height: 20px !important;
        stroke: currentColor !important;
        stroke-width: 2 !important;
        stroke-linecap: round !important;
        display: block !important;
        pointer-events: none !important;
    }

    /* Hero Responsive */
    .apex-hero {
        padding-top: 16px !important;
        padding-bottom: 28px !important;
    }

    .apex-hero-tagline {
        font-size: 0.68rem !important;
        padding: 4px 10px !important;
        margin-bottom: 12px !important;
    }

    .apex-hero-title {
        font-size: clamp(1.55rem, 5.5vw, 2.1rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
    }

    .apex-hero-description {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
        margin-bottom: 20px !important;
    }

    .apex-hero-actions {
        gap: 8px !important;
        margin-bottom: 22px !important;
    }

    .btn-hero-primary {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 18px !important;
        font-size: 0.88rem !important;
    }

    .btn-hero-demo,
    .btn-hero-odds {
        flex: 1 1 calc(50% - 6px) !important;
        justify-content: center !important;
        padding: 10px 12px !important;
        font-size: 0.78rem !important;
    }

    /* Trust Grid (2x2 on Mobile) */
    .hero-trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin-top: 16px !important;
    }

    .hero-trust-card {
        padding: 10px 8px !important;
    }

    .trust-icon {
        font-size: 1.2rem !important;
        margin-bottom: 2px !important;
    }

    .trust-title {
        font-size: 0.82rem !important;
    }

    .trust-desc {
        font-size: 0.64rem !important;
    }

    /* 12 Games 2-Column Responsive Layout */
    .gapless-bento-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .bento-span-4 {
        grid-column: span 1 !important;
    }

    .sport-market-card {
        padding: 12px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .sport-card-image-wrap {
        height: 110px !important;
        margin-bottom: 8px !important;
    }

    .sport-card-title {
        font-size: 0.88rem !important;
        line-height: 1.25 !important;
        margin-top: 6px !important;
        margin-bottom: 4px !important;
    }

    .sport-card-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
        margin-bottom: 6px !important;
    }

    .sport-stat-row {
        margin-top: 4px !important;
        margin-bottom: 8px !important;
        font-size: 0.70rem !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
    }

    .sport-card-actions {
        display: flex !important;
        gap: 6px !important;
        margin-top: auto !important;
        width: 100% !important;
    }

    .btn-sport-play {
        flex: 1 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        background: linear-gradient(135deg, #00ff87 0%, #00c97e 100%) !important;
        border: 1px solid #00ff87 !important;
        border-radius: 6px !important;
        color: #060709 !important;
        font-weight: 800 !important;
        font-size: 0.72rem !important;
        padding: 8px 4px !important;
        text-decoration: none !important;
        white-space: nowrap !important;
    }

    .btn-sport-odds {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 6px !important;
        color: #fff !important;
        font-weight: 700 !important;
        font-size: 0.70rem !important;
        padding: 8px 8px !important;
        text-decoration: none !important;
        white-space: nowrap !important;
    }

    /* Sport Detail Two Column Layout: Stacks cleanly on Mobile */
    .sport-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .apex-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    /* Floating WhatsApp widget hidden on mobile to prevent collision with bottom nav */
    .apex-whatsapp-float {
        display: none !important;
    }
}

/* ==============================================================================
   AUTHENTIC MOBILE BOTTOM STICKY NAVIGATION BAR
   ============================================================================== */
.apex-mobile-bottom-nav {
    display: none;
}

@media screen and (max-width: 768px) {
    .apex-mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 58px;
        background: rgba(9, 11, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 153, 0, 0.28);
        z-index: 9999;
        align-items: center;
        justify-content: space-around;
        padding: 0 4px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.85);
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #94a3b8;
        font-family: var(--font-display, sans-serif);
        font-size: 0.65rem;
        font-weight: 700;
        gap: 2px;
        flex: 1;
        padding: 4px 0;
        transition: color 0.15s ease;
    }

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

    .bottom-nav-item .nav-icon {
        font-size: 1.15rem;
        line-height: 1;
    }

    .bottom-nav-item.nav-whatsapp-center {
        position: relative;
        top: -12px;
        flex: 1.2;
    }

    .whatsapp-center-bubble {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: linear-gradient(135deg, #00ff87 0%, #00d26a 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 20px rgba(0, 255, 135, 0.6), 0 4px 10px rgba(0, 0, 0, 0.6);
        animation: whatsappRadarPulse 2s infinite;
    }

    .bottom-nav-item.nav-whatsapp-center .nav-label {
        font-size: 0.64rem;
        font-weight: 800;
        color: #00ff87;
        margin-top: 2px;
    }
}

/* ─── MOBILE TELEMETRY CARD & MARKET ROWS OPTIMIZATION (MATCHING SCREENSHOT 1) ─── */
@media (max-width: 768px) {
    .qronos-terminal-window {
        margin: 20px 0 !important;
        border-radius: 16px !important;
    }
    .qronos-terminal-header {
        padding: 10px 14px !important;
    }
    .qronos-kpi-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 14px !important;
    }
    .qronos-kpi-card {
        padding: 12px 14px !important;
        border-radius: 12px !important;
    }
    .qronos-kpi-val {
        font-size: 1.15rem !important;
    }
    .match-tabs-wrap {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 8px !important;
        margin-bottom: 14px !important;
        padding-bottom: 2px !important;
    }
    .match-tabs-wrap::-webkit-scrollbar {
        display: none !important;
    }
    .btn-match-tab {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        padding: 8px 14px !important;
        font-size: 0.76rem !important;
    }
    .match-fixture-panel {
        padding: 16px 14px !important;
        border-radius: 16px !important;
    }
    .match-header-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 14px !important;
        padding-bottom: 12px !important;
    }
    .match-title {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }
    .btn-match-action {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .overflow-x-auto {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .overflow-x-auto::-webkit-scrollbar {
        display: none !important;
    }
}

@media (max-width: 640px) {
    /* Responsive Market Cards (No horizontal scroll, Side-by-Side Back/Lay) */
    .exchange-odds-table {
        display: block !important;
        border-spacing: 0 !important;
        width: 100% !important;
    }
    .exchange-odds-table thead {
        display: none !important;
    }
    .exchange-odds-table tbody {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .exchange-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-gap: 8px !important;
        background: rgba(255, 255, 255, 0.025) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 14px !important;
        padding: 12px !important;
    }
    .exchange-row td {
        padding: 0 !important;
        border: none !important;
    }
    .exchange-team-cell {
        grid-column: 1 / -1 !important;
        padding-bottom: 8px !important;
        margin-bottom: 4px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }
    .btn-back-box,
    .btn-lay-box {
        width: 100% !important;
        padding: 8px 10px !important;
        font-size: 1.05rem !important;
    }
    .match-footer-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }
    .btn-match-view {
        text-align: center !important;
        justify-content: center !important;
    }
}

/* ==============================================================================
   APEX ODDS - LANDO NORRIS RACING COMPONENTS & TELEMETRY HUD
   ============================================================================== */

/* Bento Column Spans */
.bento-span-4 { grid-column: span 4; }
.bento-span-6 { grid-column: span 6; }
.bento-span-8 { grid-column: span 8; }
.bento-span-12 { grid-column: span 12; }

@media (max-width: 1080px) {
    .bento-span-4, .bento-span-6, .bento-span-8 { grid-column: span 6; }
}
@media (max-width: 768px) {
    .bento-span-4, .bento-span-6, .bento-span-8, .bento-span-12 { grid-column: span 12; }
}

/* Lando Norris Racing Card with Angled Chamfer Corner */
.apex-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 32px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.apex-card:hover {
    border-color: var(--color-lando-lime);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px var(--color-lando-lime-dim);
}

/* Racing Number Watermark in Background */
.racing-num-watermark {
    position: absolute;
    top: -10px;
    right: 15px;
    font-family: var(--font-racing);
    font-size: 6.5rem;
    font-weight: 900;
    font-style: italic;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
    z-index: 1;
}

/* Specular Light Sheen */
.apex-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(210, 255, 0, 0.08), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.apex-card-content {
    position: relative;
    z-index: 2;
}

/* Badges */
.apex-badge-lime {
    font-family: var(--font-telemetry);
    font-size: 0.75rem;
    font-weight: 800;
    color: #000;
    background: var(--color-lando-lime);
    padding: 4px 10px;
    transform: skewX(-10deg);
    border-radius: 2px;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.apex-badge-lime * { transform: skewX(10deg); }

.apex-badge-cyan {
    font-family: var(--font-telemetry);
    font-size: 0.75rem;
    font-weight: 800;
    color: #000;
    background: var(--color-cyan);
    padding: 4px 10px;
    transform: skewX(-10deg);
    border-radius: 2px;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.apex-badge-cyan * { transform: skewX(10deg); }

.apex-badge-dark {
    font-family: var(--font-telemetry);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-lando-lime);
    background: rgba(210, 255, 0, 0.1);
    border: 1px solid rgba(210, 255, 0, 0.3);
    padding: 4px 10px;
    border-radius: 2px;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==============================================================================
   FORMULA 1 RACING TELEMETRY HUD (HERO SIMULATOR)
   ============================================================================== */
.simulator-hud {
    background: rgba(10, 13, 20, 0.95);
    border: 1px solid rgba(0, 255, 135, 0.3);
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 135, 0.1);
    position: relative;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* F1 Steering Wheel Rev-Limit LEDs */
.f1-rev-lights {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rev-led {
    flex: 1;
    height: 8px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.15s ease;
}

.rev-led.green.on { background: #00ff66; box-shadow: 0 0 12px #00ff66; }
.rev-led.yellow.on { background: #D2FF00; box-shadow: 0 0 12px #D2FF00; }
.rev-led.red.on { background: #ff0044; box-shadow: 0 0 15px #ff0044; }

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

.sim-league {
    font-family: var(--font-telemetry);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-lando-lime);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sim-teams {
    font-family: var(--font-racing);
    font-size: 1.8rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 4px 0;
}

.sim-venue {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: #8e95a5;
}

/* Win Probability Dual Bar */
.sim-gauge-container {
    margin: 24px 0;
}

.sim-gauge-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-telemetry);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sim-gauge-bar {
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sim-gauge-team-a {
    height: 100%;
    width: 58%;
    background: var(--color-lando-lime);
    box-shadow: 0 0 15px var(--color-lando-lime);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-gauge-team-b {
    height: 100%;
    width: 42%;
    background: #FF6600;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrubbable Slider */
.sim-controls {
    margin: 24px 0 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 18px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sim-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-telemetry);
    font-size: 0.82rem;
    color: #a1a9b8;
    margin-bottom: 12px;
}

.sim-slider-label strong {
    color: var(--color-lando-lime);
    font-size: 1.05rem;
}

.sim-range-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.sim-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    background: var(--color-lando-lime);
    box-shadow: 0 0 20px var(--color-lando-lime);
    cursor: pointer;
    transform: rotate(45deg);
    transition: transform 0.15s ease;
}

.sim-range-input::-webkit-slider-thumb:hover {
    transform: rotate(45deg) scale(1.25);
}

/* F1 Telemetry Mini Stats Grid */
.sim-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.sim-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    padding: 12px;
    text-align: center;
}

.sim-stat-label {
    font-family: var(--font-telemetry);
    font-size: 0.7rem;
    color: #71788a;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.sim-stat-val {
    font-family: var(--font-telemetry);
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
}

/* Odds Chips */
.odds-chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.odds-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-telemetry);
    font-size: 0.85rem;
    text-decoration: none;
    color: #fff;
    transform: skewX(-6deg);
    transition: all 0.2s ease;
}

.odds-chip * { transform: skewX(6deg); }

.odds-chip:hover {
    background: var(--color-lando-lime);
    border-color: var(--color-lando-lime);
    color: #000;
    box-shadow: 0 0 20px var(--color-lando-lime-glow);
    transform: skewX(-6deg) translateY(-3px);
}

.odds-chip:hover strong {
    color: #000;
}

.odds-chip strong {
    color: var(--color-lando-lime);
    font-size: 1.1rem;
    font-weight: 800;
}

/* Search Box */
.apex-search-wrapper {
    position: relative;
    max-width: 540px;
    margin: 0 auto 40px;
}

.apex-search-input {
    width: 100%;
    background: rgba(18, 20, 28, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 16px 24px 16px 54px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    transform: skewX(-6deg);
    transition: all 0.2s ease;
}

.apex-search-input * { transform: skewX(6deg); }

.apex-search-input:focus {
    border-color: var(--color-lando-lime);
    box-shadow: 0 0 30px var(--color-lando-lime-dim);
}

.apex-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: var(--color-lando-lime);
    pointer-events: none;
}

/* Mobile Drawer */
.apex-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
}

.apex-drawer-overlay.open {
    display: block;
}

.apex-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: #0d0e12;
    border-left: 2px solid var(--color-lando-lime);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.apex-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.apex-drawer-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
}

.apex-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apex-drawer-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-racing);
    font-size: 1.3rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}

.apex-drawer-links a:hover {
    color: var(--color-lando-lime);
}

.apex-drawer-footer {
    margin-top: auto;
}

/* ==============================================================================
   ARTICLE RICH CONTENT STYLING
   ============================================================================== */
.article-rich-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 36px 0 16px;
    letter-spacing: -0.02em;
    border-left: 3px solid var(--color-cyan);
    padding-left: 14px;
}

.article-rich-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-lime);
    margin: 24px 0 12px;
}

.article-rich-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-rich-content ul, 
.article-rich-content ol {
    margin: 16px 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-rich-content li {
    line-height: 1.7;
}

.article-rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: rgba(12, 14, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.article-rich-content th {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    text-align: left;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-lime);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-rich-content td {
    padding: 12px 16px;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.article-rich-content tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.article-rich-content blockquote {
    border-left: 4px solid var(--color-lime);
    padding: 16px 20px;
    background: rgba(0, 255, 135, 0.05);
    border-radius: 0 6px 6px 0;
    margin: 24px 0;
    font-style: italic;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .calc-grid-responsive {
        grid-template-columns: 1fr !important;
    }
}


/* ==============================================================================
   TIGER 365 - INDIAN BETTING EXCHANGE & BILINGUAL UI STYLES
   ============================================================================== */

/* Language Switcher */
.tiger-lang-switch {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    padding: 3px;
    gap: 2px;
}

.tiger-lang-btn {
    border: none;
    background: transparent;
    color: #a0aec0;
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.76rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.tiger-lang-btn.active {
    background: linear-gradient(135deg, #ff9900, #ff5500);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(255, 153, 0, 0.4);
}

.tiger-lang-btn:hover:not(.active) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Trust Announcement Bar - Continuous Infinite Marquee Ticker */
.trust-announcement-bar {
    background: linear-gradient(90deg, #090b10 0%, #151a24 50%, #090b10 100%);
    border-bottom: 1px solid rgba(255, 153, 0, 0.25);
    height: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    user-select: none;
}

.trust-ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerInfiniteScroll 35s linear infinite;
    will-change: transform;
}

.trust-ticker-track:hover {
    animation-play-state: paused;
}

.trust-ticker-content {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-right: 18px;
    font-family: var(--font-mono, monospace);
    font-size: 0.74rem;
    color: #cbd5e1;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ticker-sep {
    color: #ff9900;
    opacity: 0.8;
    font-size: 0.65rem;
}

@keyframes tickerInfiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Back & Lay Exchange Odds Board (Indian Bettor Standard) */
.exchange-odds-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    margin: 16px 0;
}

.exchange-odds-table th {
    font-family: var(--font-mono, monospace);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 8px 12px;
    text-align: center;
}

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

.exchange-row {
    background: rgba(18, 22, 31, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.15s ease;
}

.exchange-row:hover {
    background: rgba(26, 32, 44, 0.95);
}

.exchange-team-cell {
    padding: 14px 18px;
    font-family: var(--font-display, sans-serif);
    font-weight: 800;
    font-size: 1.05rem;
    color: #ffffff;
    border-radius: 6px 0 0 6px;
}

.exchange-team-sub {
    display: block;
    font-family: var(--font-mono, monospace);
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 2px;
}

.btn-back-box {
    background: rgba(0, 153, 255, 0.14) !important;
    border: 1px solid rgba(0, 153, 255, 0.4) !important;
    color: #60c5ff !important;
    text-align: center;
    padding: 8px 14px;
    font-family: var(--font-mono, monospace);
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 153, 255, 0.08);
}

.btn-back-box:hover {
    background: rgba(0, 153, 255, 0.28) !important;
    border-color: #60c5ff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.4);
    color: #ffffff !important;
}

.btn-lay-box {
    background: rgba(255, 68, 102, 0.14) !important;
    color: #ff6b8b !important;
    text-align: center;
    padding: 8px 14px;
    font-family: var(--font-mono, monospace);
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 10px;
    border: 1px solid rgba(255, 68, 102, 0.4) !important;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 68, 102, 0.08);
}

.btn-lay-box:hover {
    background: rgba(255, 68, 102, 0.28) !important;
    border-color: #ff6b8b !important;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 68, 102, 0.4);
    color: #ffffff !important;
}

.odds-volume {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0.85;
    margin-top: 2px;
}

/* Payment Methods Strip */
.payment-methods-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    margin: 28px 0;
}

.payment-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: var(--font-mono, monospace);
    font-size: 0.82rem;
    font-weight: 700;
    color: #f1f5f9;
}

.payment-badge-pill span.icon {
    font-size: 1.1rem;
}

/* Step Card Guide */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 840px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: rgba(15, 18, 26, 0.75);
    border: 1px solid rgba(255, 153, 0, 0.2);
    border-radius: 8px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.step-number-tag {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: var(--font-display, sans-serif);
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(255, 153, 0, 0.12);
    line-height: 1;
}

.step-card h3 {
    font-family: var(--font-display, sans-serif);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.step-card p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ==============================================================================
   CRITICAL NAVIGATION BUTTONS & PERSISTENT WHATSAPP FLOATING CONCIERGE
   (Moved from inline style block for PageSpeed Optimization)
   ============================================================================== */
html {
    scroll-behavior: smooth !important;
    scroll-padding-top: 90px !important;
}

body, html {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    background-color: #060709 !important;
    color: #ffffff !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

.btn-nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 8px 18px;
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    transition: all 0.2s ease;
}

.btn-nav-login:hover {
    color: #ff9900;
    border-color: #ff9900;
    background: rgba(255, 153, 0, 0.12);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.3);
}

.btn-nav-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #060709;
    background: linear-gradient(135deg, #00ff87 0%, #00d26a 100%);
    border: 1px solid #00ff87;
    padding: 8px 20px;
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    box-shadow: 0 0 16px rgba(0, 255, 135, 0.4);
    transition: all 0.2s ease;
}

.btn-nav-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 25px rgba(0, 255, 135, 0.7);
}

.btn-nav-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.80rem;
    font-weight: 700;
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.4);
    background: rgba(255, 170, 0, 0.08);
    padding: 7px 14px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-nav-demo:hover {
    background: rgba(255, 170, 0, 0.18);
    box-shadow: 0 0 12px rgba(255, 170, 0, 0.4);
}

.apex-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.whatsapp-radar-ring {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.4;
    animation: wpWhatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes wpWhatsappPulse {
    0% { transform: scale(1); opacity: 0.45; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-btn:hover { transform: scale(1.1); }
.whatsapp-float-btn svg { width: 32px; height: 32px; fill: #ffffff; }

.whatsapp-float-label {
    background: #0c0e14;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 7px 15px;
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    display: none;
}

.apex-whatsapp-float:hover .whatsapp-float-label { display: block; }

@media (max-width: 768px) {
    .apex-whatsapp-float,
    .whatsapp-float-btn,
    .whatsapp-radar-ring,
    .whatsapp-float-label {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    .btn-nav-demo,
    .btn-nav-login,
    .btn-nav-signup {
        display: none !important;
        visibility: hidden !important;
    }
    .apex-hamburger {
        display: inline-flex !important;
        visibility: visible !important;
    }
}


/* ==========================================================================
   PERFORMANCE & AUDIT OPTIMIZATION CLASSES (ELIMINATES INLINE STYLES)
   ========================================================================== */

/* Utility & Layout Helpers */
.cursor-pointer { cursor: pointer; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.overflow-x-auto { overflow-x: auto; }
.m-0 { margin: 0 !important; }
.mt-6 { margin-top: 6px !important; }
.mt-12 { margin-top: 12px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-36 { margin-top: 36px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 2px !important; }
.mb-6 { margin-bottom: 6px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-18 { margin-bottom: 18px !important; }
.mb-20 { margin-bottom: 20px !important; }
.p-24 { padding: 24px !important; }
.p-32 { padding: 32px !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-col { flex-direction: column !important; }
.gap-4 { gap: 4px !important; }
.gap-8 { gap: 8px !important; }
.gap-10 { gap: 10px !important; }
.gap-12 { gap: 12px !important; }
.gap-14 { gap: 14px !important; }
.gap-16 { gap: 16px !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/* Width utilities */
.w-45 { width: 45% !important; }
.w-25 { width: 25% !important; }
.w-100 { width: 100% !important; }

/* Colors */
.text-lime { color: var(--color-lando-lime, #00ff87) !important; }
.text-cyan { color: #00ccff !important; }
.text-gold { color: #ffaa00 !important; }
.text-purple { color: #b56cff !important; }
.text-muted { color: #94a3b8 !important; }
.text-subtle { color: #8e95a5 !important; }
.text-dim { color: #697082 !important; }
.text-white { color: #ffffff !important; }

/* Hero Trust & Bento Cards */
.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}
@media (max-width: 900px) {
    .hero-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .hero-trust-grid { grid-template-columns: 1fr; }
}

.hero-trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.hero-trust-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.hero-trust-card .trust-icon { font-size: 1.4rem; margin-bottom: 2px; }
.hero-trust-card .trust-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; }
.hero-trust-card .trust-desc { font-family: var(--font-mono); font-size: 0.76rem; color: #8e95a5; }

/* Live Cricket Match Center */
.section-live-cricket {
    padding-top: 30px;
    padding-bottom: 50px;
}
.match-tabs-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.btn-match-tab {
    padding: 10px 18px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #9aa1b2;
}
.btn-match-tab.active,
.btn-match-tab[data-match="match-live"].active {
    border-color: #00ff87;
    background: rgba(0, 255, 135, 0.15);
    color: #00ff87;
}
.btn-match-tab[data-match="match-ipl"]:not(.active) {
    border-color: rgba(255, 153, 0, 0.4);
    background: rgba(255, 153, 0, 0.08);
    color: #ffaa00;
}
.match-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff87;
    margin-right: 6px;
    animation: pulseGlow 1.5s infinite;
}
@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.match-fixture-panel {
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    cursor: pointer;
}
.match-panel-live {
    display: block;
    border-color: rgba(0, 255, 135, 0.35);
}
.match-panel-ipl {
    display: none;
    border-color: rgba(255, 153, 0, 0.4);
}
.match-panel-upcoming {
    display: none;
    border-color: rgba(0, 204, 255, 0.35);
}
.match-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.match-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: 4px 0;
}
.match-venue-meta {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #94a3b8;
}
.exchange-sub-brand {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: #ffaa00;
    display: block;
}
.exchange-sub-brand-cyan {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: #00ccff;
    display: block;
}
.btn-match-action {
    padding: 8px 18px;
    font-size: 0.8rem;
    margin-top: 6px;
}
.btn-match-view {
    padding: 8px 16px;
    font-size: 0.8rem;
}
.match-footer-row {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.match-footer-note {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: #94a3b8;
}
.match-footer-note a {
    text-decoration: underline;
}

/* Exchange Odds Table */
.exchange-odds-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    font-family: var(--font-mono, monospace);
    margin: 8px 0;
}
.exchange-odds-table th {
    padding: 10px 14px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: transparent;
    border: none;
    color: #94a3b8;
}
.exchange-odds-table th.col-back { width: 25%; color: #60c5ff; text-align: center; }
.exchange-odds-table th.col-lay { width: 25%; color: #ff6b8b; text-align: center; }
.exchange-odds-table th.col-selection { width: 50%; }
.exchange-row {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.exchange-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}
.exchange-row td {
    padding: 12px 14px;
    vertical-align: middle;
}
.exchange-row td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.exchange-row td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
.exchange-team-cell {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.exchange-team-sub {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 400;
}
.odds-volume {
    font-size: 0.68rem;
    font-weight: 500;
    opacity: 0.85;
}
.odds-live-flicker {
    transition: background-color 0.4s ease;
}

/* Markets Directory Section */
.section-markets {
    background: rgba(10, 12, 17, 0.75);
    padding-top: 60px;
    padding-bottom: 60px;
}
.markets-desc {
    color: #94a3b8;
    max-width: 640px;
    margin: 12px auto 0;
    font-size: 1.05rem;
}

/* Feature & Benefit Cards */
.card-feature {
    padding: 24px;
}
.card-feature-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
}
.card-feature-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.card-feature-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Tag / Chip Styling */
.stat-chip {
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Payment Rail Strip */
.payment-methods-strip {
    background: rgba(12, 14, 20, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}
.payment-strip-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}
.payment-strip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.payment-strip-badge {
    font-size: 0.76rem;
    padding: 4px 10px;
}
.payment-strip-subtitle {
    color: #9aa1b2;
    font-size: 0.85rem;
    font-weight: 500;
}
.payment-badges-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.pay-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 0.80rem;
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pay-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}
.pay-dot-phonepe { background: #5f259f; }
.pay-dot-paytm { background: #00b9f5; }
.pay-dot-gpay { background: #4285f4; }
.pay-dot-upi { background: #00ff87; }
.pay-dot-imps { background: #ff9900; }
.pay-dot-netbanking { background: #00e5ff; }
.pay-dot-usdt { background: #26a17b; }

/* Footer Styling */
.apex-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}
@media (max-width: 900px) {
    .apex-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .apex-footer-grid { grid-template-columns: 1fr; }
}
.footer-disclaimer-box {
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}
.footer-disclaimer-title {
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffaa00;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}
.footer-disclaimer-text {
    font-size: 0.82rem;
    color: #8e95a5;
    line-height: 1.7;
    margin: 0 0 10px 0;
}
.footer-keywords-text {
    font-size: 0.78rem;
    color: #697082;
    line-height: 1.6;
    margin: 0;
}
.apex-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.80rem;
    color: #71788a;
}


/* Additional Performance Utility Classes */
.badge-ipl-accent { background: rgba(255, 153, 0, 0.2) !important; color: #ffaa00 !important; border-color: #ffaa00 !important; }
.link-gold-underline { color: #ffaa00 !important; text-decoration: underline !important; }
.link-cyan-underline { color: #00ccff !important; text-decoration: underline !important; }
.text-no-underline { text-decoration: none !important; }
.card-market-link { display: block !important; text-decoration: none !important; }
.market-card-title { transition: color 0.2s ease !important; margin-top: 14px !important; }
.market-card-desc { font-size: 0.88rem !important; line-height: 1.6 !important; color: #94a3b8 !important; }
.section-sub-strip { background: #0d1017 !important; border-top: 1px solid rgba(255, 255, 255, 0.06) !important; border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important; padding: 48px 0 !important; }
.section-py-60 { padding-top: 60px !important; padding-bottom: 60px !important; }
.section-py-48 { padding-top: 48px !important; padding-bottom: 48px !important; }
.section-py-30 { padding-top: 30px !important; padding-bottom: 30px !important; }
.desc-constrained { text-align: center !important; color: #94a3b8 !important; font-size: 0.88rem !important; max-width: 680px !important; margin: 0 auto 36px auto !important; }
.heading-medium { font-family: var(--font-display) !important; font-size: 1.5rem !important; font-weight: 800 !important; color: #fff !important; }
.faq-accordion-item { padding: 20px !important; border-radius: 6px !important; margin-bottom: 12px !important; cursor: pointer !important; }


/* Article Cards & Grid Optimization */
.section-articles-preview { background: rgba(10, 12, 17, 0.6) !important; padding-top: 60px !important; padding-bottom: 60px !important; }
.article-card-flex { display: flex !important; flex-direction: column !important; justify-content: space-between !important; }
.article-header-row { display: flex !important; justify-content: space-between !important; align-items: center !important; margin-bottom: 16px !important; }
.article-category-badge { font-size: 0.72rem !important; padding: 3px 10px !important; border-radius: 999px !important; background: rgba(0, 240, 255, 0.1) !important; border: 1px solid rgba(0, 240, 255, 0.3) !important; color: #00f0ff !important; font-family: var(--font-mono) !important; font-weight: 700 !important; }
.article-date-meta { font-family: var(--font-mono) !important; font-size: 0.75rem !important; color: #71788a !important; }
.article-card-title { font-family: var(--font-display) !important; font-size: 1.22rem !important; line-height: 1.35 !important; font-weight: 800 !important; color: #fff !important; margin-bottom: 14px !important; transition: color 0.2s ease !important; }
.article-card-excerpt { font-family: var(--font-sans) !important; font-size: 0.90rem !important; color: #94a3b8 !important; line-height: 1.65 !important; margin-bottom: 20px !important; }
.article-author-row { display: flex !important; align-items: center !important; gap: 10px !important; padding-top: 16px !important; border-top: 1px solid rgba(255, 255, 255, 0.08) !important; margin-bottom: 18px !important; }
.article-avatar { width: 32px !important; height: 32px !important; border-radius: 50% !important; background: linear-gradient(135deg, #ff9900, #00ff87) !important; display: flex !important; align-items: center !important; justify-content: center !important; font-weight: 900 !important; font-size: 0.8rem !important; color: #000 !important; }
.article-author-name { font-family: var(--font-display) !important; font-weight: 700 !important; font-size: 0.85rem !important; color: #e2e8f0 !important; }
.article-author-role { font-family: var(--font-mono) !important; font-size: 0.72rem !important; color: #71788a !important; }
.article-footer-actions { display: flex !important; gap: 10px !important; flex-direction: column !important; }

/* FAQ & Section Strips */
.section-strip-40 { background: #0d1017 !important; border-top: 1px solid rgba(255, 255, 255, 0.06) !important; border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important; padding: 40px 0 !important; }
.strip-title { font-family: var(--font-display) !important; font-size: 1.5rem !important; font-weight: 800 !important; color: #fff !important; margin-top: 8px !important; }
.strip-desc { text-align: center !important; color: #94a3b8 !important; font-size: 0.88rem !important; max-width: 680px !important; margin: 0 auto !important; }
.btn-cta-gold { padding: 14px 32px !important; font-size: 1rem !important; background: linear-gradient(135deg, #ff9900, #ff5500) !important; border-color: #ff9900 !important; }
.section-faq-preview { padding-top: 50px !important; padding-bottom: 60px !important; }
.container-max-900 { max-width: 900px !important; margin: 0 auto !important; }
.faq-list-col { margin-top: 32px !important; display: flex !important; flex-direction: column !important; gap: 16px !important; }
.faq-item-title { font-size: 1.1rem !important; font-weight: 700 !important; color: #fff !important; margin-bottom: 8px !important; }
.faq-item-answer { color: #94a3b8 !important; font-size: 0.9rem !important; line-height: 1.6 !important; margin: 0 !important; }
.section-header-flex { display: flex !important; justify-content: space-between !important; align-items: flex-end !important; flex-wrap: wrap !important; gap: 16px !important; }
.header-lead-desc { color: #94a3b8 !important; max-width: 680px !important; margin: 12px 0 0 !important; font-size: 1.05rem !important; }

/* SEO Glossary & Footer Strip Classes */
.gap-18 { gap: 18px !important; }
.mt-10 { margin-top: 10px !important; }
.section-seo-glossary { padding: 40px 0 !important; background: #060709 !important; border-top: 1px solid rgba(255, 255, 255, 0.05) !important; }
.container-max-960 { max-width: 960px !important; margin: 0 auto !important; }
.seo-glossary-body { font-size: 0.82rem !important; color: #64748b !important; line-height: 1.8 !important; }
.seo-glossary-heading { color: #94a3b8 !important; font-size: 0.95rem !important; margin-bottom: 8px !important; }

.btn-footer-wa { padding: 9px 20px !important; font-size: 0.82rem !important; }
.link-wa-green { color: #25d366 !important; text-decoration: none !important; font-weight: 700 !important; }


/* Mobile Drawer & Header Optimization */
.drawer-top-row { display: flex !important; align-items: center !important; gap: 8px !important; }
.drawer-lang-wrap { display: flex !important; justify-content: center !important; margin-bottom: 18px !important; }
.drawer-lang-toggle { width: 100% !important; justify-content: space-around !important; }
.drawer-lang-btn { flex: 1 !important; justify-content: center !important; padding: 6px !important; }
.drawer-auth-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 10px !important; margin-bottom: 20px !important; }
.drawer-btn-auth { padding: 10px !important; justify-content: center !important; }
.drawer-nav-scroll { overflow-y: auto !important; flex: 1 !important; padding-right: 4px !important; }
.drawer-nav-section-title-gold { font-family: var(--font-mono) !important; font-size: 0.72rem !important; color: #ff9900 !important; margin-bottom: 8px !important; font-weight: 700 !important; }
.drawer-nav-section-title-cyan { font-family: var(--font-mono) !important; font-size: 0.72rem !important; color: #00e5ff !important; margin-bottom: 8px !important; font-weight: 700 !important; }
.drawer-nav-section-title-lime { font-family: var(--font-mono) !important; font-size: 0.72rem !important; color: #00ff87 !important; margin-bottom: 8px !important; font-weight: 700 !important; }
.drawer-footer-row { margin-top: auto !important; padding-top: 16px !important; border-top: 1px solid rgba(255, 255, 255, 0.08) !important; }
.drawer-btn-wa { width: 100% !important; justify-content: center !important; background: linear-gradient(135deg, #25d366, #128c7e) !important; border: none !important; font-weight: 800 !important; font-size: 0.82rem !important; }
.d-none { display: none !important; }


.drawer-btn-signup-full { width: 100% !important; justify-content: center !important; background: linear-gradient(135deg, #00ff87, #00c97e) !important; border-color: #00ff87 !important; color: #060709 !important; font-weight: 800 !important; }

/* Official Social Community Desk Styles */
.footer-social-section { margin-top: 18px !important; padding-top: 14px !important; border-top: 1px solid rgba(255, 255, 255, 0.08) !important; }
.footer-social-title { font-family: var(--font-mono, monospace) !important; font-size: 0.72rem !important; color: #ff9900 !important; letter-spacing: 0.08em !important; font-weight: 700 !important; margin-bottom: 10px !important; text-transform: uppercase !important; }
.footer-social-row { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; align-items: center !important; }
.social-btn { display: inline-flex !important; align-items: center !important; gap: 6px !important; padding: 6px 12px !important; background: rgba(255, 255, 255, 0.04) !important; border: 1px solid rgba(255, 255, 255, 0.12) !important; border-radius: 6px !important; font-family: var(--font-mono, monospace) !important; font-size: 0.74rem !important; font-weight: 600 !important; color: #cbd5e1 !important; text-decoration: none !important; transition: all 0.2s ease !important; }
.social-btn:hover { background: rgba(255, 153, 0, 0.12) !important; border-color: #ff9900 !important; color: #ff9900 !important; transform: translateY(-1px) !important; }
.social-btn svg { flex-shrink: 0 !important; fill: currentColor !important; }
.social-btn.facebook:hover { border-color: #1877f2 !important; color: #1877f2 !important; background: rgba(24, 119, 242, 0.12) !important; }
.social-btn.instagram:hover { border-color: #e4405f !important; color: #e4405f !important; background: rgba(228, 64, 95, 0.12) !important; }
.social-btn.youtube:hover { border-color: #ff0000 !important; color: #ff0000 !important; background: rgba(255, 0, 0, 0.12) !important; }
.social-btn.linkedin:hover { border-color: #0a66c2 !important; color: #0a66c2 !important; background: rgba(10, 102, 194, 0.12) !important; }
.social-btn.twitter:hover { border-color: #ffffff !important; color: #ffffff !important; background: rgba(255, 255, 255, 0.12) !important; }
.social-btn.telegram:hover { border-color: #229ed9 !important; color: #229ed9 !important; background: rgba(34, 158, 217, 0.12) !important; }

/* Universal Page Layout & Typography Utilities (Zero-Inline-Style Standard) */
.pt-130 { padding-top: 130px !important; }
.pt-140 { padding-top: 140px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pb-100 { padding-bottom: 100px !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.max-w-640 { max-width: 640px !important; }
.max-w-780 { max-width: 780px !important; }
.max-w-840 { max-width: 840px !important; }
.max-w-960 { max-width: 960px !important; }
.max-w-980 { max-width: 980px !important; }
.max-w-1040 { max-width: 1040px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.p-20 { padding: 20px !important; }
.p-24 { padding: 24px !important; }
.p-30 { padding: 30px !important; }
.p-32 { padding: 32px !important; }
.p-40 { padding: 40px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-14 { margin-bottom: 14px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-48 { margin-bottom: 48px !important; }
.mb-56 { margin-bottom: 56px !important; }
.color-cyan { color: #00f0ff !important; }
.color-lime { color: #00ff87 !important; }
.color-gold { color: #ff9900 !important; }
.color-purple { color: #c084fc !important; }
.color-muted { color: #8e95a5 !important; }
.color-white { color: #ffffff !important; }
.color-subtext { color: #b4bccb !important; }
.color-body { color: #d0d7e5 !important; }
.font-display { font-family: var(--font-display) !important; }
.font-mono { font-family: var(--font-mono) !important; }
.fs-hero { font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important; }
.fs-3rem { font-size: 3rem !important; }
.fs-2-2rem { font-size: 2.2rem !important; }
.fs-1-45rem { font-size: 1.45rem !important; }
.fs-1-15rem { font-size: 1.15rem !important; }
.fs-1rem { font-size: 1rem !important; }
.fs-0-88rem { font-size: 0.88rem !important; }
.fs-0-85rem { font-size: 0.85rem !important; }
.fs-0-8rem { font-size: 0.8rem !important; }
.fs-2-4rem { font-size: 2.4rem !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }
.lh-1 { line-height: 1 !important; }
.lh-1-15 { line-height: 1.15 !important; }
.lh-1-7 { line-height: 1.7 !important; }
.lh-1-8 { line-height: 1.8 !important; }
.letter-spacing-tight { letter-spacing: -0.03em !important; }
.uppercase { text-transform: uppercase !important; }
.d-inline-block { display: inline-block !important; }
.pos-relative { position: relative !important; }
.z-10 { z-index: 10 !important; }
.text-decoration-none { text-decoration: none !important; }
.breadcrumb-nav { font-family: var(--font-mono) !important; font-size: 0.8rem !important; color: #71788a !important; margin-bottom: 24px !important; }
.breadcrumb-link { color: #8e95a5 !important; text-decoration: none !important; }
.stats-grid-4 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important; gap: 16px !important; margin-bottom: 48px !important; }
.border-lime-25 { border-color: rgba(0, 255, 135, 0.25) !important; }
.border-cyan-25 { border-color: rgba(0, 240, 255, 0.25) !important; }
.border-gold-25 { border-color: rgba(255, 153, 0, 0.25) !important; }
.border-purple-25 { border-color: rgba(168, 85, 247, 0.25) !important; }
.badge-gold-bg { background: rgba(255, 153, 0, 0.15) !important; color: #ff9900 !important; border-color: #ff9900 !important; }
.article-table-wrap { overflow-x: auto !important; margin: 24px 0 !important; }
.article-table { width: 100% !important; border-collapse: collapse !important; font-family: var(--font-mono) !important; font-size: 0.88rem !important; }
.article-table thead tr { background: rgba(255, 153, 0, 0.15) !important; color: #ff9900 !important; border-bottom: 2px solid #ff9900 !important; }
.article-table th { padding: 12px !important; text-align: left !important; }
.article-table td { padding: 12px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; }
.article-ref-box { background: rgba(255, 255, 255, 0.03) !important; border-left: 3px solid #ff9900 !important; padding: 16px !important; margin-top: 24px !important; font-size: 0.85rem !important; color: #9aa1b2 !important; }
.article-ref-p { margin-bottom: 8px !important; }
.article-ref-p-last { margin-bottom: 0 !important; }

/* --- Subpage & Component Dedicated Classes (Zero Inline Styles Standard) --- */
.subpage-main { padding-top: 130px !important; padding-bottom: 80px !important; position: relative !important; z-index: 10 !important; }
.subpage-main-140 { padding-top: 140px !important; padding-bottom: 100px !important; text-align: center !important; }
.subpage-header { margin-bottom: 40px !important; text-align: center !important; }
.subpage-header-48 { margin-bottom: 48px !important; text-align: center !important; }
.subpage-title { font-family: var(--font-display) !important; font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: -0.03em !important; margin-bottom: 16px !important; color: #fff !important; line-height: 1.15 !important; }
.subpage-title-clamp { font-family: var(--font-display) !important; font-size: clamp(2rem, 4vw, 3.2rem) !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: -0.03em !important; margin-bottom: 16px !important; color: #fff !important; line-height: 1.15 !important; }
.subpage-lead { color: #b4bccb !important; font-size: 1.15rem !important; line-height: 1.7 !important; max-width: 780px !important; margin: 0 auto !important; }
.subpage-lead-680 { color: #9aa1b2 !important; font-size: 1.15rem !important; line-height: 1.7 !important; max-width: 680px !important; margin: 0 auto !important; }
.subpage-lead-920 { color: #b4bccb !important; font-size: 1.15rem !important; line-height: 1.7 !important; max-width: 920px !important; margin-bottom: 40px !important; }

/* Breadcrumbs */
.breadcrumb-nav { font-family: var(--font-mono) !important; font-size: 0.8rem !important; color: #71788a !important; margin-bottom: 24px !important; }
.breadcrumb-link { color: #8e95a5 !important; text-decoration: none !important; }
.breadcrumb-current { color: var(--color-cyan) !important; font-weight: 700 !important; }
.breadcrumb-current-gold { color: #ff9900 !important; font-weight: 700 !important; }

/* Buttons & Badges */
.btn-article-card { width: 100% !important; justify-content: center !important; font-size: 0.82rem !important; padding: 11px 18px !important; }
.btn-article-read { padding: 6px 14px !important; font-size: 0.8rem !important; }
.badge-subpage { margin-bottom: 14px !important; display: inline-block !important; }
.badge-subpage-12 { margin-bottom: 12px !important; display: inline-block !important; }
.badge-subpage-16 { margin-bottom: 16px !important; display: inline-block !important; }
.badge-gold { background: rgba(255, 153, 0, 0.15) !important; color: #ff9900 !important; border-color: #ff9900 !important; }
.badge-purple { background: rgba(168, 85, 247, 0.2) !important; color: #c084fc !important; border-color: #a855f7 !important; }

/* Stats Bar */
.subpage-stats-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important; gap: 16px !important; margin-bottom: 48px !important; }
.card-stat { padding: 24px !important; text-align: center !important; }
.stat-number { font-family: var(--font-display) !important; font-size: 2.2rem !important; font-weight: 900 !important; }
.stat-label { font-family: var(--font-mono) !important; font-size: 0.8rem !important; color: #8e95a5 !important; text-transform: uppercase !important; }

/* Pillars & Feature Breakdown */
.pillars-list { display: flex !important; flex-direction: column !important; gap: 32px !important; margin-bottom: 56px !important; }
.pillar-card { padding: 32px !important; }
.pillar-inner { display: flex !important; gap: 16px !important; align-items: flex-start !important; }
.pillar-icon { font-size: 2.4rem !important; line-height: 1 !important; }
.pillar-title { font-family: var(--font-display) !important; font-size: 1.45rem !important; font-weight: 800 !important; color: #fff !important; text-transform: uppercase !important; margin-bottom: 12px !important; }
.pillar-text { color: #9aa1b2 !important; font-size: 1rem !important; line-height: 1.7 !important; margin: 0 !important; }

/* Steps Breakdown (How to Login / Signup) */
.steps-container { display: flex !important; flex-direction: column !important; gap: 24px !important; margin-bottom: 48px !important; }
.step-card { padding: 28px !important; display: flex !important; gap: 24px !important; align-items: flex-start !important; }
.step-content { flex: 1 !important; }
.step-badge-row { display: flex !important; gap: 10px !important; align-items: center !important; margin-bottom: 8px !important; }
.step-time { font-family: var(--font-mono) !important; font-size: 0.78rem !important; color: #71788a !important; }
.step-heading { font-family: var(--font-display) !important; font-size: 1.3rem !important; font-weight: 700 !important; color: #fff !important; margin-bottom: 10px !important; }
.step-desc { color: #9aa1b2 !important; font-size: 0.96rem !important; line-height: 1.7 !important; margin: 0 !important; }
.step-num-gold { width: 52px !important; height: 52px !important; border-radius: 12px !important; background: rgba(255, 153, 0, 0.15) !important; border: 2px solid #ff9900 !important; color: #ff9900 !important; display: flex !important; align-items: center !important; justify-content: center !important; font-family: var(--font-display) !important; font-size: 1.5rem !important; font-weight: 900 !important; flex-shrink: 0 !important; }
.step-num-cyan { width: 52px !important; height: 52px !important; border-radius: 12px !important; background: rgba(0, 240, 255, 0.15) !important; border: 2px solid #00f0ff !important; color: #00f0ff !important; display: flex !important; align-items: center !important; justify-content: center !important; font-family: var(--font-display) !important; font-size: 1.5rem !important; font-weight: 900 !important; flex-shrink: 0 !important; }
.step-num-lime { width: 52px !important; height: 52px !important; border-radius: 12px !important; background: rgba(0, 255, 135, 0.15) !important; border: 2px solid #00ff87 !important; color: #00ff87 !important; display: flex !important; align-items: center !important; justify-content: center !important; font-family: var(--font-display) !important; font-size: 1.5rem !important; font-weight: 900 !important; flex-shrink: 0 !important; }
.step-num-purple { width: 52px !important; height: 52px !important; border-radius: 12px !important; background: rgba(168, 85, 247, 0.15) !important; border: 2px solid #a855f7 !important; color: #c084fc !important; display: flex !important; align-items: center !important; justify-content: center !important; font-family: var(--font-display) !important; font-size: 1.5rem !important; font-weight: 900 !important; flex-shrink: 0 !important; }
.tips-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; gap: 16px !important; margin-bottom: 48px !important; }
.tip-card { padding: 24px !important; }
.tip-icon { font-size: 1.8rem !important; margin-bottom: 8px !important; }
.tip-heading { font-family: var(--font-display) !important; font-size: 1.1rem !important; color: #fff !important; margin-bottom: 6px !important; }
.tip-desc { color: #8e95a5 !important; font-size: 0.9rem !important; line-height: 1.6 !important; margin: 0 !important; }

/* Callout & Concierge CTA Boxes */
.cta-box-gold { padding: 40px !important; text-align: center !important; border-color: rgba(255, 153, 0, 0.35) !important; }
.cta-box-lime { padding: 36px !important; text-align: center !important; border-color: rgba(0, 255, 135, 0.3) !important; }
.cta-box-cyan { padding: 36px !important; text-align: center !important; border-color: rgba(0, 240, 255, 0.3) !important; }
.cta-title-1-8 { font-family: var(--font-display) !important; font-size: 1.8rem !important; font-weight: 800 !important; text-transform: uppercase !important; color: #fff !important; margin-bottom: 12px !important; }
.cta-title-1-5 { font-family: var(--font-display) !important; font-size: 1.5rem !important; font-weight: 800 !important; margin-bottom: 10px !important; color: #fff !important; }
.cta-text-640 { color: #9aa1b2 !important; font-size: 1.05rem !important; max-width: 640px !important; margin: 0 auto 24px !important; }
.cta-text-600 { color: var(--text-secondary, #9aa1b2) !important; max-width: 600px !important; margin: 0 auto 24px !important; font-size: 0.95rem !important; line-height: 1.7 !important; }
.cta-btn-gold { font-size: 1.05rem !important; padding: 14px 32px !important; border-radius: 8px !important; display: inline-flex !important; }
.cta-btn-green { font-size: 1rem !important; padding: 12px 28px !important; border-radius: 8px !important; display: inline-flex !important; }

/* FAQ Components */
.faq-categories { display: flex !important; flex-direction: column !important; gap: 36px !important; }
.faq-card { padding: 36px !important; }
.faq-header { display: flex !important; align-items: center !important; gap: 10px !important; margin-bottom: 24px !important; padding-bottom: 16px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; }
.faq-items-list { display: flex !important; flex-direction: column !important; gap: 18px !important; }
.faq-item-box { background: rgba(255, 255, 255, 0.02) !important; border: 1px solid rgba(255, 255, 255, 0.06) !important; border-radius: 8px !important; padding: 22px !important; }
.faq-q { font-family: var(--font-display) !important; font-size: 1.15rem !important; font-weight: 700 !important; color: #fff !important; margin-bottom: 10px !important; }
.faq-a { color: #9aa1b2 !important; font-size: 0.95rem !important; line-height: 1.7 !important; margin: 0 !important; }

/* Terms & Legal */
.terms-card { padding: 44px !important; display: flex !important; flex-direction: column !important; gap: 32px !important; font-size: 0.98rem !important; line-height: 1.8 !important; color: #b4bccb !important; }
.terms-h2 { font-family: var(--font-display) !important; font-size: 1.35rem !important; font-weight: 800 !important; color: #fff !important; text-transform: uppercase !important; margin-bottom: 12px !important; }
.terms-ul { padding-left: 20px !important; margin-top: 8px !important; }

/* VIP Desk */
.vip-hero-card { padding: 48px !important; text-align: center !important; border-color: rgba(0, 240, 255, 0.35) !important; box-shadow: 0 0 50px rgba(0, 240, 255, 0.15) !important; margin-bottom: 48px !important; }
.vip-icon-circle { width: 72px !important; height: 72px !important; background: linear-gradient(135deg, #00ff87, #00c97e) !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; margin: 0 auto 24px !important; box-shadow: 0 0 30px rgba(0, 255, 135, 0.4) !important; }
.vip-wa-number { font-family: var(--font-mono) !important; font-size: 2.2rem !important; font-weight: 800 !important; color: #fff !important; margin: 12px 0 20px !important; }
.vip-chips-row { display: flex !important; justify-content: center !important; gap: 20px !important; flex-wrap: wrap !important; margin-bottom: 32px !important; }
.vip-chip { background: rgba(255, 255, 255, 0.04) !important; padding: 8px 16px !important; border-radius: 999px !important; font-family: var(--font-mono) !important; font-size: 0.8rem !important; }
.vip-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; gap: 24px !important; }

/* Articles Archive & Detail */
.articles-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important; gap: 28px !important; margin-bottom: 56px !important; }
.article-card-item { display: flex !important; flex-direction: column !important; overflow: hidden !important; padding: 28px !important; border-color: rgba(255, 255, 255, 0.08) !important; transition: transform 0.2s, border-color 0.2s !important; }
.article-card-header { display: flex !important; justify-content: space-between !important; align-items: center !important; margin-bottom: 14px !important; }
.article-card-title { font-family: var(--font-display) !important; font-size: 1.3rem !important; font-weight: 800 !important; line-height: 1.35 !important; margin-bottom: 12px !important; }
.article-card-excerpt { color: #9aa1b2 !important; font-size: 0.92rem !important; line-height: 1.65 !important; margin-bottom: 20px !important; flex: 1 !important; }
.article-card-footer { display: flex !important; justify-content: space-between !important; align-items: center !important; padding-top: 16px !important; border-top: 1px solid rgba(255, 255, 255, 0.08) !important; }
.article-author-tag { font-family: var(--font-mono) !important; font-size: 0.75rem !important; color: #71788a !important; }
.article-detail-card { padding: 40px !important; margin-bottom: 40px !important; }
.article-meta-row { display: flex !important; gap: 12px !important; align-items: center !important; flex-wrap: wrap !important; margin-bottom: 20px !important; }
.article-detail-title { font-family: var(--font-display) !important; font-size: clamp(1.8rem, 3.5vw, 3rem) !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: -0.03em !important; margin-bottom: 18px !important; line-height: 1.15 !important; color: #fff !important; }
.article-lead { color: #9aa1b2 !important; font-size: 1.15rem !important; line-height: 1.7 !important; margin-bottom: 24px !important; }
.article-author-box { display: flex !important; align-items: center !important; justify-content: space-between !important; flex-wrap: wrap !important; gap: 16px !important; padding: 16px 20px !important; background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 6px !important; }
.article-body-content { margin-top: 40px !important; color: #d0d7e5 !important; font-size: 1.05rem !important; line-height: 1.85 !important; }
.article-internal-hub { margin-top: 40px !important; padding: 20px !important; background: rgba(255, 153, 0, 0.05) !important; border: 1px solid rgba(255, 153, 0, 0.2) !important; border-radius: 8px !important; }
.article-hub-tag { font-family: var(--font-mono) !important; font-size: 0.78rem !important; color: #ffaa00 !important; text-transform: uppercase !important; letter-spacing: 0.08em !important; display: block !important; margin-bottom: 8px !important; }
.article-hub-links { display: flex !important; flex-wrap: wrap !important; gap: 12px !important; }
.related-articles-header { display: flex !important; justify-content: space-between !important; align-items: flex-end !important; margin-bottom: 20px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; padding-bottom: 12px !important; }

/* Guide & Tables */
.guide-table { width: 100% !important; border-collapse: collapse !important; font-family: var(--font-mono) !important; font-size: 0.85rem !important; text-align: left !important; }
.guide-th { padding: 12px 16px !important; }
.guide-td-bold-white { padding: 14px 16px !important; font-weight: 700 !important; color: #fff !important; }
.guide-td-lime { padding: 14px 16px !important; color: var(--color-lime) !important; }
.guide-td-white { padding: 14px 16px !important; color: #fff !important; }
.guide-td-muted { padding: 14px 16px !important; color: #8e95a5 !important; }
.guide-td-cyan { padding: 14px 16px !important; color: var(--color-cyan) !important; }
.guide-tr-border { border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important; }
.guide-tr-head { border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important; color: var(--color-cyan) !important; }

/* Calculators & Sports */
.calc-card-pad { padding: 36px !important; }
.calc-result-box-green { background: rgba(0, 255, 135, 0.05) !important; border: 1px solid rgba(0, 255, 135, 0.25) !important; border-radius: 8px !important; padding: 28px !important; text-align: center !important; }
.calc-result-box-cyan { background: rgba(0, 240, 255, 0.05) !important; border: 1px solid rgba(0, 240, 255, 0.25) !important; border-radius: 8px !important; padding: 28px !important; text-align: center !important; }
.calc-val-lg { font-family: var(--font-display) !important; font-size: 2.5rem !important; font-weight: 800 !important; }
.sport-hero-banner { width: 100% !important; height: 320px !important; border-radius: 12px !important; overflow: hidden !important; margin-bottom: 36px !important; position: relative !important; }
.sport-hero-img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.sport-hero-overlay { position: absolute !important; inset: 0 !important; background: linear-gradient(180deg, rgba(6,7,9,0.2) 0%, rgba(6,7,9,0.92) 100%) !important; }
.sport-hero-content { position: absolute !important; bottom: 28px !important; left: 28px !important; right: 28px !important; display: flex !important; justify-content: space-between !important; align-items: flex-end !important; }

/* Quick Action Hub & Troubleshooting */
.quick-hub-card { padding: 32px !important; margin-bottom: 48px !important; border-color: rgba(255, 153, 0, 0.35) !important; box-shadow: 0 0 40px rgba(255, 153, 0, 0.1) !important; }
.quick-hub-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; gap: 20px !important; align-items: center !important; }
.quick-hub-sub { font-family: var(--font-mono) !important; font-size: 0.78rem !important; color: #ff9900 !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; display: block !important; margin-bottom: 6px !important; }
.quick-hub-title { font-family: var(--font-display) !important; font-size: 1.6rem !important; font-weight: 800 !important; color: #fff !important; margin: 0 0 6px !important; }
.quick-hub-desc { color: #8e95a5 !important; font-size: 0.88rem !important; margin: 0 !important; }
.quick-hub-actions { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; justify-content: flex-start !important; }
.quick-hub-btn { padding: 12px 20px !important; font-size: 0.88rem !important; }
.trouble-card { padding: 36px !important; margin-bottom: 48px !important; }
.trouble-title { font-family: var(--font-display) !important; font-size: 1.6rem !important; font-weight: 800 !important; text-transform: uppercase !important; color: #fff !important; margin-bottom: 24px !important; }
.trouble-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; gap: 24px !important; }
.trouble-box { background: rgba(255, 255, 255, 0.02) !important; border: 1px solid rgba(255, 255, 255, 0.06) !important; border-radius: 8px !important; padding: 20px !important; }
.trouble-h3-warn { font-family: var(--font-display) !important; font-size: 1.1rem !important; color: #ff9900 !important; margin-bottom: 8px !important; }
.trouble-h3-info { font-family: var(--font-display) !important; font-size: 1.1rem !important; color: #00f0ff !important; margin-bottom: 8px !important; }
.trouble-h3-ok { font-family: var(--font-display) !important; font-size: 1.1rem !important; color: #00ff87 !important; margin-bottom: 8px !important; }
.trouble-p { color: #8e95a5 !important; font-size: 0.9rem !important; line-height: 1.6 !important; margin: 0 !important; }

/* Signup Advantages & Highlights */
.advantages-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important; gap: 16px !important; margin-bottom: 40px !important; }
.advantage-pill-green { background: rgba(0, 255, 135, 0.05) !important; border: 1px solid rgba(0, 255, 135, 0.25) !important; border-radius: 8px !important; padding: 16px 20px !important; text-align: center !important; }
.advantage-pill-gold { background: rgba(255, 153, 0, 0.05) !important; border: 1px solid rgba(255, 153, 0, 0.25) !important; border-radius: 8px !important; padding: 16px 20px !important; text-align: center !important; }
.advantage-pill-cyan { background: rgba(0, 240, 255, 0.05) !important; border: 1px solid rgba(0, 240, 255, 0.25) !important; border-radius: 8px !important; padding: 16px 20px !important; text-align: center !important; }
.advantage-pill-purple { background: rgba(168, 85, 247, 0.05) !important; border: 1px solid rgba(168, 85, 247, 0.25) !important; border-radius: 8px !important; padding: 16px 20px !important; text-align: center !important; }
.advantage-pill-label-green { font-family: var(--font-mono) !important; font-size: 0.78rem !important; color: #00ff87 !important; display: block !important; margin-bottom: 4px !important; }
.advantage-pill-label-gold { font-family: var(--font-mono) !important; font-size: 0.78rem !important; color: #ff9900 !important; display: block !important; margin-bottom: 4px !important; }
.advantage-pill-label-cyan { font-family: var(--font-mono) !important; font-size: 0.78rem !important; color: #00f0ff !important; display: block !important; margin-bottom: 4px !important; }
.advantage-pill-label-purple { font-family: var(--font-mono) !important; font-size: 0.78rem !important; color: #c084fc !important; display: block !important; margin-bottom: 4px !important; }
.advantage-pill-val { color: #fff !important; font-size: 1.1rem !important; font-family: var(--font-display) !important; }
.signup-highlight-card { padding: 36px !important; text-align: center !important; margin-bottom: 48px !important; border-color: rgba(0, 255, 135, 0.35) !important; box-shadow: 0 0 50px rgba(0, 255, 135, 0.12) !important; }
.signup-highlight-sub { font-family: var(--font-mono) !important; font-size: 0.85rem !important; color: #00ff87 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; }
.signup-highlight-num { font-family: var(--font-mono) !important; font-size: clamp(2rem, 4vw, 2.8rem) !important; font-weight: 800 !important; color: #fff !important; margin: 8px 0 16px !important; }
.signup-highlight-p { color: #9aa1b2 !important; font-size: 1rem !important; max-width: 600px !important; margin: 0 auto 24px !important; }
.signup-highlight-btn { font-size: 1.1rem !important; padding: 16px 36px !important; border-radius: 8px !important; justify-content: center !important; display: inline-flex !important; }

/* Payment Rails */
.payment-rails-card { padding: 36px !important; margin-bottom: 48px !important; }
.payment-rails-title { font-family: var(--font-display) !important; font-size: 1.6rem !important; font-weight: 800 !important; text-transform: uppercase !important; color: #fff !important; margin-bottom: 16px !important; }
.payment-rails-sub { color: #8e95a5 !important; font-size: 0.95rem !important; margin-bottom: 24px !important; }
.payment-rails-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important; gap: 16px !important; }
.payment-rail-card { background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 8px !important; padding: 18px !important; text-align: center !important; }
.rail-icon { font-size: 1.8rem !important; margin-bottom: 8px !important; }
.rail-name { color: #fff !important; display: block !important; margin-bottom: 4px !important; }
.rail-sub { font-size: 0.8rem !important; color: #00ff87 !important; font-family: var(--font-mono) !important; }

/* --- Complete Zero-Inline-Style Utilities & Components --- */
.article-link { color: #fff !important; text-decoration: none !important; }

/* Guide Components */
.guide-header-box { margin-bottom: 48px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; padding-bottom: 36px !important; }
.guide-tag-row { display: flex !important; gap: 12px !important; align-items: center !important; margin-bottom: 16px !important; }
.guide-updated-tag { font-family: var(--font-mono) !important; font-size: 0.78rem !important; color: #8e95a5 !important; }
.guide-h1 { font-family: var(--font-display) !important; font-size: clamp(2.4rem, 4.5vw, 3.8rem) !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: -0.03em !important; margin-bottom: 16px !important; line-height: 1.15 !important; color: #fff !important; }
.guide-desc { color: #b4bccb !important; font-size: 1.2rem !important; line-height: 1.7 !important; }
.guide-author-row { font-family: var(--font-mono) !important; font-size: 0.82rem !important; color: var(--color-cyan) !important; margin-top: 16px !important; }
.guide-venue-card { padding: 32px !important; margin-bottom: 48px !important; }
.guide-h3-title { font-family: var(--font-display) !important; font-size: 1.4rem !important; font-weight: 800 !important; text-transform: uppercase !important; margin-bottom: 20px !important; color: #fff !important; }
.guide-table-wrap { overflow-x: auto !important; }
.guide-table { width: 100% !important; border-collapse: collapse !important; font-family: var(--font-mono) !important; font-size: 0.85rem !important; text-align: left !important; }
.guide-tr-head { border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important; color: var(--color-cyan) !important; }
.guide-th { padding: 12px 16px !important; }
.guide-tr-body { border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important; }
.guide-td-bold-white { padding: 14px 16px !important; font-weight: 700 !important; color: #fff !important; }
.guide-td-lime { padding: 14px 16px !important; color: var(--color-lime) !important; }
.guide-td-white { padding: 14px 16px !important; color: #fff !important; }
.guide-td-muted { padding: 14px 16px !important; color: #8e95a5 !important; }
.guide-td-cyan { padding: 14px 16px !important; color: var(--color-cyan) !important; }
.guide-td-lime-12 { padding: 12px 16px !important; font-weight: 700 !important; color: var(--color-lime) !important; }
.guide-td-white-12 { padding: 12px 16px !important; color: #fff !important; }
.guide-td-muted-12 { padding: 12px 16px !important; color: #8e95a5 !important; }
.guide-td-cyan-12 { padding: 12px 16px !important; color: var(--color-cyan) !important; font-weight: 700 !important; }
.guide-sections-list { display: flex !important; flex-direction: column !important; gap: 32px !important; margin-bottom: 48px !important; }
.guide-section-card { padding: 36px !important; }
.guide-h2-title { font-family: var(--font-display) !important; font-size: 1.5rem !important; font-weight: 800 !important; text-transform: uppercase !important; color: #fff !important; margin-bottom: 16px !important; }
.guide-section-content { color: #b4bccb !important; font-size: 1.05rem !important; line-height: 1.8 !important; }
.guide-cta-card { padding: 36px !important; text-align: center !important; border-color: rgba(0, 255, 135, 0.3) !important; }
.guide-cta-h3 { font-family: var(--font-display) !important; font-size: 1.6rem !important; font-weight: 800 !important; text-transform: uppercase !important; margin-bottom: 12px !important; color: #fff !important; }
.guide-cta-p { color: #9aa1b2 !important; max-width: 580px !important; margin: 0 auto 24px !important; font-size: 0.95rem !important; line-height: 1.7 !important; }

/* Calculators */
.calc-wrapper { display: flex !important; flex-direction: column !important; gap: 40px !important; max-width: 1040px !important; margin: 0 auto !important; }
.calc-header { margin-bottom: 48px !important; text-align: center !important; }
.calc-title { font-family: var(--font-display) !important; font-size: clamp(2.4rem, 4.5vw, 3.8rem) !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: -0.03em !important; margin-bottom: 16px !important; color: #fff !important; }
.calc-desc { color: #9aa1b2 !important; font-size: 1.15rem !important; line-height: 1.7 !important; max-width: 720px !important; margin: 0 auto !important; }
.calc-card-header { margin-bottom: 24px !important; }
.calc-h2 { font-family: var(--font-display) !important; font-size: 1.8rem !important; font-weight: 800 !important; text-transform: uppercase !important; margin-top: 8px !important; color: #fff !important; }
.calc-grid-responsive { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
.calc-col-gap { display: flex !important; flex-direction: column !important; gap: 18px !important; }
.calc-col-center { display: flex !important; flex-direction: column !important; justify-content: center !important; }
.calc-label { font-family: var(--font-mono) !important; font-size: 0.8rem !important; color: #8e95a5 !important; display: block !important; margin-bottom: 6px !important; }
.calc-select { border-radius: 6px !important; padding: 12px 16px !important; font-family: var(--font-mono) !important; background: #0c0e14 !important; color: #fff !important; }
.calc-select-plain { border-radius: 6px !important; padding: 12px 16px !important; font-family: var(--font-mono) !important; }
.calc-res-lime { background: rgba(0, 255, 135, 0.05) !important; border: 1px solid rgba(0, 255, 135, 0.25) !important; border-radius: 8px !important; padding: 28px !important; text-align: center !important; }
.calc-res-cyan { background: rgba(0, 240, 255, 0.05) !important; border: 1px solid rgba(0, 240, 255, 0.25) !important; border-radius: 8px !important; padding: 28px !important; text-align: center !important; }
.calc-res-label { font-family: var(--font-mono) !important; font-size: 0.8rem !important; color: #71788a !important; text-transform: uppercase !important; }
.calc-res-val-lime { font-family: var(--font-display) !important; font-size: 2.5rem !important; font-weight: 800 !important; color: var(--color-lime) !important; margin: 8px 0 !important; }
.calc-res-val-cyan { font-family: var(--font-display) !important; font-size: 2.5rem !important; font-weight: 800 !important; color: var(--color-cyan) !important; margin: 8px 0 !important; }
.calc-res-sub-lime { font-family: var(--font-mono) !important; font-size: 0.95rem !important; color: var(--color-lime) !important; font-weight: 700 !important; }
.calc-res-sub-cyan { font-family: var(--font-mono) !important; font-size: 0.95rem !important; color: var(--color-cyan) !important; font-weight: 700 !important; }
.calc-res-note { color: #71788a !important; font-size: 0.82rem !important; line-height: 1.6 !important; margin-top: 16px !important; text-align: center !important; }

/* Sport Details */
.sport-banner-wrap { width: 100% !important; height: 320px !important; border-radius: 12px !important; overflow: hidden !important; margin-bottom: 36px !important; position: relative !important; border: 1px solid rgba(255, 255, 255, 0.12) !important; box-shadow: 0 16px 40px rgba(0,0,0,0.6) !important; }
.sport-banner-img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.sport-banner-overlay { position: absolute !important; inset: 0 !important; background: linear-gradient(180deg, rgba(6,7,9,0.2) 0%, rgba(6,7,9,0.7) 50%, rgba(6,7,9,0.95) 100%) !important; }
.sport-banner-content { position: absolute !important; bottom: 28px !important; left: 28px !important; right: 28px !important; display: flex !important; justify-content: space-between !important; align-items: flex-end !important; flex-wrap: wrap !important; gap: 16px !important; }
.sport-tag-row { display: flex !important; gap: 10px !important; align-items: center !important; margin-bottom: 10px !important; flex-wrap: wrap !important; }
.sport-status-pill { background: rgba(255, 255, 255, 0.1) !important; border: 1px solid rgba(255, 255, 255, 0.2) !important; padding: 4px 10px !important; border-radius: 999px !important; font-family: var(--font-mono) !important; font-size: 0.72rem !important; color: #fff !important; }
.sport-h1 { font-family: var(--font-display) !important; font-size: clamp(2rem, 4vw, 3.2rem) !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: -0.03em !important; color: #fff !important; margin: 0 !important; line-height: 1.1 !important; }
.sport-badge-pill { font-size: 0.85rem !important; padding: 6px 14px !important; }
.sport-desc { color: #b4bccb !important; font-size: 1.15rem !important; line-height: 1.7 !important; max-width: 920px !important; margin-bottom: 40px !important; }
.match-card { padding: 24px !important; }
.match-header { display: flex !important; justify-content: space-between !important; align-items: center !important; margin-bottom: 16px !important; }
.match-tag { font-family: var(--font-mono) !important; font-size: 0.8rem !important; color: var(--color-cyan) !important; font-weight: 700 !important; }
.match-h2 { font-family: var(--font-display) !important; font-size: 1.7rem !important; font-weight: 800 !important; margin-bottom: 8px !important; color: #fff !important; }
.match-venue { font-family: var(--font-mono) !important; font-size: 0.88rem !important; color: #8e95a5 !important; margin-bottom: 24px !important; }
.match-prob-box { background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 8px !important; padding: 18px !important; margin-bottom: 24px !important; }
.match-prob-labels { display: flex !important; justify-content: space-between !important; font-family: var(--font-mono) !important; font-size: 0.82rem !important; margin-bottom: 10px !important; }
.prob-team-a { color: var(--color-cyan) !important; font-weight: 700 !important; }
.prob-team-b { color: #f59e0b !important; font-weight: 700 !important; }
.match-prob-bar { height: 8px !important; width: 100% !important; background: rgba(255, 255, 255, 0.08) !important; border-radius: 999px !important; overflow: hidden !important; display: flex !important; }
.prob-bar-a { background: var(--color-cyan) !important; transition: width 0.3s ease !important; }
.prob-bar-b { background: #f59e0b !important; transition: width 0.3s ease !important; }
.markets-h3 { font-family: var(--font-display) !important; font-size: 1.1rem !important; font-weight: 700 !important; margin: 28px 0 14px !important; text-transform: uppercase !important; color: #fff !important; }
.markets-grid { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important; gap: 12px !important; }
.market-pill { background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 6px !important; padding: 12px 16px !important; display: flex !important; justify-content: space-between !important; align-items: center !important; }
.market-name { font-size: 0.85rem !important; color: #b4bccb !important; }
.market-odds { font-family: var(--font-mono) !important; font-size: 1.1rem !important; color: var(--color-lime) !important; }
.sport-cta-row { margin-top: 32px !important; display: flex !important; gap: 14px !important; flex-wrap: wrap !important; }
.btn-sport-action { font-size: 0.85rem !important; padding: 12px 24px !important; }
.btn-sport-action-sm { font-size: 0.85rem !important; padding: 10px 22px !important; }
.btn-sport-calc { padding: 12px 24px !important; font-size: 0.85rem !important; }
.sport-stats-card { padding: 28px !important; margin-bottom: 24px !important; }
.sport-stats-h3 { font-family: var(--font-display) !important; font-size: 1.2rem !important; font-weight: 800 !important; text-transform: uppercase !important; margin-bottom: 20px !important; color: #fff !important; }
.sport-stats-list { display: flex !important; flex-direction: column !important; gap: 14px !important; }
.sport-stat-row { background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 6px !important; padding: 14px 18px !important; display: flex !important; justify-content: space-between !important; align-items: center !important; }
.sport-stat-label { font-size: 0.88rem !important; color: #b4bccb !important; display: block !important; }
.sport-stat-sub { font-family: var(--font-mono) !important; font-size: 0.72rem !important; color: #71788a !important; }
.sport-stat-val { font-family: var(--font-mono) !important; font-size: 1.25rem !important; color: var(--color-lime) !important; }
.sport-vip-card { padding: 28px !important; border-color: rgba(0, 240, 255, 0.3) !important; }
.sport-vip-badge { margin-bottom: 12px !important; display: inline-block !important; }
.sport-vip-h3 { font-family: var(--font-display) !important; font-size: 1.2rem !important; font-weight: 800 !important; margin-bottom: 8px !important; color: #fff !important; }
.sport-vip-desc { color: #9aa1b2 !important; font-size: 0.88rem !important; line-height: 1.6 !important; margin-bottom: 18px !important; }
.sport-guide-card { padding: 40px !important; margin-bottom: 40px !important; }
.sport-guide-h2 { font-family: var(--font-display) !important; font-size: 1.8rem !important; font-weight: 800 !important; text-transform: uppercase !important; margin-bottom: 16px !important; color: #fff !important; }
.sport-guide-p-lead { color: #b4bccb !important; font-size: 1.05rem !important; line-height: 1.8 !important; margin-bottom: 32px !important; }
.sport-guide-h3 { font-family: var(--font-display) !important; font-size: 1.4rem !important; font-weight: 800 !important; text-transform: uppercase !important; color: var(--color-cyan) !important; margin-bottom: 14px !important; }
.sport-guide-p { color: #b4bccb !important; font-size: 1.05rem !important; line-height: 1.8 !important; }

/* Article Detail */
.article-detail-card { padding: 40px !important; margin-bottom: 40px !important; }
.article-meta-row { display: flex !important; gap: 12px !important; align-items: center !important; flex-wrap: wrap !important; margin-bottom: 20px !important; }
.article-meta-date { font-family: var(--font-mono) !important; font-size: 0.78rem !important; color: #8e95a5 !important; }
.article-title-clamp { font-family: var(--font-display) !important; font-size: clamp(1.8rem, 3.5vw, 3rem) !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: -0.03em !important; margin-bottom: 18px !important; line-height: 1.15 !important; color: #fff !important; }
.article-subtitle { color: #9aa1b2 !important; font-size: 1.15rem !important; line-height: 1.7 !important; margin-bottom: 24px !important; }
.article-author-bar { display: flex !important; align-items: center !important; justify-content: space-between !important; flex-wrap: wrap !important; gap: 16px !important; padding: 16px 20px !important; background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 6px !important; }
.author-desk-label { font-family: var(--font-mono) !important; font-size: 0.75rem !important; color: #71788a !important; display: block !important; }
.author-desk-name { font-family: var(--font-display) !important; font-size: 0.95rem !important; color: var(--color-cyan) !important; }
.btn-discuss-vip { padding: 10px 20px !important; font-size: 0.82rem !important; }
.article-content-body { margin-top: 40px !important; color: #d0d7e5 !important; font-size: 1.05rem !important; line-height: 1.85 !important; }
.article-quick-hub { margin-top: 40px !important; padding: 20px !important; background: rgba(255, 153, 0, 0.05) !important; border: 1px solid rgba(255, 153, 0, 0.2) !important; border-radius: 8px !important; }
.hub-label { font-family: var(--font-mono) !important; font-size: 0.78rem !important; color: #ffaa00 !important; text-transform: uppercase !important; letter-spacing: 0.08em !important; display: block !important; margin-bottom: 8px !important; }
.hub-links-wrap { display: flex !important; flex-wrap: wrap !important; gap: 12px !important; }
.hub-link-btn { padding: 6px 12px !important; font-size: 0.78rem !important; }
.related-section { margin-bottom: 48px !important; }
.related-header-row { display: flex !important; justify-content: space-between !important; align-items: flex-end !important; margin-bottom: 20px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; padding-bottom: 12px !important; }
.related-badge { font-size: 0.72rem !important; margin-bottom: 6px !important; display: inline-block !important; }
.related-h3 { font-family: var(--font-display) !important; font-size: 1.5rem !important; font-weight: 800 !important; color: #fff !important; margin: 0 !important; }
.related-view-all { color: #ffaa00 !important; font-family: var(--font-mono) !important; font-size: 0.8rem !important; text-decoration: none !important; }
.related-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; gap: 20px !important; }
.related-card { padding: 20px !important; display: flex !important; flex-direction: column !important; }
.related-card-top { display: flex !important; justify-content: space-between !important; margin-bottom: 10px !important; }
.related-card-badge { font-size: 0.68rem !important; }
.related-card-readtime { font-family: var(--font-mono) !important; font-size: 0.72rem !important; color: #8e95a5 !important; }
.related-card-h4 { font-family: var(--font-display) !important; font-size: 1.05rem !important; font-weight: 800 !important; line-height: 1.35 !important; margin-bottom: 8px !important; }
.related-card-p { color: #9aa1b2 !important; font-size: 0.82rem !important; line-height: 1.5 !important; margin-bottom: 14px !important; flex: 1 !important; }
.related-card-btn { padding: 5px 12px !important; font-size: 0.75rem !important; align-self: flex-start !important; }
.article-cta-box { padding: 36px !important; text-align: center !important; border-color: rgba(0, 255, 135, 0.3) !important; }
.article-cta-h3 { font-family: var(--font-display) !important; font-size: 1.8rem !important; font-weight: 800 !important; text-transform: uppercase !important; margin-bottom: 12px !important; color: #fff !important; }
.article-cta-p { color: #9aa1b2 !important; max-width: 600px !important; margin: 0 auto 24px !important; font-size: 0.95rem !important; line-height: 1.7 !important; }
h2.faq-category-title { display: inline-block !important; margin: 0 !important; font-size: 0.78rem !important; font-weight: 700 !important; line-height: 1 !important; }
.subpage-section-heading { font-family: var(--font-display) !important; font-size: 1.35rem !important; font-weight: 800 !important; color: #fff !important; text-transform: uppercase !important; }
.prob-bar-fill-a { width: 55%; background: var(--color-cyan); transition: width 0.4s ease; height: 100%; }
.prob-bar-fill-b { width: 45%; background: #f59e0b; transition: width 0.4s ease; height: 100%; }


/* ==============================================================================
   EXTRACTED UTILITY CLASSES (ELIMINATING INLINE STYLES FOR 100% AUDIT PASS)
   ============================================================================== */
.apex-u-1 { display:none; }
.apex-u-2 { width:100%;margin-top:1rem; }
.apex-u-3 { padding-top:100px; }
.apex-u-4 { margin-bottom:1.5rem;font-size:0.85rem;color:var(--muted); }
.apex-u-5 { color:var(--muted); }
.apex-u-6 { color:var(--primary); }
.apex-u-7 { font-size:clamp(2rem, 4.5vw, 3.2rem);margin:0.5rem 0 1rem;line-height:1.2; }
.apex-u-8 { display:flex;gap:1.5rem;color:var(--muted);font-size:0.85rem;margin-bottom:2rem;flex-wrap:wrap;border-bottom:1px solid var(--border);padding-bottom:1rem; }
.apex-u-9 { background:var(--surface2);border-left:4px solid var(--primary);border-radius:10px;padding:1.5rem 2rem;margin-bottom:2.5rem; }
.apex-u-10 { color:var(--primary);margin-bottom:0.5rem;font-size:1.15rem; }
.apex-u-11 { margin-left:1.25rem;color:var(--text);line-height:1.8; }
.apex-u-12 { line-height:1.8;color:var(--text);font-size:1.05rem; }
.apex-u-13 { margin-top:2.5rem; }
.apex-u-14 { margin-left:1.5rem;margin-bottom:2rem; }
.apex-u-15 { margin-bottom:1rem; }
.apex-u-16 { overflow-x:auto;margin:1.5rem 0 2.5rem; }
.apex-u-17 { width:100%; }
.apex-u-18 { background:linear-gradient(135deg, rgba(229,255,0,0.1), rgba(0,212,255,0.05));border:1px solid var(--primary);border-radius:14px;padding:2.5rem;text-align:center;margin:3rem 0; }
.apex-u-19 { font-size:1.6rem;margin-bottom:0.75rem; }
.apex-u-20 { color:var(--muted);max-width:600px;margin:0 auto 1.5rem; }
.apex-u-21 { font-size:1.1rem;padding:1rem 2.5rem; }
.apex-u-22 { margin-top:3rem; }
.apex-u-23 { margin-top:1.5rem; }
.apex-u-24 { background:var(--surface2);border:1px solid var(--border);border-radius:8px;padding:1.25rem;margin-bottom:1rem; }
.apex-u-25 { font-size:1.1rem;color:var(--primary);margin-bottom:0.4rem; }
.apex-u-26 { color:var(--muted);margin:0; }
.apex-u-27 { position:fixed !important; bottom:24px !important; right:24px !important; z-index:9999999 !important; display:inline-flex !important; align-items:center !important; gap:10px !important; background:linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important; color:#ffffff !important; padding:10px 18px 10px 14px !important; border-radius:50px !important; box-shadow:0 10px 25px rgba(37,211,102,0.4),0 4px 10px rgba(0,0,0,0.5) !important; text-decoration:none !important; cursor:pointer !important; }
.apex-u-28 { display:flex;align-items:center;justify-content:center; }
.apex-u-29 { display:flex;flex-direction:column; }
.apex-u-30 { font-size:0.92rem;font-weight:800;line-height:1.1;color:#ffffff; }
.apex-u-31 { font-size:0.72rem;font-weight:700;color:rgba(255,255,255,0.9);display:flex;align-items:center;gap:4px; }
.apex-u-32 { width:6px;height:6px;background:#ccff00;border-radius:50%;display:inline-block; }
.apex-u-33 { border:1px solid var(--border); color:var(--muted); }
.apex-u-34 { padding:1rem 5%;background:var(--surface2);font-size:0.85rem;color:var(--muted); }
.apex-u-35 { list-style:none;display:flex;gap:0.5rem;margin:0;padding:0; }
.apex-u-36 { color:var(--text); }
.apex-u-37 { width:20px;height:20px;fill:var(--muted); }
.apex-u-38 { background:rgba(0,212,255,0.15); color:var(--accent); }
.apex-u-39 { margin-top:1rem; }
.apex-u-40 { text-decoration:underline; }
.apex-u-41 { margin-top:2rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,0.1);display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;font-size:0.85rem;color:var(--muted); }
.apex-u-42 { color:var(--muted);text-decoration:underline; }
.apex-u-43 { padding-top: 8rem; text-align: center; }
.apex-u-44 { max-width: 850px; margin: 0 auto; }
.apex-u-45 { justify-content: center; gap: 1rem; margin-top: 2rem; }
.apex-u-46 { padding: 1rem 2rem; font-size: 1.1rem; }
.apex-u-47 { margin-top: 3rem; }
.apex-u-48 { max-width:1100px;margin:0 auto;padding:4rem 1.5rem; }
.apex-u-49 { text-align:center;margin-bottom:2.5rem; }
.apex-u-50 { display:grid;grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));gap:1.5rem; }
.apex-u-51 { color:#CCFF00; }
.apex-u-52 { color:#00F0FF; }
.apex-u-53 { background: var(--surface2);padding:4rem 1.5rem; }
.apex-u-54 { text-align:center;margin-bottom:2.5rem;max-width:1100px;margin-left:auto;margin-right:auto; }
.apex-u-55 { max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));gap:1.5rem; }
.apex-u-56 { max-width:900px;margin:0 auto;padding:4rem 1.5rem; }
.apex-u-57 { max-width: 800px; margin: 0 auto; }
.apex-u-58 { position:relative;display:flex;align-items:center; }
.apex-u-59 { width:18px!important;height:18px!important;min-width:18px!important;max-width:18px!important;margin-right:8px;color:#a0a0b2; }
.apex-u-60 { min-height:38px;padding:0.4rem 1rem;font-size:0.88rem; }
.apex-u-61 { min-height:38px;padding:0.4rem 1.15rem;font-size:0.88rem; }
.apex-u-62 { padding:6px 14px;font-size:0.85rem; }
.apex-u-63 { overflow-x:hidden;max-width:100vw; }
.apex-u-64 { padding-top:7rem;padding-bottom:3.5rem;text-align:center; }
.apex-u-65 { max-width:1100px;margin:0 auto;padding:0 1.5rem; }
.apex-u-66 { font-size:clamp(2.4rem, 5.5vw, 4.8rem);line-height:1.05;margin:1.5rem 0 1rem;letter-spacing:-0.03em; }
.apex-u-67 { font-size:0.95rem;color:#00F0FF;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:1rem; }
.apex-u-68 { font-size:1.15rem;line-height:1.65;color:#c0c0d2;max-width:820px;margin:0 auto 2.5rem; }
.apex-u-69 { display:flex;justify-content:center;flex-wrap:wrap;gap:1.25rem;margin-bottom:3.5rem; }
.apex-u-70 { padding:1rem 2.2rem;font-size:1.05rem; }
.apex-u-71 { padding:1rem 2rem;font-size:1.05rem; }
.apex-u-72 { margin:0 auto; }
.apex-u-73 { padding:4rem 1.5rem;max-width:1200px;margin:0 auto; }
.apex-u-74 { font-size:2.4rem;letter-spacing:-0.02em; }
.apex-u-75 { display:grid;grid-template-columns:repeat(auto-fit, minmax(360px, 1fr));gap:1.5rem; }
.apex-u-76 { display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem; }
.apex-u-77 { color:#00F0FF;font-size:0.82rem;font-weight:700; }
.apex-u-78 { font-size:0.72rem;padding:3px 10px; }
.apex-u-79 { font-size:1.15rem;font-weight:800;color:#ffffff;margin-bottom:0.4rem; }
.apex-u-80 { color:#a0a0b2;font-size:0.9rem; }
.apex-u-81 { margin:1.25rem 0; }
.apex-u-82 { display:flex;justify-content:space-between;font-size:0.85rem;color:#a0a0b2;margin-bottom:0.5rem; }
.apex-u-83 { color:#CCFF00;font-weight:700; }
.apex-u-84 { display:flex;justify-content:space-between;font-size:0.88rem;font-weight:700;margin-bottom:0.35rem; }
.apex-u-85 { width:64%; }
.apex-u-86 { display:grid;grid-template-columns:repeat(3, 1fr);gap:0.75rem;margin-top:1.5rem;text-align:center; }
.apex-u-87 { background:rgba(255,255,255,0.04);padding:0.75rem;border-radius:8px;border:1px solid rgba(255,255,255,0.06); }
.apex-u-88 { font-size:0.75rem;color:#a0a0b2; }
.apex-u-89 { font-size:1.1rem;font-weight:800;color:#CCFF00;margin-top:0.25rem; }
.apex-u-90 { font-size:1.1rem;font-weight:800;color:#00F0FF;margin-top:0.25rem; }
.apex-u-91 { font-size:1.1rem;font-weight:800;color:#FFB800;margin-top:0.25rem; }
.apex-u-92 { color:#CCFF00;font-size:0.82rem;font-weight:700; }
.apex-u-93 { font-size:0.72rem;padding:3px 10px;background:rgba(0,240,255,0.12);border-color:rgba(0,240,255,0.4);color:#00F0FF; }
.apex-u-94 { display:grid;grid-template-columns:repeat(3, 1fr);gap:0.75rem;margin-bottom:1rem; }
.apex-u-95 { font-size:0.75rem;color:#a0a0b2;display:block;margin-bottom:0.35rem; }
.apex-u-96 { background:rgba(204,255,0,0.06);border:1px solid rgba(204,255,0,0.25);border-radius:10px;padding:1rem;margin:1.25rem 0; }
.apex-u-97 { display:flex;justify-content:space-between;align-items:center;margin-bottom:0.5rem; }
.apex-u-98 { font-size:0.82rem;color:#a0a0b2; }
.apex-u-99 { font-size:1.3rem;font-weight:900;color:#CCFF00; }
.apex-u-100 { display:flex;justify-content:space-between;align-items:center; }
.apex-u-101 { font-size:1.3rem;font-weight:900;color:#00F0FF; }
.apex-u-102 { font-size:0.78rem;color:#CCFF00;margin-top:0.5rem;text-align:right; }
.apex-u-103 { text-align:center; }
.apex-u-104 { width:100%;padding:0.7rem;font-size:0.9rem; }
.apex-u-105 { max-width:1100px;margin:1rem auto 3rem;padding:1.5rem 2rem; }
.apex-u-106 { margin:0;line-height:1.7;color:#e0e0ec; }
.apex-u-107 { color:var(--primary);font-weight:700; }
.apex-u-108 { max-width:1200px;margin:0 auto;padding:3rem 1.5rem; }
.apex-u-109 { padding:2.2rem; }
.apex-u-110 { font-size:2rem;margin-bottom:1rem; }
.apex-u-111 { font-size:1.45rem;color:#ffffff;margin-bottom:0.75rem; }
.apex-u-112 { color:#b0b0c2;line-height:1.7; }
.apex-u-113 { color:var(--primary);text-decoration:underline; }
.apex-u-114 { font-size:1.25rem; }
.apex-u-115 { text-align:center;margin-top:2.5rem; }
.apex-u-116 { padding:0.9rem 2.2rem;font-size:1.05rem; }
.apex-u-117 { background:rgba(14,15,23,0.78);border-top:1px solid rgba(204,255,0,0.2);border-bottom:1px solid rgba(204,255,0,0.2);padding:4rem 1.5rem;text-align:center; }
.apex-u-118 { margin-top: 1.5rem; }
.apex-u-119 { padding:1rem 2.5rem;font-size:1.1rem; }
.apex-u-120 { max-width:1200px;margin:0 auto;padding:4rem 1.5rem; }
.apex-u-121 { max-width:960px;margin:0 auto;line-height:1.85;color:#d0d0dc; }
.apex-u-122 { color:#CCFF00;font-size:1.4rem;margin-top:1.5rem; }
.apex-u-123 { padding-left:1.5rem;margin-top:0.75rem; }
.apex-u-124 { list-style:none;padding:0;line-height:2; }
.apex-u-125 { display:flex;flex-wrap:wrap;gap:10px;margin-top:0.75rem; }
.apex-u-126 { margin-top:1.25rem; }
.apex-u-127 { margin:2.5rem 0;padding:1.25rem 1.5rem;background:rgba(204,255,0,0.05);border:1px solid rgba(204,255,0,0.25);border-radius:12px;display:flex;align-items:center;gap:1rem; }
.apex-u-128 { font-size:1.4rem;font-weight:800;color:#CCFF00;border:2px solid #CCFF00;border-radius:50%;width:44px;height:44px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.apex-u-129 { font-size:0.86rem;line-height:1.6;color:#a0a0b2; }
.apex-u-130 { display:grid;grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));gap:1.5rem;margin-bottom:2rem; }
.apex-u-131 { background:rgba(14,15,23,0.6);padding:1.25rem;border-radius:10px;border:1px solid rgba(255,255,255,0.06); }
.apex-u-132 { font-weight:700;color:#f0f0f5;margin-bottom:0.75rem; }
.apex-u-133 { display:flex;flex-wrap:wrap;gap:8px; }
.apex-u-134 { background:rgba(255,255,255,0.06);padding:4px 10px;border-radius:6px;font-size:0.8rem; }
.apex-u-135 { background:rgba(255,184,0,0.1);color:#FFB800;border:1px solid rgba(255,184,0,0.3);padding:4px 10px;border-radius:6px;font-size:0.8rem; }
.apex-u-136 { background:rgba(37,211,102,0.1);color:#25D366;border:1px solid rgba(37,211,102,0.3);padding:4px 10px;border-radius:6px;font-size:0.8rem;text-decoration:none; }
.apex-u-137 { background:rgba(0,240,255,0.1);color:#00F0FF;border:1px solid rgba(0,240,255,0.3);padding:4px 10px;border-radius:6px;font-size:0.8rem;text-decoration:none; }
.apex-u-138 { border-top:1px solid rgba(255,255,255,0.08);padding-top:2rem;margin-top:2rem; }
.apex-u-139 { color:#f0f0f5;margin-bottom:1.25rem; }
.apex-u-140 { display:grid;grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));gap:1.5rem; }
.apex-u-141 { color:#CCFF00;font-size:0.9rem;margin-bottom:0.75rem; }
.apex-u-142 { list-style:none;padding:0;line-height:2;font-size:0.85rem; }
.apex-u-143 { margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,0.06);text-align:center;color:#7a7a8c;font-size:0.85rem; }
.apex-u-144 { color:#a0a0b2;text-decoration:none; }
.apex-u-145 { position:fixed!important;bottom:24px!important;right:24px!important;z-index:2147483647!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;background:linear-gradient(135deg,#25D366 0%,#128C7E 100%)!important;color:#ffffff!important;padding:12px 22px 12px 18px!important;border-radius:50px!important;box-shadow:0 10px 30px rgba(37,211,102,0.6),0 4px 15px rgba(0,0,0,0.7)!important;text-decoration:none!important;font-weight:800!important;font-size:0.95rem!important;cursor:pointer!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important; }
.apex-u-146 { position:absolute!important;inset:-5px!important;border-radius:50px!important;background:rgba(37,211,102,0.55)!important;z-index:-1!important;animation:tigerWaRadarPulse 2s infinite!important;pointer-events:none!important; }
.apex-u-147 { width:28px!important;height:28px!important;flex-shrink:0!important; }
.apex-u-148 { font-size:0.95rem;font-weight:800;letter-spacing:0.3px;color:#ffffff;white-space:nowrap; }
.apex-u-149 { color:var(--live-red);font-weight:700; }
.apex-u-150 { margin-bottom:0.5rem; }
.apex-u-151 { color: var(--muted); margin-top: 0.5rem; }
.apex-u-152 { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.apex-u-153 { font-weight: 600; }
.apex-u-154 { margin-top: 0; color: #10b981; font-size: 20px; }
.apex-u-155 { color: var(--omni-text-muted); font-size: 14px; }
.apex-u-156 { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.apex-u-157 { margin-top: 0; color: #6366f1; font-size: 20px; }
.apex-u-158 { color: var(--omni-text-main); line-height: 1.8; font-size: 14px; padding-left: 20px; }
.apex-u-159 { margin-top: 30px; }
.apex-u-160 { margin-top: 0; color: #f59e0b; font-size: 22px; }
.apex-u-161 { color: var(--omni-text-muted); font-size: 14px; margin-bottom: 20px; }
.apex-u-162 { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.apex-u-163 { flex: 1; min-width: 280px; }
.apex-u-164 { width: 220px; }
.apex-u-165 { background: rgba(0, 0, 0, 0.4); border: 1px solid var(--omni-glass-border); border-radius: 12px; padding: 20px; min-height: 100px; }
.apex-u-166 { font-size: 12px; color: var(--omni-text-muted); text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.apex-u-167 { font-size: 14px; line-height: 1.6; color: #ffffff; }
.apex-u-168 { color:#f59e0b; }
.apex-u-169 { color:#ef4444; }
.apex-u-170 { padding: 1.1rem 2.5rem; font-size: 1.2rem; background: #25D366; color: #fff; }
.apex-u-171 { background: var(--surface2); }
.apex-u-172 { font-size:2.4rem;letter-spacing:-0.02em;margin:1rem 0; }
.apex-u-173 { color:#a0a0b2;line-height:1.7; }
.apex-u-174 { font-size:1.5rem;color:#CCFF00;margin-top:2.5rem; }
.apex-u-175 { color:#d0d0dc;line-height:1.8; }
.apex-u-176 { margin-bottom:0.75rem; }
.apex-u-177 { text-align: center; margin-top: 1rem; }
.apex-u-178 { padding: 1rem 2.5rem; font-size: 1.1rem; }
.apex-u-179 { border:1px solid var(--border);color:var(--muted); }
.apex-u-180 { background-image:none; }
.apex-u-181 { font-size:1.4rem;padding:1.1rem 2.5rem;width:100%;margin-bottom:1rem; }
.apex-u-182 { font-size:0.8rem;color:var(--muted); }
.apex-u-183 { max-width:300px;margin-bottom:2rem; }
.apex-u-184 { text-align:center;margin-bottom:3rem; }
.apex-u-185 { color:#a0a0b2;line-height:1.7;max-width:760px;margin:0 auto; }
.apex-u-186 { text-decoration:none; }
.apex-u-187 { border:1px solid #2a2a3c;border-radius:12px; }
.apex-u-188 { font-size:0.85rem; }

/**
 * TIGER 365 - Wikipedia-Style Internal Linking, Hovercards, Sticky TOC & Visitor UX Styling
 * High-performance, zero-CLS, athletic cyber-luxury aesthetic.
 */

/* ─── Reading Progress Indicator (Top of Viewport) ─── */
.wiki-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #ff9900 0%, #00ff87 50%, #ccff00 100%);
    box-shadow: 0 0 10px rgba(0, 255, 135, 0.7);
    z-index: 99999;
    pointer-events: none;
    transition: width 0.1s ease-out;
}

/* ─── Wikipedia-Style Contextual Hyperlinks ─── */
.wiki-link {
    color: #00ff87 !important;
    text-decoration: none !important;
    border-bottom: 1px dotted rgba(0, 255, 135, 0.6) !important;
    padding-bottom: 1px !important;
    font-weight: 600 !important;
    position: relative !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
}

.wiki-link:hover,
.wiki-link:focus {
    color: #ccff00 !important;
    border-bottom: 1.5px solid #ccff00 !important;
    background: rgba(204, 255, 0, 0.08) !important;
    border-radius: 2px !important;
}

/* ─── Glassmorphic Wikipedia Hovercard Preview Modal ─── */
.wiki-hovercard {
    position: absolute;
    width: 310px;
    max-width: 90vw;
    background: rgba(13, 16, 26, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 135, 0.35);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 20px rgba(0, 255, 135, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.wiki-hovercard.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wiki-hovercard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.wiki-hovercard-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ff9900;
    background: rgba(255, 153, 0, 0.14);
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255, 153, 0, 0.3);
}

.wiki-hovercard-readtime {
    font-size: 0.72rem;
    color: #8e95a5;
    font-family: var(--font-mono, monospace);
}

.wiki-hovercard-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin: 0 0 6px;
}

.wiki-hovercard-desc {
    font-size: 0.82rem;
    color: #cbd5e1;
    line-height: 1.45;
    margin: 0 0 12px;
}

.wiki-hovercard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 7px 12px;
    background: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
    color: #060709;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wiki-hovercard-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 135, 0.4);
}

/* ─── Wikipedia-Style Table of Contents (TOC) ─── */
.wiki-toc {
    background: rgba(16, 20, 32, 0.85);
    border: 1px solid rgba(255, 153, 0, 0.25);
    border-left: 4px solid #ff9900;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 28px 0 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.wiki-toc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.wiki-toc-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ff9900;
    letter-spacing: 0.3px;
    margin: 0;
    flex: 1;
}

.wiki-toc-toggle {
    background: transparent;
    border: none;
    color: #8e95a5;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 2px 6px;
    font-family: inherit;
    transition: color 0.2s ease;
}

.wiki-toc-toggle:hover {
    color: #00ff87;
}

.wiki-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 480px;
    overflow-y: auto;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.wiki-toc-list.is-collapsed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.wiki-toc-item {
    font-size: 0.88rem;
    line-height: 1.4;
}

.wiki-toc-h2 {
    font-weight: 600;
}

.wiki-toc-h3 {
    margin-left: 18px;
    font-size: 0.82rem;
}

.wiki-toc-link {
    color: #cbd5e1;
    text-decoration: none;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.wiki-toc-link:hover,
.wiki-toc-link.is-active {
    color: #00ff87;
    background: rgba(0, 255, 135, 0.1);
    transform: translateX(3px);
}

.wiki-toc-number {
    color: #ff9900;
    font-family: var(--font-mono, monospace);
    font-weight: 700;
}

.wiki-heading {
    position: relative;
    scroll-margin-top: 110px;
}

.wiki-anchor-link {
    opacity: 0;
    color: #ff9900;
    text-decoration: none;
    margin-left: 8px;
    font-size: 0.8em;
    transition: opacity 0.2s ease;
}

.wiki-heading:hover .wiki-anchor-link {
    opacity: 1;
}

/* ─── E-E-A-T Academic Citations & References ─── */
.wiki-references {
    background: rgba(14, 18, 28, 0.9);
    border: 1px solid rgba(0, 255, 135, 0.2);
    border-top: 3px solid #00ff87;
    border-radius: 12px;
    padding: 22px;
    margin-top: 40px;
    font-size: 0.86rem;
}

.wiki-ref-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.wiki-ref-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.wiki-ref-lead {
    color: #8e95a5;
    font-size: 0.82rem;
    margin-bottom: 16px;
}

.wiki-ref-list {
    margin: 0;
    padding-left: 20px;
    color: #cbd5e1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wiki-ref-item {
    line-height: 1.5;
}

.wiki-ref-num {
    color: #00ff87;
    font-weight: bold;
    font-family: var(--font-mono, monospace);
}

.wiki-ref-cite {
    font-style: normal;
    color: #e2e8f0;
}

/* ─── Instant Search Modal (Cmd+K / Search Trigger) ─── */
.wiki-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 7, 9, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 16px 30px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.wiki-search-modal.is-open {
    display: flex;
    opacity: 1;
}

.wiki-search-dialog {
    background: #0d101a;
    border: 1px solid rgba(0, 255, 135, 0.35);
    border-radius: 16px;
    width: 100%;
    max-width: 620px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 255, 135, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.wiki-search-input-wrap {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 12px;
}

.wiki-search-input-icon {
    font-size: 1.25rem;
    color: #00ff87;
}

.wiki-search-input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-family: inherit;
    width: 100%;
    outline: none;
}

.wiki-search-close-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8e95a5;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: var(--font-mono, monospace);
    cursor: pointer;
    transition: all 0.2s ease;
}

.wiki-search-close-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.wiki-search-results {
    padding: 12px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wiki-search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wiki-search-item:hover,
.wiki-search-item.is-selected {
    background: rgba(0, 255, 135, 0.12);
    border-color: rgba(0, 255, 135, 0.4);
    transform: translateX(4px);
    color: #ffffff;
}

.wiki-search-item-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.wiki-search-item-badge {
    font-size: 0.72rem;
    color: #00ff87;
    background: rgba(0, 255, 135, 0.15);
    padding: 3px 8px;
    border-radius: 12px;
}

/* ─── Mobile Sticky Bottom Navigation Bar ─── */
.tiger-mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 10, 16, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9998;
    padding: 6px 12px 8px;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.7);
}

.tiger-mobile-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 500px;
    margin: 0 auto;
}

.tiger-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #8e95a5;
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.tiger-mobile-nav-item svg,
.tiger-mobile-nav-item .nav-icon {
    font-size: 1.15rem;
    display: block;
}

.tiger-mobile-nav-item:hover,
.tiger-mobile-nav-item.active {
    color: #00ff87;
}

.tiger-mobile-nav-vip {
    color: #ff9900 !important;
}

.tiger-mobile-nav-vip .nav-icon {
    background: linear-gradient(135deg, #ff9900 0%, #ff5252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .tiger-mobile-bottom-bar {
        display: block;
    }
    body {
        padding-bottom: 70px !important;
    }
}

/**
 * TIGER 365 - QRONOS AI-PRODUCT INSPIRED ULTRA-MODERN VISUAL SYSTEM
 * Modeled after the 21st.dev Qronos AI-Agent Scheduler template:
 * Obsidian dark mode, ambient mesh glows, glassmorphism, terminal window styling,
 * micro-dot grid background, and 60fps luxury transitions.
 */

/* ─── 1. Background Grid & Ambient Glows ─── */
body {
    background-color: #060709 !important;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(0, 255, 135, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.06) 0%, transparent 50%),
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) !important;
    background-size: 100% 100%, 100% 100%, 28px 28px !important;
    background-position: 0 0, 0 0, 0 0 !important;
}

.qronos-ambient-glow {
    position: absolute;
    width: 650px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.14) 0%, rgba(0, 240, 255, 0.08) 40%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

/* ─── 2. Top Navigation System (Glassmorphic Pill Bar) ─── */
.apex-header {
    background: rgba(8, 10, 16, 0.82) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6) !important;
}

.apex-nav-links li a {
    color: #cbd5e1 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    padding: 8px 14px !important;
    border-radius: 20px !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.apex-nav-links li a:hover {
    color: #00ff87 !important;
    background: rgba(0, 255, 135, 0.1) !important;
}

/* ─── 3. Qronos Terminal Dashboard Preview Window ─── */
.qronos-terminal-window {
    background: linear-gradient(180deg, rgba(16, 20, 32, 0.95) 0%, rgba(10, 12, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.85),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 40px rgba(0, 255, 135, 0.08);
    overflow: hidden;
    margin: 32px 0;
    position: relative;
    z-index: 1;
}

.qronos-terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.qronos-terminal-title {
    font-size: 0.78rem;
    font-family: var(--font-mono, monospace);
    color: #00ff87;
    letter-spacing: 0.08em;
}

.qronos-terminal-status {
    font-size: 0.74rem;
    color: #94a3b8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono, monospace);
}

.qronos-live-pulse {
    width: 7px;
    height: 7px;
    background: #00ff87;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff87;
    animation: qronosBlink 1.4s infinite;
}

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

/* ─── 4. KPI Stat Metric Boxes ─── */
.qronos-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
}

.qronos-kpi-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.25s ease;
}

.qronos-kpi-card:hover {
    background: rgba(0, 255, 135, 0.06);
    border-color: rgba(0, 255, 135, 0.3);
    transform: translateY(-2px);
}

.qronos-kpi-label {
    font-size: 0.75rem;
    color: #8e95a5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.qronos-kpi-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-mono, monospace);
    display: flex;
    align-items: center;
    gap: 8px;
}

.qronos-kpi-sub {
    font-size: 0.72rem;
    color: #00ff87;
    font-family: var(--font-mono, monospace);
}

/* ─── 5. Modern High-Converting CTA Buttons ─── */
.btn-hero-primary {
    background: linear-gradient(135deg, #00ff87 0%, #60efff 100%) !important;
    color: #060709 !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    padding: 14px 28px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
}

.btn-hero-primary:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 16px 40px rgba(0, 255, 135, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
    color: #000000 !important;
}

.btn-hero-demo {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #cbd5e1 !important;
    font-weight: 700 !important;
    padding: 14px 26px !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}

.btn-hero-demo:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* ─── 6. Bento-Grid Refinements ─── */
.apex-card {
    background: rgba(14, 17, 26, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.apex-card:hover {
    border-color: rgba(0, 255, 135, 0.35) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 255, 135, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

/* ─── 7. Mobile Responsive Adjustments ─── */
@media (max-width: 992px) {
    .qronos-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .qronos-kpi-grid {
        grid-template-columns: 1fr;
        padding: 14px;
    }
    .qronos-terminal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/**
 * TIGER 365 - DIXOR CREATIVE DIGITAL AGENCY THEME SYSTEM
 * Faithfully transformed after the Dixor Creative Digital Agency Template (ValidThemes)
 * High-end creative agency layout: Custom interactive cursor, giant display typography,
 * infinite agency marquee, numbered capabilities grid, filterable case studies,
 * rotating circular badge, and 60fps micro-interactions.
 */

:root {
    --dixor-bg: #090a0f;
    --dixor-card-bg: rgba(18, 20, 29, 0.85);
    --dixor-card-border: rgba(255, 255, 255, 0.09);
    --dixor-accent: #ccff00;
    --dixor-accent-rgb: 204, 255, 0;
    --dixor-cyan: #00f0ff;
    --dixor-gold: #ffb703;
    --dixor-text: #ffffff;
    --dixor-muted: #94a3b8;
    --dixor-font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --dixor-font-mono: 'JetBrains Mono', monospace;
}

/* ─── 1. Clean Native System Cursor & Smooth Pointer ─── */
html, body {
    cursor: default !important;
}
a, button, input[type="button"], input[type="submit"], select, .btn-match-tab, .dixor-odds-pill, .btn-back-box, .btn-lay-box {
    cursor: pointer !important;
}

/* ─── 2. Global Typography & Background ─── */
body {
    background-color: var(--dixor-bg) !important;
    color: var(--dixor-text) !important;
    font-family: var(--dixor-font-display);
    overflow-x: hidden;
}

/* Smooth background grid & subtle ambient glow */
.dixor-page-wrapper {
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(204, 255, 0, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 65%, rgba(0, 240, 255, 0.04) 0%, transparent 45%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
}

/* Eyebrow Agency Badge */
.dixor-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(204, 255, 0, 0.08);
    border: 1px solid rgba(204, 255, 0, 0.3);
    border-radius: 30px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dixor-accent);
    margin-bottom: 20px;
}

.dixor-eyebrow .dixor-pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--dixor-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--dixor-accent);
    animation: dixorBlink 1.4s infinite;
}

@keyframes dixorBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

/* ─── 3. Dixor Creative Agency Hero Section ─── */
.dixor-hero {
    position: relative;
    padding: 130px 0 80px;
    overflow: hidden;
}

.dixor-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.dixor-hero-title {
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.dixor-hero-title .highlight-accent {
    color: var(--dixor-accent);
    background: linear-gradient(135deg, #ccff00 0%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.dixor-hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 620px;
    margin-bottom: 36px;
}

.dixor-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

/* Magnetic Creative Agency Button */
.btn-dixor-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--dixor-accent);
    color: #090a0f !important;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-dixor-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 45px rgba(204, 255, 0, 0.5);
    background: #d8ff33;
}

.btn-dixor-primary .btn-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #090a0f;
    color: var(--dixor-accent);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-dixor-primary:hover .btn-arrow-circle {
    transform: rotate(45deg);
}

.btn-dixor-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-dixor-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(204, 255, 0, 0.5);
    color: var(--dixor-accent) !important;
    transform: translateY(-2px);
}

/* Agency Social Proof Strip */
.dixor-proof-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dixor-avatars-cluster {
    display: flex;
}

.dixor-avatars-cluster .avatar-item {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #090a0f;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
}

.dixor-avatars-cluster .avatar-item:first-child { margin-left: 0; }
.avatar-bg-1 { background: linear-gradient(135deg, #ff416c, #ff4b2b); }
.avatar-bg-2 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.avatar-bg-3 { background: linear-gradient(135deg, #f857a6, #ff5858); }
.avatar-bg-4 { background: linear-gradient(135deg, #2193b0, #6dd5ed); }

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

.dixor-proof-text strong {
    color: #ffffff;
}

/* ─── 4. Dixor Hero Showcase Visual Card ─── */
.dixor-hero-card {
    position: relative;
    background: linear-gradient(180deg, rgba(22, 26, 38, 0.95) 0%, rgba(12, 14, 22, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Rotating Creative Stamp Badge */
.dixor-rotating-badge {
    position: absolute;
    top: -24px;
    right: -20px;
    width: 104px;
    height: 104px;
    z-index: 10;
}

.dixor-rotating-svg {
    animation: dixorSpin 14s linear infinite;
    transform-origin: center;
}

@keyframes dixorSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dixor-badge-inner-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
}

/* Hero Telemetry Visual Strip */
.dixor-telemetry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dixor-telemetry-label {
    font-size: 0.75rem;
    font-family: var(--dixor-font-mono);
    color: var(--dixor-accent);
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dixor-live-match-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.dixor-match-teams {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.dixor-match-score {
    font-size: 0.88rem;
    color: var(--dixor-accent);
    font-family: var(--dixor-font-mono);
    margin-bottom: 14px;
}

.dixor-odds-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dixor-odds-pill {
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 800;
    font-family: var(--dixor-font-mono);
    transition: transform 0.2s ease;
    text-decoration: none !important;
}

.dixor-odds-pill:hover { transform: translateY(-2px); }
.dixor-odds-back { background: rgba(0, 153, 255, 0.16); border: 1px solid rgba(0, 153, 255, 0.4); color: #60c5ff; }
.dixor-odds-lay { background: rgba(255, 68, 102, 0.16); border: 1px solid rgba(255, 68, 102, 0.4); color: #ff6b8b; }

/* ─── 5. Infinite Agency Marquee / Text Ticker ─── */
.dixor-marquee-section {
    position: relative;
    padding: 30px 0;
    background: rgba(204, 255, 0, 0.03);
    border-top: 1px solid rgba(204, 255, 0, 0.15);
    border-bottom: 1px solid rgba(204, 255, 0, 0.15);
    overflow: hidden;
    white-space: nowrap;
}

.dixor-marquee-track {
    display: flex;
    width: max-content;
    animation: dixorMarquee 26s linear infinite;
}

@keyframes dixorMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.dixor-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 20px;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.dixor-marquee-item .text-stroke {
    -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.5);
    color: transparent;
}

.dixor-marquee-item .text-solid {
    color: #ffffff;
}

.dixor-marquee-item .marquee-star {
    color: var(--dixor-accent);
    font-size: 1.2rem;
}

/* ─── 6. Dixor About Agency Section ─── */
.dixor-about-section {
    padding: 100px 0;
    position: relative;
}

.dixor-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dixor-about-headline {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
}

.dixor-about-headline span {
    color: var(--dixor-accent);
}

.dixor-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.dixor-stat-card {
    background: var(--dixor-card-bg);
    border: 1px solid var(--dixor-card-border);
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.3s ease;
}

.dixor-stat-card:hover {
    border-color: rgba(204, 255, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.dixor-stat-num {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--dixor-font-mono);
    line-height: 1;
    margin-bottom: 6px;
}

.dixor-stat-num span {
    color: var(--dixor-accent);
}

.dixor-stat-desc {
    font-size: 0.88rem;
    color: var(--dixor-muted);
    font-weight: 600;
}

/* ─── 7. Dixor Numbered Capabilities & Services ─── */
.dixor-services-section {
    padding: 100px 0;
    position: relative;
}

.dixor-section-header {
    margin-bottom: 60px;
}

.dixor-section-title {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-transform: uppercase;
}

.dixor-service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dixor-service-item {
    background: var(--dixor-card-bg);
    border: 1px solid var(--dixor-card-border);
    border-radius: 18px;
    padding: 28px 36px;
    display: grid;
    grid-template-columns: 80px 1.4fr 1.6fr 60px;
    align-items: center;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}

.dixor-service-item:hover {
    background: rgba(24, 28, 42, 0.95);
    border-color: var(--dixor-accent);
    transform: translateX(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.dixor-service-num {
    font-size: 1.4rem;
    font-weight: 900;
    font-family: var(--dixor-font-mono);
    color: var(--dixor-accent);
}

.dixor-service-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.dixor-service-desc {
    font-size: 0.92rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.dixor-service-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.dixor-service-item:hover .dixor-service-arrow {
    background: var(--dixor-accent);
    border-color: var(--dixor-accent);
    color: #090a0f;
    transform: rotate(45deg);
}

/* ─── 8. Dixor Creative Portfolio / Case Studies Grid ─── */
.dixor-portfolio-section {
    padding: 100px 0;
    position: relative;
}

.dixor-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dixor-portfolio-card {
    background: var(--dixor-card-bg);
    border: 1px solid var(--dixor-card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.dixor-portfolio-card:hover {
    border-color: rgba(204, 255, 0, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(204, 255, 0, 0.08);
}

.dixor-card-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #111420;
}

.dixor-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dixor-portfolio-card:hover .dixor-card-thumb img {
    transform: scale(1.08);
}

.dixor-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 12px;
    background: rgba(9, 10, 15, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dixor-accent);
}

.dixor-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dixor-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dixor-cyan);
    margin-bottom: 8px;
}

.dixor-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.dixor-card-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: var(--dixor-muted);
}

.dixor-card-meta strong {
    color: #ffffff;
}

/* ─── 9. Dixor Agency Testimonials Carousel ─── */
.dixor-testimonials-section {
    padding: 100px 0;
    position: relative;
}

.dixor-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.dixor-testimonial-card {
    background: var(--dixor-card-bg);
    border: 1px solid var(--dixor-card-border);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.dixor-testimonial-card:hover {
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-4px);
}

.dixor-quote-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 24px;
    font-style: italic;
}

.dixor-client-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dixor-client-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ccff00, #00f0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #090a0f;
    font-size: 1rem;
}

.dixor-client-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
}

.dixor-client-role {
    font-size: 0.78rem;
    color: var(--dixor-muted);
}

/* ─── 10. Dixor Massive Agency Footer Callout ─── */
.dixor-callout-section {
    padding: 90px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(204, 255, 0, 0.04) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dixor-callout-box {
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
}

.dixor-callout-title {
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.dixor-callout-title span {
    color: var(--dixor-accent);
}

/* ─── 11. Responsive Breakpoints ─── */
@media (max-width: 1024px) {
    .dixor-hero-grid,
    .dixor-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dixor-service-item {
        grid-template-columns: 60px 1.5fr 1fr 50px;
        padding: 22px 24px;
    }
    .dixor-portfolio-grid,
    .dixor-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dixor-hero {
        padding: 100px 0 50px;
    }
    .dixor-hero-title {
        font-size: 2.2rem;
    }
    .dixor-service-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
    }
    .dixor-service-arrow {
        display: none;
    }
    .dixor-portfolio-grid,
    .dixor-testimonial-grid,
    .dixor-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── 12. Sleek Frosted Glass Hamburger & Mobile Drawer ─── */
.apex-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    z-index: 999;
}

.apex-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.apex-hamburger:hover {
    background: rgba(204, 255, 0, 0.12);
    border-color: rgba(204, 255, 0, 0.4);
}

.apex-hamburger:hover span {
    background: var(--dixor-accent);
}

.apex-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--dixor-accent);
}

.apex-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.apex-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--dixor-accent);
}

@media (max-width: 1024px) {
    .apex-hamburger {
        display: flex !important;
    }
}

/* Mobile Drawer Overlay & Content */
.apex-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    display: flex;
    justify-content: flex-end;
}

.apex-drawer-overlay.open,
.apex-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.apex-drawer-content {
    width: 100%;
    max-width: 360px;
    height: 100%;
    background: #090a0f;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.apex-drawer-overlay.open .apex-drawer-content,
.apex-drawer-overlay.active .apex-drawer-content {
    transform: translateX(0);
}

.apex-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.apex-drawer-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
}

.apex-drawer-close-btn:hover {
    background: rgba(204, 255, 0, 0.15);
    border-color: var(--dixor-accent);
    color: var(--dixor-accent);
}

.drawer-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.drawer-btn-auth {
    padding: 10px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-nav-scroll {
    flex-grow: 1;
    overflow-y: auto;
}

.drawer-nav-section-title-gold {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-family: var(--dixor-font-mono);
    color: #ffb703;
    margin-bottom: 12px;
}

.drawer-nav-section-title-lime {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-family: var(--dixor-font-mono);
    color: var(--dixor-accent);
    margin-bottom: 12px;
}

.drawer-nav-section-title-cyan {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-family: var(--dixor-font-mono);
    color: var(--dixor-cyan);
    margin-bottom: 12px;
}

.apex-drawer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apex-drawer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.apex-drawer-links li a:hover {
    background: rgba(204, 255, 0, 0.08);
    color: var(--dixor-accent);
    transform: translateX(4px);
}

/* ─── 13. Institutional Transparency & Governance Grid ─── */
.section-transparency {
    padding: 90px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(9, 10, 15, 0.8) 0%, rgba(13, 16, 26, 0.95) 100%);
}

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

.transparency-card {
    background: var(--dixor-card-bg);
    border: 1px solid var(--dixor-card-border);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.transparency-card:hover {
    border-color: rgba(204, 255, 0, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(204, 255, 0, 0.05);
}

.transparency-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(204, 255, 0, 0.08);
    border: 1px solid rgba(204, 255, 0, 0.25);
    border-radius: 20px;
    font-size: 0.72rem;
    font-family: var(--dixor-font-mono);
    font-weight: 800;
    color: var(--dixor-accent);
    margin-bottom: 16px;
    width: fit-content;
}

.dot-active {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dixor-accent);
    box-shadow: 0 0 8px var(--dixor-accent);
    display: inline-block;
}

.transparency-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.transparency-card-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.transparency-meta-tag {
    font-size: 0.75rem;
    font-family: var(--dixor-font-mono);
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 12px;
    border-radius: 6px;
    border-left: 2px solid var(--dixor-accent);
}

@media (max-width: 992px) {
    .transparency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .transparency-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── 14. Games Catalog, Filters & Subpage Components ─── */
.games-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.game-filter-btn {
    background: var(--dixor-card-bg);
    border: 1px solid var(--dixor-card-border);
    color: #cbd5e1;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.game-filter-btn:hover,
.game-filter-btn.active {
    background: rgba(204, 255, 0, 0.12);
    border-color: var(--dixor-accent);
    color: var(--dixor-accent);
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.2);
    transform: translateY(-2px);
}

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

@media (max-width: 992px) {
    .games-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .games-directory-grid {
        grid-template-columns: 1fr;
    }
}

.game-catalog-card.is-hidden {
    display: none !important;
}

/* Author Editorial Box in Article Details */
.author-editorial-box {
    display: flex;
    gap: 16px;
    align-items: center;
    background: rgba(16, 20, 32, 0.9);
    border: 1px solid rgba(204, 255, 0, 0.2);
    border-radius: 14px;
    padding: 20px 24px;
}

.author-avatar-wrap {
    font-size: 2.2rem;
    background: rgba(204, 255, 0, 0.1);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.author-headline {
    color: #ffffff;
    font-size: 1.05rem;
}

.author-badge-verified {
    font-size: 0.72rem;
    color: var(--dixor-accent);
    background: rgba(204, 255, 0, 0.12);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 700;
}

.author-bio-text {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 640px) {
    .author-editorial-box {
        flex-direction: column;
        text-align: center;
    }
    .author-title-row {
        justify-content: center;
    }
}

/* Dixor Table */
.dixor-table th,
.dixor-table td {
    padding: 14px 16px;
}

.dixor-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* ─── Dixor Header Brand Spacing & Mobile Architecture ─── */
.apex-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
}

.apex-brand-text {
    font-family: var(--dixor-font-display, 'Plus Jakarta Sans', sans-serif) !important;
    font-weight: 800 !important;
    font-size: 1.35rem !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

.apex-brand-text .text-gold {
    color: var(--dixor-accent, #ccff00) !important;
    margin-left: 4px !important;
}

.apex-brand-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(204, 255, 0, 0.12) !important;
    color: var(--dixor-accent, #ccff00) !important;
    border: 1px solid rgba(204, 255, 0, 0.4) !important;
    font-family: var(--dixor-font-mono, 'JetBrains Mono', monospace) !important;
    font-weight: 700 !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
    padding: 3px 9px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    margin-left: 4px !important;
    box-shadow: 0 0 12px rgba(204, 255, 0, 0.2) !important;
    line-height: 1.2 !important;
}

@media (max-width: 1024px) {
    .apex-brand {
        gap: 10px !important;
    }
    .apex-brand-text {
        font-size: 1.2rem !important;
    }
    .apex-brand-badge {
        font-size: 0.68rem !important;
        padding: 2px 7px !important;
    }
}

@media (max-width: 640px) {
    .apex-brand {
        gap: 8px !important;
    }
    .apex-brand-text {
        font-size: 1.1rem !important;
    }
    .apex-brand-badge {
        font-size: 0.62rem !important;
        padding: 2px 5px !important;
    }
}

/* ─── Ultra-Sleek Modern Hamburger Button ─── */
.apex-hamburger {
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.apex-hamburger span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none !important;
}

.apex-hamburger:hover {
    background: rgba(204, 255, 0, 0.14) !important;
    border-color: rgba(204, 255, 0, 0.5) !important;
    box-shadow: 0 0 16px rgba(204, 255, 0, 0.3) !important;
}

.apex-hamburger:hover span {
    background: var(--dixor-accent, #ccff00) !important;
}

.apex-hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
    background: var(--dixor-accent, #ccff00) !important;
}

.apex-hamburger.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

.apex-hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
    background: var(--dixor-accent, #ccff00) !important;
}

@media (min-width: 1025px) {
    .apex-hamburger {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

@media (max-width: 1024px) {
    .apex-hamburger {
        display: flex !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

/* ─── Dixor Live Market Terminal (Sleek Dark Frosted Architecture) ─── */
.dixor-title-balanced { max-width: 860px; margin-left: auto; margin-right: auto; text-wrap: balance; line-height: 1.2; }
.dixor-kpi-unit { font-size: 0.8rem; color: #8e95a5; margin-left: 2px; }
.dixor-terminal-window {
    background: rgba(14, 17, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
    position: relative;
}

.dixor-terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 12px;
}

.dixor-terminal-title {
    font-family: var(--dixor-font-mono, monospace);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dixor-accent, #ccff00);
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dixor-terminal-meta {
    font-family: var(--dixor-font-mono, monospace);
    font-size: 0.72rem;
    color: #94a3b8;
    letter-spacing: 0.04em;
}

/* 4 Modern Metric Stat Pills */
.dixor-terminal-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.015);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dixor-kpi-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.25s ease;
}

.dixor-kpi-pill:hover {
    border-color: rgba(204, 255, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.dixor-kpi-pill-label {
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    display: block;
}

.dixor-kpi-pill-val {
    font-family: var(--dixor-font-mono, monospace);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.dixor-kpi-pill-val.text-lime { color: var(--dixor-accent, #ccff00); }
.dixor-kpi-pill-val.text-cyan { color: var(--dixor-cyan, #00f0ff); }
.dixor-kpi-pill-val.text-gold { color: var(--dixor-gold, #ffb703); }
.dixor-kpi-pill-val.text-purple { color: #c084fc; }

.dixor-kpi-pill-sub {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 4px;
    display: block;
}

@media (max-width: 900px) {
    .dixor-terminal-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 16px;
    }
}

/* Match Selector Tabs */
.dixor-terminal-body {
    padding: 24px;
}

.dixor-match-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.dixor-match-tabs::-webkit-scrollbar {
    display: none;
}

.dixor-tab-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dixor-tab-pill:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dixor-tab-pill.active {
    background: var(--dixor-accent, #ccff00);
    border-color: var(--dixor-accent, #ccff00);
    color: #060709;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.35);
}

/* Active Fixture Box */
.dixor-fixture-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.dixor-fixture-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.dixor-fixture-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 6px 0;
    letter-spacing: -0.01em;
}

.dixor-fixture-meta {
    font-size: 0.82rem;
    color: #94a3b8;
}

/* Market Selection Rows (No table, perfectly responsive) */
.dixor-market-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dixor-market-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.25s ease;
    gap: 16px;
}

.dixor-market-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

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

.dixor-market-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dixor-market-sub {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 3px;
}

/* Sleek Back and Lay Odds Pills */
.dixor-odds-pair {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.dixor-market-odds-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.dixor-market-odds-btn.odds-back {
    background: rgba(0, 153, 255, 0.12);
    border: 1px solid rgba(0, 153, 255, 0.35);
    color: #60c5ff;
}

.dixor-market-odds-btn.odds-back:hover {
    background: rgba(0, 153, 255, 0.25);
    border-color: #60c5ff;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(0, 153, 255, 0.4);
    transform: translateY(-2px);
}

.dixor-market-odds-btn.odds-lay {
    background: rgba(255, 68, 102, 0.12);
    border: 1px solid rgba(255, 68, 102, 0.35);
    color: #ff6b8b;
}

.dixor-market-odds-btn.odds-lay:hover {
    background: rgba(255, 68, 102, 0.25);
    border-color: #ff6b8b;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(255, 68, 102, 0.4);
    transform: translateY(-2px);
}

.dixor-odds-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.85;
}

.dixor-odds-price {
    font-family: var(--dixor-font-mono, monospace);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 2px 0;
}

.dixor-odds-volume {
    font-size: 0.65rem;
    opacity: 0.7;
    font-family: var(--dixor-font-mono, monospace);
}

@media (max-width: 640px) {
    .dixor-terminal-body {
        padding: 16px;
    }
    .dixor-market-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }
    .dixor-odds-pair {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }
    .dixor-market-odds-btn {
        min-width: 0;
        width: 100%;
    }
}

/* ─── Google Position Zero / Featured Snippet Direct Answer Box ─── */
.dixor-snippet-box {
    background: rgba(204, 255, 0, 0.05);
    border: 1px solid rgba(204, 255, 0, 0.25);
    border-left: 4px solid var(--dixor-accent, #ccff00);
    border-radius: 8px;
    padding: 18px 22px;
    margin: 20px 0 28px;
    text-align: left;
}
.dixor-snippet-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--dixor-font-mono, monospace);
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--dixor-accent, #ccff00);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.dixor-snippet-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #e2e8f0;
    margin: 0;
}
.dixor-snippet-text strong {
    color: #ffffff;
}
