@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* =======================================================
   ENTERPRISE FINTECH DESIGN TOKENS
   Institutional Dark Mode | High-Frequency Sportsbook
======================================================= */
:root {
    /* Primary Surface Architecture */
    --bg:              #0b0e14;
    --bg-elevated:     #10141e;
    --bg-card:         #141926;
    --bg-card-hover:   #181e2e;
    --bg-glass:        rgba(16, 20, 30, 0.75);
    
    /* Institutional Borders & Dividers */
    --border:          rgba(255, 255, 255, 0.08);
    --border-subtle:   rgba(255, 255, 255, 0.04);
    --border-hover:    rgba(0, 102, 255, 0.45);
    --border-active:   #0066ff;

    /* Primary Accent - High-Frequency Laser Blue */
    --primary:         #0066ff;
    --primary-light:   #3385ff;
    --primary-glow:    rgba(0, 102, 255, 0.22);
    --primary-dark:    #004ecc;

    /* Secondary Accent - Institutional Metallic Gold */
    --accent-gold:     #c5a059;
    --gold-light:      #dfc282;
    --gold-glow:       rgba(197, 160, 89, 0.18);
    --gold-bg:         rgba(197, 160, 89, 0.08);

    /* Telemetry & Execution Indicators */
    --telemetry-green: #00e599;
    --green-glow:      rgba(0, 229, 153, 0.20);
    --green-bg:        rgba(0, 229, 153, 0.08);
    --telemetry-red:   #ff3b30;
    --red-glow:        rgba(255, 59, 48, 0.20);

    /* Stark Typography Contrast */
    --text:            #f8fafc;
    --text-2:          #94a3b8;
    --text-3:          #64748b;
    --text-mono:       #cbd5e1;

    /* Typography Families */
    --font-heading:    'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:       'JetBrains Mono', 'SF Mono', Consolas, monospace;

    /* Geometry - Sharp Institutional Precision */
    --radius-xs:       2px;
    --radius-sm:       4px;
    --radius-md:       6px;
    --radius-lg:       8px;
    --radius-xl:       10px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition:      0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =======================================================
   GLOBAL RESET & FOUNDATION
======================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

/* Precise Technical Grid Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.wrap {
    width: min(1280px, 92%);
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

/* =======================================================
   SYSTEM STATUS / TELEMETRY TICKER BAR
======================================================= */
.telemetry-ticker {
    background: #060810;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-3);
    padding: 5px 0;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 101;
}

.telemetry-inner {
    width: min(1440px, 95%);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
}

.telemetry-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.telemetry-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.telemetry-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--telemetry-green);
    box-shadow: 0 0 8px var(--telemetry-green);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.9); }
}

.telemetry-val {
    color: var(--text-mono);
    font-weight: 600;
}

.telemetry-accent {
    color: var(--accent-gold);
    font-weight: 600;
}

/* =======================================================
   HEADER & NAVIGATION
======================================================= */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 64px;
    background: rgba(9, 12, 18, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background var(--transition-fast);
}

.nav {
    width: min(1440px, 95%);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Brand Logo Group */
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.4px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-badge {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1c2438, #0f1524);
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    color: var(--primary-light);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.logo-text .enterprise-tag {
    font-family: var(--font-mono);
    font-size: 8.5px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1px solid rgba(197, 160, 89, 0.35);
    padding: 1px 4px;
    border-radius: var(--radius-xs);
    background: var(--gold-bg);
}

/* Nav Links Container */
.nav nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
    margin-right: auto;
}

.nav nav a {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 11px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    border: 1px solid transparent;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
    line-height: 1;
}

.nav nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav nav a.active {
    color: #ffffff;
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.25);
    font-weight: 600;
}

/* Header Actions Cluster */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-telemetry-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 9px;
    border-radius: 6px;
    background: rgba(0, 229, 153, 0.04);
    border: 1px solid rgba(0, 229, 153, 0.18);
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--telemetry-green);
    white-space: nowrap;
}

/* Institutional Action Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn:hover {
    background: var(--primary-light);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 18px var(--primary-glow);
    transform: translateY(-1px);
}

.btn-accent {
    background: linear-gradient(135deg, #1b253b, #121828);
    color: var(--text);
    border: 1px solid var(--primary);
    box-shadow: 0 0 16px rgba(0, 102, 255, 0.25);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #222f4c, #162035);
    border-color: var(--primary-light);
    box-shadow: 0 0 24px rgba(0, 102, 255, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, #b88f40, var(--accent-gold));
    color: #0b0d13;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #cda758, #dfba6e);
    box-shadow: 0 4px 20px var(--gold-glow);
    transform: translateY(-1px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

/* Mobile Toggle */
.menu {
    display: none;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    width: 38px;
    height: 38px;
    cursor: pointer;
    place-items: center;
    padding: 0;
}

.menu svg {
    width: 20px;
    height: 20px;
}

/* =======================================================
   HERO SECTION
======================================================= */
.hero {
    position: relative;
    padding: 80px 0 88px;
    overflow: hidden;
}

/* Subtle High-End Radial Depth */
.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
    top: -150px;
    left: 40%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(16, 20, 30, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-badge .ping-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--telemetry-green);
    box-shadow: 0 0 8px var(--telemetry-green);
}

.hero-badge .spec-tag {
    color: var(--primary-light);
    font-weight: 700;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(38px, 4.4vw, 62px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero h1 .grad {
    background: linear-gradient(135deg, #ffffff 30%, #94a3b8 70%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: var(--text-2);
    font-size: 16px;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Institutional Spec Badges */
.hero-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
}

.hero-spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-2);
    transition: all var(--transition-fast);
}

.hero-spec-tag:hover {
    border-color: var(--primary);
    color: var(--text);
    background: rgba(0, 102, 255, 0.05);
}

.hero-spec-tag svg {
    width: 14px;
    height: 14px;
    color: var(--primary-light);
}

/* Visual Dashboard Showcase Frame */
.hero-visual {
    position: relative;
}

.dashboard-frame {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    transition: border-color var(--transition);
}

.dashboard-frame:hover {
    border-color: rgba(0, 102, 255, 0.4);
}

.frame-topbar {
    background: #090c12;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
}

.frame-controls {
    display: flex;
    gap: 6px;
    align-items: center;
}

.ctrl-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.frame-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-2);
}

.frame-status {
    color: var(--telemetry-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.dashboard-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Precision Floating Metric Callouts */
.telemetry-card {
    position: absolute;
    background: rgba(14, 18, 27, 0.94);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    z-index: 2;
    font-family: var(--font-mono);
}

.telemetry-card.card-top {
    top: -14px;
    right: 18px;
    border-left: 2px solid var(--primary);
}

.telemetry-card.card-bottom {
    bottom: -16px;
    left: -16px;
    border-left: 2px solid var(--accent-gold);
}

.tc-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-3);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.tc-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tc-value .sub {
    font-size: 11px;
    color: var(--telemetry-green);
    font-weight: 500;
}

/* =======================================================
   INSTITUTIONAL METRICS BAR
======================================================= */
.stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #080b10;
}

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

.stat-item {
    padding: 30px 24px;
    border-right: 1px solid var(--border);
    transition: background var(--transition-fast);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.015);
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #ffffff;
    display: block;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-number .unit {
    color: var(--primary-light);
    font-size: 20px;
    letter-spacing: 0;
}

.stat-label {
    font-size: 13px;
    color: var(--text-2);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.stat-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* =======================================================
   SECTION TYPOGRAPHY & LAYOUTS
======================================================= */
.section {
    padding: 96px 0;
    position: relative;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-lead {
    font-size: 16px;
    color: var(--text-2);
    max-width: 620px;
    line-height: 1.7;
}

/* =======================================================
   SOLUTIONS / ARCHITECTURE CARDS GRID
======================================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--primary-light);
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.feature-card:hover .card-icon {
    border-color: var(--primary);
    background: var(--primary-glow);
    color: #ffffff;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-card p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.feature-card-meta {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-3);
    border-top: 1px solid var(--border-subtle);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =======================================================
   ADVANCED PROPRIETARY CAPABILITIES (Bet Builder, Cashout)
======================================================= */
.highlights {
    background: #090c12;
    padding: 96px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.highlights-header {
    text-align: center;
    margin-bottom: 56px;
}

.highlights-header .section-lead {
    margin-inline: auto;
}

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

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 34px 30px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: all var(--transition);
    position: relative;
}

.highlight-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.highlight-icon-wrap {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.highlight-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.highlight-icon-wrap.blue   { color: var(--primary-light); border-color: rgba(0, 102, 255, 0.3); background: rgba(0, 102, 255, 0.08); }
.highlight-icon-wrap.gold   { color: var(--accent-gold); border-color: rgba(197, 160, 89, 0.3); background: rgba(197, 160, 89, 0.08); }
.highlight-icon-wrap.green  { color: var(--telemetry-green); border-color: rgba(0, 229, 153, 0.3); background: rgba(0, 229, 153, 0.08); }
.highlight-icon-wrap.purple { color: #b285ff; border-color: rgba(178, 133, 255, 0.3); background: rgba(178, 133, 255, 0.08); }

.highlight-body h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 8px;
    color: #ffffff;
}

.highlight-body p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 14px;
}

.highlight-spec-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.highlight-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: var(--radius-xs);
    border: 1px solid transparent;
}

.highlight-tag.live { background: rgba(0, 102, 255, 0.12); color: var(--primary-light); border-color: rgba(0, 102, 255, 0.3); }
.highlight-tag.gold { background: var(--gold-bg); color: var(--accent-gold); border-color: rgba(197, 160, 89, 0.3); }
.highlight-tag.teal { background: var(--green-bg); color: var(--telemetry-green); border-color: rgba(0, 229, 153, 0.3); }

/* =======================================================
   PLATFORM & ARCHITECTURE SPECIFICATION
======================================================= */
.platform-section {
    padding: 96px 0;
    position: relative;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.platform-image-wrap {
    position: relative;
}

.platform-frame {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.5);
}

.platform-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.platform-features {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.platform-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.platform-feature:hover {
    padding-left: 6px;
}

.platform-feature:last-child {
    border-bottom: none;
}

.pf-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--primary-light);
    margin-top: 2px;
}

.pf-icon svg {
    width: 16px;
    height: 16px;
}

.pf-body strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #ffffff;
}

.pf-body span {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
}

/* =======================================================
   WHY OPERATORS CHOOSE US (B2B METRICS)
======================================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
}

.why-card:hover {
    border-color: rgba(0, 102, 255, 0.4);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.why-number {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-3);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.why-card:hover .why-number {
    color: var(--primary-light);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.why-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}

/* =======================================================
   OPERATOR FAQ
======================================================= */
.faq-section {
    padding: 96px 0;
    background: #080b10;
    border-top: 1px solid var(--border);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 72px;
    align-items: start;
}

.faq-sidebar p {
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 14px;
    margin-bottom: 28px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.faq-item[open] {
    border-color: rgba(0, 102, 255, 0.4);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-2);
    transition: all var(--transition-fast);
}

.faq-item[open] .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.faq-item p {
    padding: 0 22px 20px;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text-2);
}

/* =======================================================
   EXECUTIVE CALL TO ACTION
======================================================= */
.cta-section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #121724 0%, #0c1018 100%);
    border: 1px solid rgba(0, 102, 255, 0.35);
    border-radius: var(--radius-md);
    padding: 68px 48px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-box p {
    font-size: 16px;
    color: var(--text-2);
    max-width: 580px;
    margin-inline: auto;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 18px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.5px;
}

/* =======================================================
   FOOTER
======================================================= */
footer {
    background: #06080d;
    border-top: 1px solid var(--border);
}

.footer-inner,
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 44px;
}

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

.footer-compliance-badges {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge-pill {
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 600;
    color: var(--text-3);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: var(--radius-xs);
    letter-spacing: 0.5px;
}

.footer-col-title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-3);
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: var(--text-2);
    font-weight: 400;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-3);
}

/* =======================================================
   ENTERPRISE CONTACT & RFP PORTAL
======================================================= */
.contact-hero {
    padding: 72px 0 52px;
    text-align: center;
    position: relative;
}

.contact-hero p {
    color: var(--text-2);
    font-size: 16px;
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.7;
    margin-top: 12px;
}

.contact-layout {
    padding-bottom: 96px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 56px;
    align-items: start;
}

.contact-info-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 13.5px;
    color: var(--text-2);
    transition: all var(--transition-fast);
}

.contact-check:hover {
    border-color: rgba(0, 102, 255, 0.35);
    color: var(--text);
    background: var(--bg-card-hover);
}

.contact-check .check-icon {
    width: 22px;
    height: 22px;
    border-radius: var(--radius-xs);
    background: rgba(0, 229, 153, 0.08);
    border: 1px solid rgba(0, 229, 153, 0.3);
    display: grid;
    place-items: center;
    color: var(--telemetry-green);
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-check .check-icon svg {
    width: 13px;
    height: 13px;
}

/* Enterprise Form Box */
.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 38px 34px;
    position: relative;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: #090c12;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text);
    transition: all var(--transition-fast);
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-3);
    font-size: 13.5px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-glow);
    background: #0d111a;
}

.form-group select option {
    background: #0f131d;
    color: var(--text);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-submit {
    width: 100%;
    font-size: 14px;
    padding: 14px;
    border-radius: var(--radius-sm);
}

.contact-note {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    margin-top: 14px;
    line-height: 1.5;
}

/* =======================================================
   RESPONSIVE LAYOUT
======================================================= */
@media (max-width: 1080px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: 1fr; }
    .footer-inner,
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
    .hero-grid,
    .platform-grid,
    .faq-layout,
    .contact-grid { grid-template-columns: 1fr; }

    .hero { padding: 56px 0 50px; }
    .platform-image-wrap { order: -1; }

    .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(even) { border-right: none; }

    .cta-box { padding: 44px 24px; }
    .faq-layout { gap: 36px; }
}

@media (max-width: 720px) {
    header { height: 60px; }
    .telemetry-ticker { display: none; }

    .nav nav { display: none; }
    .nav nav.open {
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: absolute;
        top: 60px;
        left: 0; right: 0;
        background: #0e121a;
        border-bottom: 1px solid var(--border);
        padding: 16px 20px;
        z-index: 200;
        box-shadow: 0 16px 32px rgba(0,0,0,0.5);
    }
    
    .nav > .btn { display: none; }
    .menu { display: grid; }

    .hero h1 { letter-spacing: -1px; }
    .hero-actions { flex-direction: column; }
    .hero-actions a, .hero-actions button { width: 100%; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; }

    .cards-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .contact-box { padding: 24px 18px; }

    .footer-inner,
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .cta-actions { flex-direction: column; }
    .section, .platform-section, .highlights, .faq-section, .cta-section { padding: 64px 0; }
    .split-grid { grid-template-columns: 1fr; }
    .ticket-card, .cashout-simulator-card { max-width: 100%; }
}

/* =======================================================
   SUBPAGE HEROES & COMPONENT STYLES
======================================================= */
.page-hero {
    padding: 72px 0 54px;
    position: relative;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(16, 20, 30, 0.6) 0%, transparent 100%);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* =======================================================
   BETTING TICKET WITH ACCUMULATOR BONUS ON TICKET
======================================================= */
.ticket-card {
    background: #0d111a;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
    font-family: var(--font-sans);
    position: relative;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
    margin-bottom: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-2);
}

.ticket-header .status-tag {
    color: var(--telemetry-green);
    background: var(--green-bg);
    border: 1px solid rgba(0, 229, 153, 0.25);
    padding: 2px 7px;
    border-radius: var(--radius-xs);
    font-weight: 600;
}

.ticket-legs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.ticket-leg {
    background: #121724;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-leg-info strong {
    display: block;
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
}

.ticket-leg-info span {
    font-size: 11.5px;
    color: var(--text-2);
}

.ticket-leg-odds {
    font-family: var(--font-mono);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-light);
    background: rgba(0, 102, 255, 0.1);
    padding: 4px 8px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

/* On-Ticket Accumulator Bonus Banner */
.ticket-bonus-banner {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.14), rgba(197, 160, 89, 0.05));
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ticket-bonus-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-bonus-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-xs);
    background: var(--accent-gold);
    color: #0b0d13;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 13px;
    font-family: var(--font-mono);
}

.ticket-bonus-text strong {
    display: block;
    font-size: 12px;
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.ticket-bonus-text span {
    font-size: 11px;
    color: var(--text-2);
}

.ticket-bonus-val {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-light);
}

.ticket-calculations {
    border-top: 1px solid var(--border);
    padding-top: 14px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-2);
}

.calc-row.total-return {
    border-top: 1px solid var(--border-subtle);
    padding-top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.calc-row.total-return .val {
    color: var(--telemetry-green);
    font-family: var(--font-mono);
    font-size: 16px;
}

/* =======================================================
   CASHOUT & PARTITION SLIDER SIMULATOR
======================================================= */
.cashout-simulator-card {
    background: #0d111a;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
    font-family: var(--font-sans);
}

.cashout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.cashout-match {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 59, 48, 0.12);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: var(--telemetry-red);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-xs);
}

.slider-container {
    background: #121724;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin: 16px 0;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-2);
    margin-bottom: 10px;
}

.slider-label-row .pct {
    color: var(--primary-light);
    font-weight: 700;
}

.range-slider {
    width: 100%;
    height: 6px;
    background: #1e2638;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid #ffffff;
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
}

.partition-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

.partition-box {
    background: #090c12;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.partition-box .pb-title {
    font-size: 10.5px;
    color: var(--text-3);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.partition-box .pb-val {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 700;
    color: var(--telemetry-green);
}

.partition-box.remainder .pb-val {
    color: var(--gold-light);
}

/* =======================================================
   PROVIDER BADGES & LOGO PILLS
======================================================= */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.provider-pill {
    background: #111622;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 8px 14px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.provider-pill:hover {
    border-color: var(--primary-light);
    color: #ffffff;
    background: #161d2d;
    transform: translateY(-1px);
}

.provider-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* =======================================================
   CODE / API TERMINAL BOX
======================================================= */
.code-terminal {
    background: #070a10;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-family: var(--font-mono);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
}

.code-header {
    background: #0e131d;
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--text-3);
}

.code-body {
    padding: 18px;
    font-size: 12.5px;
    line-height: 1.6;
    color: #9cdcfe;
    overflow-x: auto;
}

.code-body .method-post { color: #4ec9b0; font-weight: 700; }
.code-body .key { color: #9cdcfe; }
.code-body .str { color: #ce9178; }
.code-body .num { color: #b5cea8; }
.code-body .comment { color: #6a9955; font-style: italic; }

/* Data Tables */
.data-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 28px 0;
    max-width: 100%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    text-align: left;
}

.data-table th {
    background: #0a0d14;
    padding: 14px 18px;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-3);
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.8px;
}

.data-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-2);
}

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

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
}

/* =======================================================
   1. OPERATOR ROI & TURNOVER CALCULATOR
======================================================= */
.roi-calculator-card {
    background: #0d111a;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    margin-top: 36px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.calc-slider-group {
    margin-bottom: 24px;
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-2);
    margin-bottom: 8px;
}

.calc-slider-header .val {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-light);
}

.roi-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.roi-stat-box {
    background: #121724;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.roi-stat-box .title {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.roi-stat-box .amount {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.roi-stat-box .uplift {
    font-size: 11px;
    font-weight: 600;
    color: var(--telemetry-green);
    margin-top: 2px;
}

.roi-total-banner {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(0, 102, 255, 0.1));
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roi-total-banner .lbl {
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--gold-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.roi-total-banner .total-val {
    font-family: var(--font-mono);
    font-size: 26px;
    font-weight: 800;
    color: var(--gold-light);
}

/* =======================================================
   2. INTERACTIVE LIVE API CONSOLE / SANDBOX
======================================================= */
.sandbox-card {
    background: #090c12;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    margin: 40px 0;
}

.sandbox-tabs {
    display: flex;
    background: #0e121b;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.sandbox-tab {
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.sandbox-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}

.sandbox-tab.active {
    color: var(--primary-light);
    border-bottom-color: var(--primary);
    background: #090c12;
}

.sandbox-body {
    padding: 24px;
}

.sandbox-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.endpoint-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    background: #131825;
    padding: 6px 12px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
}

.method-tag {
    color: #4ec9b0;
    font-weight: 800;
}

.sandbox-actions {
    display: flex;
    gap: 10px;
}

.sandbox-console-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.console-pane {
    background: #06080d;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.console-pane-header {
    background: #0f131d;
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-3);
    border-bottom: 1px solid var(--border-subtle);
}

.console-pane-body {
    padding: 14px;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.55;
    max-height: 320px;
    overflow-y: auto;
}

/* =======================================================
   3. TURNKEY VS HEADLESS COMPARISON MATRIX
======================================================= */
.comparison-section {
    margin: 48px 0;
}

.comparison-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    max-width: 100%;
}

.comparison-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 13.5px;
    text-align: left;
}

.comparison-table th {
    background: #090c12;
    padding: 18px 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.8px;
    overflow-wrap: anywhere;
}

.comparison-table th.col-highlight {
    background: #111726;
    color: var(--primary-light);
    border-top: 2px solid var(--primary);
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-2);
    overflow-wrap: anywhere;
}

.comparison-table td.col-highlight {
    background: rgba(0, 102, 255, 0.03);
    color: #ffffff;
    font-weight: 500;
}

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

.feature-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--telemetry-green);
    font-family: var(--font-mono);
    font-size: 11.5px;
}

.feature-check svg { width: 14px; height: 14px; }
@media (max-width: 720px) {
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 11px;
        line-height: 1.4;
    }

    .comparison-table .feature-check {
        font-size: 10px;
    }
}

/* =======================================================
   4. INTERACTIVE ODDS BOARD & FORMAT SWITCHER
======================================================= */
.odds-board-card {
    background: #0d111a;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
    margin: 32px 0;
}

.odds-board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.odds-format-toggle {
    display: inline-flex;
    background: #131724;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 3px;
    gap: 4px;
}

.odds-format-btn {
    background: transparent;
    border: none;
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-2);
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.odds-format-btn.active {
    background: var(--primary);
    color: #ffffff;
}

.odds-match-row {
    background: #121724;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 10px;
    transition: background var(--transition-fast);
}

.odds-match-row:hover {
    background: #161c2b;
    border-color: rgba(0, 102, 255, 0.3);
}

.odds-btn-cell {
    background: #0a0d14;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 8px 10px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.odds-btn-cell:hover {
    border-color: var(--primary-light);
    background: rgba(0, 102, 255, 0.12);
}

.odds-btn-cell .outcome {
    display: block;
    font-size: 10px;
    color: var(--text-3);
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.odds-btn-cell .price {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.3s;
}

/* Microsecond Price Blink Keyframes */
@keyframes oddsBlinkUp {
    0% { background: rgba(0, 229, 153, 0.4); color: #00e599; }
    100% { background: transparent; }
}

@keyframes oddsBlinkDown {
    0% { background: rgba(255, 59, 48, 0.4); color: #ff3b30; }
    100% { background: transparent; }
}

.blink-up { animation: oddsBlinkUp 0.8s ease-out; }
.blink-down { animation: oddsBlinkDown 0.8s ease-out; }

/* =======================================================
   5. COMPLIANCE & JURISDICTION CARDS
======================================================= */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 36px 0;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition);
}

.cert-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}

.cert-card-icon {
    width: 48px;
    height: 48px;
    margin-inline: auto;
    margin-bottom: 14px;
    border-radius: var(--radius-sm);
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.25);
    display: grid;
    place-items: center;
    color: var(--primary-light);
}

.cert-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.cert-card p {
    font-size: 12.5px;
    color: var(--text-2);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .calculator-grid, .sandbox-console-split { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .odds-match-row { grid-template-columns: 1fr; }
}

/* =======================================================
   6. ENTERPRISE MEGA-MENU & NAVIGATION DROPDOWNS
======================================================= */
.nav nav {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
}

.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-link-trigger {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 34px;
    padding: 0 11px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    border: 1px solid transparent;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}

.nav-link-trigger svg.chevron {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    opacity: 0.5;
    flex-shrink: 0;
    margin-left: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-item-dropdown:hover .nav-link-trigger svg.chevron {
    transform: rotate(180deg);
    opacity: 1;
    color: #fff;
}

.nav-link-trigger:hover,
.nav-item-dropdown:hover .nav-link-trigger {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link-trigger.active {
    color: #ffffff;
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.25);
    font-weight: 600;
}

/* Mega-Menu Dropdown Panel */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #090c13;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 102, 255, 0.12);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s;
    z-index: 500;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    gap: 6px;
    min-width: 360px;
}

.dropdown-grid-2col {
    grid-template-columns: 1fr 1fr;
    min-width: 580px;
    gap: 12px;
}

.dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateX(2px);
}

.dropdown-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-xs);
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.25);
    display: grid;
    place-items: center;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.dropdown-icon svg {
    width: 16px;
    height: 16px;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-badge {
    font-size: 9px;
    font-family: var(--font-mono);
    padding: 1px 5px;
    border-radius: var(--radius-xs);
    background: rgba(0, 229, 153, 0.12);
    color: var(--telemetry-green);
    border: 1px solid rgba(0, 229, 153, 0.3);
}

.dropdown-badge-gold {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(197, 160, 89, 0.35);
}

.dropdown-desc {
    font-size: 11px;
    color: var(--text-2);
    margin-top: 2px;
    line-height: 1.4;
}

/* Header Telemetry Badge */
.nav-telemetry-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-2);
    background: #090c12;
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: var(--radius-xs);
}

/* Responsive Hamburger Menu Button */
.menu {
    display: none;
    background: #111622;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(0, 102, 255, 0.1);
}

.menu svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Mobile Slide-Out Drawer Overlay & Drawer */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    width: min(340px, 85vw);
    height: 100vh;
    background: #090c12;
    border-left: 1px solid var(--border);
    z-index: 999;
    padding: 24px 20px;
    overflow-y: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.mobile-drawer-close {
    background: #121724;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--text-2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-drawer-close:hover {
    color: #ffffff;
    border-color: var(--primary);
}

.mobile-drawer-search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 10px 14px;
    color: var(--text-2);
    font-family: var(--font-mono);
    font-size: 12px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all var(--transition-fast);
    text-align: left;
}

.mobile-drawer-search:hover {
    background: rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.4);
    color: #ffffff;
}

.mobile-drawer-search svg {
    width: 14px;
    height: 14px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.mobile-drawer-search span {
    flex: 1;
}

.mobile-drawer-search kbd {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 9.5px;
    color: var(--primary-light);
}

.mobile-drawer-group {
    margin-bottom: 22px;
}

.mobile-drawer-group-title {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    color: var(--text-3);
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    padding-left: 4px;
}

.mobile-drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 13.5px;
    color: var(--text-2);
    border-radius: var(--radius-xs);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.mobile-drawer-link:hover, .mobile-drawer-link.active {
    color: #ffffff;
    background: rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.3);
}

/* =======================================================
   7. INTERACTIVE FLOATING / DOCKED BET SLIP WIDGET
======================================================= */
.bet-slip-panel {
    background: #0d111a;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.bet-slip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
}

.bet-slip-title {
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bet-slip-counter {
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-family: var(--font-mono);
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 700;
}

.bet-slip-clear-btn {
    background: transparent;
    border: none;
    color: var(--text-3);
    font-size: 11px;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.bet-slip-clear-btn:hover {
    color: var(--telemetry-red);
}

.slip-selections-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.slip-item {
    background: #121724;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slip-item-info strong {
    font-size: 12px;
    color: #fff;
    display: block;
}

.slip-item-info span {
    font-size: 10.5px;
    color: var(--text-3);
    font-family: var(--font-mono);
}

.slip-item-odds-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slip-item-price {
    font-family: var(--font-mono);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--telemetry-green);
}

.slip-item-remove {
    background: transparent;
    border: none;
    color: var(--text-3);
    font-size: 14px;
    cursor: pointer;
    padding: 2px 4px;
    line-height: 1;
}

.slip-item-remove:hover {
    color: #fff;
}

.slip-empty-hint {
    padding: 20px;
    text-align: center;
    color: var(--text-3);
    font-size: 12px;
    font-family: var(--font-mono);
    border: 1px dashed var(--border);
    border-radius: var(--radius-xs);
}

/* Dynamic On-Ticket Acca Bonus Bar */
.slip-acca-meter {
    background: #090c12;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: var(--radius-xs);
    padding: 12px;
    margin-bottom: 14px;
}

.slip-acca-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
}

.slip-acca-title {
    color: var(--gold-light);
    font-weight: 700;
}

.slip-acca-boost-badge {
    background: rgba(197, 160, 89, 0.2);
    color: var(--gold-light);
    border: 1px solid rgba(197, 160, 89, 0.5);
    padding: 2px 6px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 11px;
}

.slip-acca-progress {
    height: 6px;
    background: #141926;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 6px;
}

.slip-acca-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--telemetry-green));
    width: 0%;
    transition: width 0.3s ease;
}

/* Slip stake and payout calculations */
.slip-calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.slip-calc-box {
    background: #090c12;
    border: 1px solid var(--border-subtle);
    padding: 10px;
    border-radius: var(--radius-xs);
}

.slip-calc-label {
    font-size: 10px;
    color: var(--text-3);
    font-family: var(--font-mono);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.slip-calc-input {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: var(--radius-xs);
}

.slip-calc-val {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 700;
    color: var(--telemetry-green);
}

.slip-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Selected state on odds board cell */
.odds-btn-cell.selected {
    background: rgba(0, 102, 255, 0.25);
    border-color: var(--primary-light);
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.3);
}

/* ==========================================================================
   INTERACTIVE CASINO GAME CATALOG & STUDIO EXPLORER
   ========================================================================== */
.catalog-filter-card {
    background: #0d111a;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 32px;
}

.catalog-search-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.catalog-search-input-wrap {
    position: relative;
    flex: 1;
    min-width: 260px;
}

.catalog-search-input-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-3);
}

.catalog-search-input {
    width: 100%;
    background: #080b10;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: #fff;
    padding: 10px 14px 10px 40px;
    font-size: 13.5px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.catalog-search-input:focus {
    border-color: var(--primary-light);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
}

.catalog-counter-badge {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-subtle);
}

.category-tabs-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
}

.cat-tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-2);
    padding: 8px 16px;
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cat-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.cat-tab-btn.active {
    background: rgba(0, 102, 255, 0.15);
    color: var(--primary-light);
    border-color: rgba(0, 102, 255, 0.35);
}

.studio-pills-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.studio-pills-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 4px;
}

.studio-pill-btn {
    background: #080b10;
    border: 1px solid var(--border-subtle);
    color: var(--text-2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.studio-pill-btn:hover {
    color: #fff;
    border-color: var(--border);
}

.studio-pill-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.game-card {
    background: #0d111a;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 102, 255, 0.1);
}

.game-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.game-provider-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    letter-spacing: 0.05em;
}

.badge-evolution { background: rgba(0, 102, 255, 0.15); color: #60a5fa; border: 1px solid rgba(0, 102, 255, 0.3); }
.badge-pragmatic { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-spribe { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-playngo { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-netent { background: rgba(139, 92, 246, 0.15); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.3); }
.badge-hacksaw { background: rgba(236, 72, 153, 0.15); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.3); }
.badge-nolimit { background: rgba(249, 115, 22, 0.15); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.3); }
.badge-gamesglobal { background: rgba(6, 182, 212, 0.15); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.3); }

.game-cat-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-3);
}

.game-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.game-stats-box {
    background: #080b10;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.game-stat-col {
    text-align: center;
}

.game-stat-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-3);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.game-stat-value {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.game-stat-value.rtp {
    color: var(--telemetry-green);
}

.game-stat-value.mult {
    color: var(--gold-light);
}

.game-actions {
    display: flex;
    gap: 8px;
}

.btn-launch-demo {
    width: 100%;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--primary-light);
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-launch-demo:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.3);
}

/* Modal for Session Launch & Demo Simulation */
.casino-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 13, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.casino-modal-content {
    background: #0e121b;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 720px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 102, 255, 0.15);
    overflow: hidden;
    animation: modalIn 0.25s ease-out;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.casino-modal-header {
    background: #080b10;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.casino-modal-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.casino-modal-close {
    background: transparent;
    border: none;
    color: var(--text-3);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

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

.casino-modal-body {
    padding: 24px;
}

.session-dispatch-meta {
    background: #080b10;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.session-dispatch-row {
    display: flex;
    justify-content: space-between;
}

.simulated-game-canvas {
    height: 200px;
    background: radial-gradient(circle at center, #151d2f 0%, #080b10 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--radius-xs);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.sim-game-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.sim-game-anim {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--telemetry-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sim-game-controls {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    background: #080b10;
    padding: 12px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-subtle);
}

/* ==========================================================================
   INTERACTIVE SEAMLESS WALLET SEQUENCE SIMULATOR
   ========================================================================== */
.wallet-sim-wrapper {
    background: #0d111a;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-top: 28px;
}

.wallet-sim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.wallet-sim-telemetry {
    display: flex;
    gap: 16px;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11.5px;
}

.wallet-sim-balance {
    background: #080b10;
    border: 1px solid var(--border-subtle);
    padding: 6px 12px;
    border-radius: var(--radius-xs);
    color: #fff;
}

.wallet-sim-balance span {
    color: var(--telemetry-green);
    font-weight: 700;
    font-size: 13px;
}

.wallet-sim-latency {
    background: #080b10;
    border: 1px solid var(--border-subtle);
    padding: 6px 12px;
    border-radius: var(--radius-xs);
    color: #fff;
}

.wallet-sim-latency span {
    color: var(--primary-light);
    font-weight: 700;
}

.wallet-pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative;
    margin-bottom: 20px;
}

.sim-node-card {
    background: #080b10;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 14px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.sim-node-card.active {
    border-color: var(--primary-light);
    background: rgba(0, 102, 255, 0.1);
    box-shadow: 0 0 16px rgba(0, 102, 255, 0.3);
}

.sim-node-card.success {
    border-color: var(--telemetry-green);
    background: rgba(0, 229, 153, 0.1);
}

.sim-node-num {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-3);
    margin-bottom: 4px;
}

.sim-node-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.sim-node-role {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: var(--text-3);
}

.sim-node-ping {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--telemetry-green);
    margin-top: 6px;
    display: block;
}

.wallet-sim-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.wallet-sim-btn {
    font-family: var(--font-mono);
    font-size: 11.5px;
    padding: 8px 14px;
    border-radius: var(--radius-xs);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--border);
    background: #080b10;
    color: #fff;
}

.wallet-sim-btn:hover {
    border-color: var(--primary-light);
    background: rgba(0, 102, 255, 0.1);
}

.wallet-sim-btn.primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.wallet-sim-btn.primary:hover {
    background: var(--primary-light);
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.4);
}

.wallet-sim-btn.gold {
    background: rgba(197, 160, 89, 0.2);
    border-color: var(--accent-gold);
    color: var(--gold-light);
}

.wallet-sim-btn.gold:hover {
    background: var(--accent-gold);
    color: #000;
}

.wallet-sim-terminal {
    background: #05070a;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    max-height: 140px;
    overflow-y: auto;
    color: var(--text-2);
    line-height: 1.6;
}

.wallet-sim-terminal .log-success { color: var(--telemetry-green); }
.wallet-sim-terminal .log-accent { color: var(--primary-light); }
.wallet-sim-terminal .log-gold { color: var(--gold-light); }
.wallet-sim-terminal .log-warn { color: #f59e0b; }

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

@media (max-width: 1080px) {
    .nav nav { display: none !important; }
    .nav-actions {
        margin-left: auto;
        gap: 8px;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    .nav-actions .cmd-palette-trigger,
    .nav-actions .nav-telemetry-badge,
    .nav-actions #nav-cta {
        display: none !important;
    }
    .menu { display: inline-flex !important; }
}

/* ==========================================================================
   PAGE READING PROGRESS BAR
   ========================================================================== */
#reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--telemetry-green));
    z-index: 9998;
    transition: width 0.08s linear;
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.7);
}

/* ==========================================================================
   LIVE ODDS TICKER MARQUEE
   ========================================================================== */
.odds-ticker-bar {
    background: #060810;
    border-bottom: 1px solid rgba(0, 102, 255, 0.18);
    height: 36px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.odds-ticker-bar::before,
.odds-ticker-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.odds-ticker-bar::before {
    left: 0;
    background: linear-gradient(to right, #060810, transparent);
}

.odds-ticker-bar::after {
    right: 0;
    background: linear-gradient(to left, #060810, transparent);
}

.ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #060810;
    border-right: 1px solid rgba(0, 102, 255, 0.18);
    z-index: 3;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.1em;
    white-space: nowrap;
    gap: 6px;
}

.ticker-track-wrap {
    margin-left: 110px;
    overflow: hidden;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
}

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

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

.ticker-event {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-mono);
    font-size: 11px;
    height: 36px;
}

.ticker-event-name {
    color: var(--text-2);
}

.ticker-market {
    color: var(--text-3);
    font-size: 10px;
}

.ticker-odds-group {
    display: flex;
    gap: 6px;
}

.ticker-odd {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: var(--radius-xs);
    font-size: 11px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.ticker-odd.home { background: rgba(0,102,255,0.12); color: #60a5fa; }
.ticker-odd.draw { background: rgba(100,116,139,0.15); color: #94a3b8; }
.ticker-odd.away { background: rgba(239,68,68,0.12); color: #f87171; }

.ticker-odd.blink-up {
    background: rgba(0, 229, 153, 0.2) !important;
    color: var(--telemetry-green) !important;
}

.ticker-odd.blink-down {
    background: rgba(255, 59, 48, 0.2) !important;
    color: #ff3b30 !important;
}

/* ==========================================================================
   SCROLL-TRIGGERED FADE-IN ANIMATIONS
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delay for grids */
.scroll-reveal[data-delay="1"] { transition-delay: 0.1s; }
.scroll-reveal[data-delay="2"] { transition-delay: 0.2s; }
.scroll-reveal[data-delay="3"] { transition-delay: 0.3s; }
.scroll-reveal[data-delay="4"] { transition-delay: 0.4s; }
.scroll-reveal[data-delay="5"] { transition-delay: 0.5s; }
.scroll-reveal[data-delay="6"] { transition-delay: 0.6s; }

/* ==========================================================================
   COUNT-UP STATISTICS
   ========================================================================== */
.stat-number[data-countup] {
    display: inline-block;
}

/* ==========================================================================
   PARTNER INTEGRATION MARQUEE
   ========================================================================== */
.partner-marquee-section {
    background: #060810;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
}

.partner-marquee-section::before,
.partner-marquee-section::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; width: 120px;
    z-index: 2;
    pointer-events: none;
}

.partner-marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #060810, transparent);
}

.partner-marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #060810, transparent);
}

.partner-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: partner-scroll 40s linear infinite;
    width: max-content;
}

.partner-marquee-track:hover {
    animation-play-state: paused;
}

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

.partner-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
    white-space: nowrap;
    transition: color 0.2s;
    cursor: default;
}

.partner-marquee-item:hover {
    color: var(--text-2);
}

.partner-marquee-item .pm-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.partner-marquee-item.gold .pm-dot { background: var(--accent-gold); }
.partner-marquee-item.green .pm-dot { background: var(--telemetry-green); }

/* ==========================================================================
   FLOATING STICKY DEMO CTA
   ========================================================================== */
#floating-demo-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: var(--radius-xs);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4), 0 0 0 0 rgba(0, 102, 255, 0.4);
    animation: cta-pulse 3s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

#floating-demo-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#floating-demo-cta:hover {
    background: var(--primary-light);
    box-shadow: 0 6px 28px rgba(0, 102, 255, 0.6);
    transform: translateY(-2px);
}

@keyframes cta-pulse {
    0%   { box-shadow: 0 4px 20px rgba(0,102,255,0.4), 0 0 0 0 rgba(0,102,255,0.35); }
    60%  { box-shadow: 0 4px 20px rgba(0,102,255,0.4), 0 0 0 10px rgba(0,102,255,0); }
    100% { box-shadow: 0 4px 20px rgba(0,102,255,0.4), 0 0 0 0 rgba(0,102,255,0); }
}

#floating-demo-cta .cta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--telemetry-green);
    animation: telemetry-blink 2s infinite;
}

/* ==========================================================================
   LIVE API STATUS WIDGET (COMPLIANCE PAGE)
   ========================================================================== */
.api-status-widget {
    background: #0d111a;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 28px;
}

.api-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 12px;
}

.api-status-overall {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--telemetry-green);
}

.api-status-overall .big-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--telemetry-green);
    box-shadow: 0 0 8px var(--telemetry-green);
    animation: telemetry-blink 2s infinite;
}

.api-status-timestamp {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-3);
}

.api-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
}

.status-service-row {
    background: #080b10;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.2s;
}

.status-service-row:hover {
    border-color: var(--border);
}

.status-service-name {
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
}

.status-service-sub {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: var(--text-3);
    margin-top: 2px;
}

.status-service-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
}

.status-indicator.operational { color: var(--telemetry-green); }
.status-indicator.degraded    { color: #f59e0b; }
.status-indicator.down        { color: #ff3b30; }

.status-indicator .si-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.operational .si-dot {
    background: var(--telemetry-green);
    box-shadow: 0 0 5px var(--telemetry-green);
    animation: telemetry-blink 2.5s infinite;
}

.status-indicator.degraded .si-dot {
    background: #f59e0b;
}

.status-uptime {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: var(--text-3);
}

/* ==========================================================================
   KEYBOARD-ACCESSIBLE MEGA-MENU
   ========================================================================== */
.nav-item-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link-trigger:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}

.dropdown-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
    background: rgba(0, 102, 255, 0.15);
}

/* ==========================================================================
   404 ERROR PAGE STYLES
   ========================================================================== */
.error-404-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.error-404-inner {
    text-align: center;
    max-width: 560px;
}

.error-code-display {
    font-family: var(--font-mono);
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #1a2340 0%, #0d111a 50%, rgba(0,102,255,0.3) 100%);
    border: 1px solid rgba(0,102,255,0.2);
    border-radius: var(--radius-sm);
    padding: 24px 48px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.08);
    position: relative;
    display: inline-block;
}

.error-code-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--telemetry-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-404-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.error-404-sub {
    color: var(--text-2);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.error-404-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   ACTIVE NAV SCROLL HIGHLIGHTING
   ========================================================================== */
.nav nav a.scroll-active,
.nav nav .nav-link-trigger.scroll-active {
    color: var(--primary-light);
}

.nav nav .nav-item-dropdown.scroll-active > .nav-link-trigger {
    color: var(--primary-light);
}

/* ==========================================================================
   GLOBAL COMMAND PALETTE (CTRL+K / CMD+K)
   ========================================================================== */
.cmd-palette-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 5px 10px;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.cmd-palette-trigger:hover {
    background: rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.4);
    color: var(--text-1);
}

.cmd-palette-trigger kbd {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    padding: 1px 5px;
    font-size: 9.5px;
    color: var(--primary-light);
}

.cmd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 16, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 20px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.cmd-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cmd-modal {
    background: #0d121f;
    border: 1px solid rgba(0, 102, 255, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 102, 255, 0.2);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 620px;
    overflow: hidden;
    transform: scale(0.97);
    transition: transform 0.2s ease;
}

.cmd-overlay.active .cmd-modal {
    transform: scale(1);
}

.cmd-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: #111728;
}

.cmd-search-bar svg {
    width: 18px;
    height: 18px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.cmd-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 14px;
    outline: none;
}

.cmd-input::placeholder {
    color: var(--text-3);
}

.cmd-kbd-esc {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 2px 7px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-3);
}

.cmd-list {
    max-height: 380px;
    overflow-y: auto;
    padding: 10px;
}

.cmd-group-title {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: 0.1em;
    padding: 8px 12px 4px;
}

.cmd-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    color: var(--text-2);
    text-decoration: none;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cmd-item:hover,
.cmd-item.selected {
    background: rgba(0, 102, 255, 0.15);
    color: #fff;
}

.cmd-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cmd-item-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-light);
}

.cmd-item-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(0, 102, 255, 0.2);
    color: var(--primary-light);
}

.cmd-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    border-top: 1px solid var(--border);
    background: #090c14;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
}

/* ==========================================================================
   RFP SUBMISSION CONFIRMATION MODAL
   ========================================================================== */
.rfp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 16, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.rfp-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.rfp-modal-box {
    background: #0e1322;
    border: 1px solid rgba(0, 229, 153, 0.4);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 229, 153, 0.15);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 540px;
    padding: 32px;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.rfp-modal-overlay.active .rfp-modal-box {
    transform: scale(1);
}

.rfp-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 153, 0.15);
    border: 1px solid rgba(0, 229, 153, 0.4);
    color: var(--telemetry-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.rfp-tracking-id {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius-xs);
    padding: 12px 20px;
    margin: 16px 0 24px;
    display: inline-block;
    letter-spacing: 0.05em;
}

.rfp-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    text-align: left;
    background: #080b12;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 16px;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 11.5px;
}

.rfp-meta-item .label {
    color: var(--text-3);
    font-size: 10px;
    margin-bottom: 3px;
}

.rfp-meta-item .val {
    color: #fff;
    font-weight: 600;
}
/* =======================================================
   FINAL MOBILE CONTAINMENT OVERRIDES
======================================================= */
@media (max-width: 900px) {
    .page-hero-grid,
    .split-grid,
    .calculator-grid,
    .sandbox-console-split {
        grid-template-columns: 1fr;
    }

    .split-grid > * {
        min-width: 0;
        max-width: 100%;
    }

    .dashboard-frame,
    .code-terminal,
    .cashout-simulator-card,
    .ticket-card,
    .sandbox-card,
    .roi-box,
    .api-status-widget,
    .wallet-sim-wrapper {
        max-width: 100%;
        min-width: 0;
    }

    .code-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .code-header span {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .code-body {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .code-body pre {
        max-width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 720px) {
    .nav {
        width: min(100% - 24px, 1440px);
        gap: 12px;
    }

    /* Hero Section Mobile Polish */
    .hero {
        padding: 44px 0 52px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 11px;
        gap: 6px;
        flex-wrap: wrap;
        max-width: 100%;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .hero-badge .spec-tag {
        white-space: nowrap;
    }

    .hero h1 {
        font-size: clamp(26px, 7.2vw, 36px);
        line-height: 1.15;
        letter-spacing: -0.8px;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 26px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 32px;
    }

    .hero-actions a,
    .hero-actions button,
    .cta-actions a,
    .cta-actions button,
    .btn,
    .btn-outline {
        max-width: 100%;
        width: 100%;
        white-space: normal;
        text-align: center;
        justify-content: center;
        padding: 12px 18px;
        font-size: 13.5px;
    }

    /* Hero Spec Feature Badges */
    .hero-specs {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        padding-top: 20px;
    }

    .hero-spec-tag {
        width: 100%;
        justify-content: flex-start;
        padding: 9px 14px;
        font-size: 12px;
    }

    /* Odds Ticker Mobile Polish */
    .odds-ticker-bar {
        height: 32px;
    }

    .ticker-label {
        font-size: 8.5px;
        padding: 0 8px;
        gap: 4px;
        letter-spacing: 0.05em;
    }

    .ticker-track-wrap {
        margin-left: 82px;
    }

    .ticker-event {
        font-size: 10.5px;
        gap: 8px;
        padding: 0 12px;
    }

    /* Command Palette Overlay Mobile */
    .cmd-overlay {
        padding: 40px 12px 20px;
    }

    .cmd-modal {
        max-height: 85vh;
    }

    .cmd-search-bar {
        padding: 12px 14px;
    }

    .cashout-header,
    .cashout-match,
    .cashout-simulator-card > div[style*="justify-content: space-between"],
    .sandbox-controls-row,
    .sandbox-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cashout-match {
        gap: 6px;
    }

    .partition-split-grid,
    .wallet-pipeline-grid {
        grid-template-columns: 1fr;
    }

    .sandbox-tabs {
        flex-direction: column;
        overflow-x: visible;
    }

    .sandbox-tab {
        width: 100%;
        white-space: normal;
        text-align: left;
        padding: 12px 14px;
    }

    .endpoint-badge,
    .endpoint-badge span:last-child {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .data-table,
    .comparison-table,
    .roi-box table {
        table-layout: fixed;
        width: 100%;
    }

    .data-table th,
    .data-table td,
    .comparison-table th,
    .comparison-table td,
    .roi-box th,
    .roi-box td {
        padding: 10px 8px !important;
        font-size: 10.5px !important;
        line-height: 1.4;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 420px) {
    .hero-badge {
        font-size: 9.5px;
        padding: 5px 8px;
        gap: 5px;
    }
    .logo-text {
        font-size: 15px;
    }
    .logo-badge {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
}

/* ==========================================================================
   FAST-TRACK VIP LIAISON (TELEGRAM & WHATSAPP)
   ========================================================================== */
.vip-liaison-card {
    background: linear-gradient(145deg, rgba(16, 22, 36, 0.92) 0%, rgba(10, 14, 24, 0.96) 100%);
    border: 1px solid rgba(0, 102, 255, 0.35);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 102, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.vip-liaison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0088cc, #25d366, #0066ff);
}

.vip-liaison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.vip-liaison-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 153, 0.12);
    border: 1px solid rgba(0, 229, 153, 0.35);
    color: var(--telemetry-green);
    padding: 4px 10px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.vip-liaison-sla {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--primary-light);
    font-weight: 600;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 3px 8px;
    border-radius: var(--radius-xs);
}

.vip-liaison-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.vip-liaison-desc {
    color: var(--text-2);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.vip-channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 600px) {
    .vip-channels-grid {
        grid-template-columns: 1fr;
    }
}

.vip-channel-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.vip-channel-btn .vip-channel-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.vip-channel-btn .vip-channel-icon svg {
    width: 18px;
    height: 18px;
}

.vip-channel-btn .vip-channel-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.vip-channel-name {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.vip-channel-val {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vip-channel-arrow {
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.vip-channel-btn:hover .vip-channel-arrow {
    transform: translateX(3px);
}

/* Telegram Brand Styling */
.vip-channel-tg {
    background: rgba(0, 136, 204, 0.12);
    border-color: rgba(0, 136, 204, 0.35);
    color: #e0f2fe;
}

.vip-channel-tg .vip-channel-icon {
    background: #0088cc;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(0, 136, 204, 0.5);
}

.vip-channel-tg:hover {
    background: rgba(0, 136, 204, 0.22);
    border-color: #0088cc;
    box-shadow: 0 4px 18px rgba(0, 136, 204, 0.35);
    transform: translateY(-2px);
    color: #ffffff;
}

/* WhatsApp Brand Styling */
.vip-channel-wa {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
    color: #dcfce7;
}

.vip-channel-wa .vip-channel-icon {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.5);
}

.vip-channel-wa:hover {
    background: rgba(37, 211, 102, 0.22);
    border-color: #25d366;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
    color: #ffffff;
}

/* ==========================================================================
   RFP MODAL INSTANT LIAISON STYLING
   ========================================================================== */
.rfp-instant-liaison {
    background: #080c16;
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: var(--radius-xs);
    padding: 16px;
    margin: 16px 0 22px;
    text-align: left;
}

.rfp-instant-title {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--telemetry-green);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.rfp-instant-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 500px) {
    .rfp-instant-actions {
        grid-template-columns: 1fr;
    }
}

.rfp-channel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.rfp-channel-tg {
    background: #0088cc;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 136, 204, 0.3);
}

.rfp-channel-tg:hover {
    background: #0099e6;
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.5);
    transform: translateY(-1px);
    color: #ffffff;
}

.rfp-channel-wa {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.rfp-channel-wa:hover {
    background: #2ee06f;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    transform: translateY(-1px);
    color: #ffffff;
}

/* ==========================================================================
   GLOBAL FLOATING VIP QUICK-LIAISON LAUNCHER
   ========================================================================== */
.floating-vip-cluster {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-vip-item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    position: relative;
}

.floating-vip-item svg {
    width: 22px;
    height: 22px;
}

.floating-vip-item.tg-btn {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    box-shadow: 0 4px 18px rgba(0, 136, 204, 0.45);
}

.floating-vip-item.wa-btn {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
}

.floating-vip-item:hover {
    transform: translateY(-4px) scale(1.08);
}

.floating-vip-item.tg-btn:hover {
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.65);
}

.floating-vip-item.wa-btn:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.65);
}

.floating-vip-item .vip-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #0e1424;
    border: 1px solid var(--border);
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: var(--radius-xs);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.floating-vip-item:hover .vip-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
    .floating-vip-cluster {
        bottom: 20px;
        left: 16px;
        gap: 8px;
    }
    .floating-vip-item {
        width: 40px;
        height: 40px;
    }
    .floating-vip-item svg {
        width: 19px;
        height: 19px;
    }
}



/* ==========================================================================
   INSTITUTIONAL VIP LIAISON (MODAL & CARD STYLING)
   ========================================================================== */
.rfp-instant-liaison {
    background: linear-gradient(180deg, #101522 0%, #0c0f17 100%);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: 12px;
    padding: 20px 22px;
    margin: 22px 0 24px 0;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.rfp-instant-liaison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0088cc 0%, #00d2ff 45%, #00e599 100%);
}

.rfp-liaison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.rfp-liaison-eyebrow {
    font-family: var(--font-mono, 'Space Mono', monospace);
    font-size: 11px;
    font-weight: 700;
    color: #00d2ff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rfp-liaison-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 229, 153, 0.12);
    border: 1px solid rgba(0, 229, 153, 0.35);
    color: #00e599;
    font-family: var(--font-mono, monospace);
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    letter-spacing: 0.4px;
}

.rfp-liaison-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00e599;
    box-shadow: 0 0 8px #00e599;
    animation: telemetry-blink 2s infinite;
}

.rfp-liaison-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.rfp-liaison-channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rfp-channel-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.rfp-channel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.rfp-channel-card.rfp-channel-tg:hover {
    background: rgba(0, 136, 204, 0.09);
    border-color: rgba(0, 136, 204, 0.45);
}

.rfp-channel-card.rfp-channel-wa:hover {
    background: rgba(37, 211, 102, 0.09);
    border-color: rgba(37, 211, 102, 0.45);
}

.rfp-channel-card .channel-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 14px;
    transition: transform 0.2s ease;
}

.rfp-channel-card:hover .channel-icon-wrap {
    transform: scale(1.08);
}

.rfp-channel-card .tg-icon-wrap {
    background: rgba(0, 136, 204, 0.16);
    border: 1px solid rgba(0, 136, 204, 0.35);
    color: #0088cc;
}

.rfp-channel-card .wa-icon-wrap {
    background: rgba(37, 211, 102, 0.16);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25d366;
}

.rfp-channel-card .channel-info {
    flex: 1;
    min-width: 0;
}

.rfp-channel-card .channel-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.rfp-channel-card .channel-meta {
    font-family: var(--font-mono, monospace);
    font-size: 11.5px;
    color: #8fa0b5;
    margin-top: 2px;
}

.rfp-channel-card .channel-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.rfp-channel-card.rfp-channel-tg .channel-action {
    background: rgba(0, 136, 204, 0.18);
    color: #00d2ff;
    border: 1px solid rgba(0, 136, 204, 0.35);
}

.rfp-channel-card.rfp-channel-tg:hover .channel-action {
    background: #0088cc;
    color: #ffffff;
    border-color: #0088cc;
}

.rfp-channel-card.rfp-channel-wa .channel-action {
    background: rgba(37, 211, 102, 0.18);
    color: #00e599;
    border: 1px solid rgba(37, 211, 102, 0.35);
}

.rfp-channel-card.rfp-channel-wa:hover .channel-action {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
}
