/* Reset & CSS Custom Variables */
:root {
    --bg-dark: #07090e;
    --bg-card: rgba(15, 23, 42, 0.65);
    --bg-card-hover: rgba(30, 41, 59, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(59, 130, 246, 0.3);
    
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --primary-glow: rgba(59, 130, 246, 0.4);
    
    --ov-org: #ff7f00;
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    --font-orbitron: 'Orbitron', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Background Ambient Glow */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 900px;
    right: -100px;
}

.bg-glow-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    top: 2000px;
    left: -150px;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-alt {
    background: linear-gradient(135deg, #a78bfa 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    transition: background-color 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--primary-glow);
}

.brand-dot {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    color: #ffffff;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-main);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

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

.btn-sm {
    padding: 8px 14px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding-top: 170px;
    padding-bottom: 100px;
    position: relative;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(59, 130, 246, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

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

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.metric-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

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

.metric-divider {
    width: 1px;
    height: 36px;
    background-color: var(--border-color);
}

/* Hero Visual Scoreboard Card */
.hero-visual {
    position: relative;
}

.hero-card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(30px);
    z-index: 0;
}

.hero-card {
    position: relative;
    z-index: 1;
    padding: 28px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

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

.card-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot.online {
    width: 9px;
    height: 9px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
}

.status-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.card-tag {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--primary);
    background: rgba(59, 130, 246, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
}

.mock-scoreboard {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 16px;
    background: #030712;
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 2px solid #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

.team-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.digit-display {
    font-family: var(--font-mono);
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff3344;
    background: #0f0506;
    border: 1px solid #3b1115;
    border-radius: 6px;
    padding: 4px 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 12px rgba(255, 51, 68, 0.7);
}

.digit-sm {
    font-size: 1.4rem;
    color: #ffcc00;
    background: #191400;
    border-color: #382c00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
}

.score-center {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-dim);
    margin-bottom: 2px;
}

.clock-display {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: #00ffcc;
    background: #001a14;
    border: 1px solid #004d3d;
    border-radius: 4px;
    padding: 2px 6px;
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.7);
}

.bso-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #030712;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #1e293b;
    margin-bottom: 16px;
}

.bso-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bso-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
}

.bso-dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1e293b;
    border: 1px solid #334155;
}

.dot.active {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.card-footer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* Sections Common */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

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

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

/* Retrofit Focus Section */
.retrofit-focus-section {
    padding: 60px 0 100px 0;
}

.retrofit-banner {
    padding: 56px 40px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    border: 1px solid rgba(255, 127, 0, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 127, 0, 0.12);
    border-radius: var(--radius-lg);
}

.retrofit-header {
    max-width: 820px;
    margin: 0 auto 48px auto;
}

.retrofit-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--ov-org);
    letter-spacing: 1.5px;
    background: rgba(255, 127, 0, 0.12);
    border: 1px solid rgba(255, 127, 0, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.retrofit-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.retrofit-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
}

.retrofit-pillars-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    width: 100% !important;
}

.pillar-box {
    background: rgba(8, 12, 22, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-top: 3px solid var(--ov-org) !important;
    border-radius: var(--radius-md) !important;
    padding: 32px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    box-sizing: border-box !important;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.pillar-box:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(255, 127, 0, 0.5) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 127, 0, 0.15) !important;
}

.pillar-top-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-bottom: 20px !important;
}

.pillar-num {
    font-family: var(--font-heading) !important;
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: var(--ov-org) !important;
    line-height: 1 !important;
}

.pillar-icon-wrapper {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    background: rgba(255, 127, 0, 0.15) !important;
    border: 1px solid rgba(255, 127, 0, 0.3) !important;
    border-radius: var(--radius-sm) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.4rem !important;
}

.pillar-heading {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
    color: #ffffff !important;
    font-family: var(--font-heading) !important;
}

.pillar-text {
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
    line-height: 1.6 !important;
}

@media (max-width: 992px) {
    .retrofit-pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ======================================================
   AUTHENTIC PRO SCOREBOARDS REMOTE CARD SIMULATOR STYLES
   ====================================================== */
.authentic-remote-card {
    max-width: 560px;
    margin: 0 auto;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.hero-remote-preview {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 127, 0, 0.2);
    border: 1px solid rgba(255, 127, 0, 0.35);
}

.remote-horn-flash {
    position: absolute;
    inset: 0;
    background: rgba(255, 59, 48, 0.95);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.remote-horn-flash.active {
    opacity: 1;
}

.remote-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
}

.remote-board-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--ov-org);
}

.remote-scorer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #00ffcc;
    color: #000;
    font-weight: 900;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

/* Sliders Stack */
.remote-sliders-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.remote-slider-wrapper {
    position: relative;
    height: 44px;
    background: #000;
    border: 1px solid #333;
    border-radius: 22px;
    display: flex;
    align-items: center;
    overflow: hidden;
    user-select: none;
}

.remote-slider-wrapper.horn-slider {
    border-color: #ff3b30;
}

.remote-slider-text {
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 1px;
    pointer-events: none;
}

.remote-slider-text.horn-text {
    color: #ff3b30;
}

.remote-slider-handle {
    position: absolute;
    left: 2px;
    width: 40px;
    height: 40px;
    background: var(--ov-org);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: grab;
    transition: left 0.1s ease;
}

.remote-slider-handle.horn-handle {
    background: #ff3b30;
    color: #fff;
}

/* Inning Bar */
.remote-inning-bar {
    background: #000;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.remote-label {
    font-size: 0.65rem;
    font-weight: 900;
    color: #888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.remote-inning-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.remote-inning-display {
    text-align: center;
    min-width: 80px;
}

.remote-half-label {
    color: var(--ov-org);
    font-size: 0.65rem;
    font-weight: 900;
}

.remote-val-large {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.remote-val-org {
    color: var(--ov-org);
    font-size: 3.5rem;
}

.remote-val-white {
    color: #ffffff;
    font-size: 3.5rem;
}

.remote-btn-sm {
    background: #222;
    color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    transition: background 0.15s ease;
}

.remote-btn-sm:active {
    background: #333;
    transform: scale(0.95);
}

/* Game Grid */
.remote-game-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    border: 1px solid #333;
    border-radius: 12px;
    background: #000;
    margin-bottom: 15px;
}

.remote-swap-btn {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    background: #111;
    border: 1px solid #333;
    color: var(--ov-org);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.remote-swap-btn:active {
    background: #222;
    transform: translateX(-50%) scale(0.9);
}

.remote-team-col {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.remote-team-input {
    text-align: center;
    font-weight: 900;
    background: transparent;
    border: none;
    border-bottom: 1px dashed #333;
    color: var(--ov-org);
    font-size: 1.1rem;
    width: 100%;
    padding: 4px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin-bottom: 8px;
    outline: none;
}

.remote-team-input.guest-input {
    color: #fff;
}

.remote-v-divider {
    width: 1px;
    background: #333;
    height: 100%;
}

.remote-controls-row {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

/* BSO Grid */
.remote-bso-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.remote-bso-card {
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: transform 0.15s ease, background 0.15s ease;
}

.remote-bso-card:active {
    background: #111;
    transform: scale(0.96);
}

.remote-bso-card.bso-balls { border-color: #00aaff; }
.remote-bso-card.bso-strikes { border-color: gold; }
.remote-bso-card.bso-outs { border-color: var(--accent-rose); }

.remote-bso-label {
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
}

.label-balls { color: #00aaff; }
.label-strikes { color: gold; }
.label-outs { color: var(--accent-rose); }

.remote-bso-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
}

.val-balls { color: #00aaff; }
.val-strikes { color: gold; }
.val-outs { color: var(--accent-rose); }

/* Count Reset Bar */
.remote-count-bar {
    position: relative;
    height: 48px;
    background: #000;
    border: 1px solid #333;
    border-radius: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.remote-count-handle {
    position: absolute;
    left: 2px;
    width: 120px;
    height: 44px;
    border-radius: 22px;
    font-size: 0.6rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    background: var(--ov-org);
    cursor: pointer;
    user-select: none;
}

.remote-count-handle:active {
    transform: scale(0.96);
}

.remote-count-text {
    width: 100%;
    padding-left: 130px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 900;
    color: #888;
    letter-spacing: 0.5px;
}

/* Clocks & Pitchers Card */
.remote-clocks-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px;
}

.remote-card-title {
    color: var(--ov-org);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.remote-clocks-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 12px;
    align-items: center;
}

.remote-clock-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.remote-clock-time {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--ov-org);
    margin: 4px 0 10px 0;
}

.remote-clock-btn-row {
    display: flex;
    width: 100%;
}

.remote-clock-btn {
    background: transparent;
    border: 2px solid #444;
    color: #888;
    border-radius: 6px;
    padding: 6px 12px;
    width: 100%;
    font-weight: 900;
    font-size: 0.75rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.remote-clock-btn.active {
    border-color: #44ff44;
    color: #44ff44;
}

.remote-pitchers-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.remote-pitcher-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #080808;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #222;
}

.remote-pitcher-lbl {
    font-size: 0.55rem;
    font-weight: 900;
    color: #888;
}

.remote-pitcher-num {
    width: 35px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: var(--ov-org);
    font-weight: bold;
    text-align: center;
    outline: none;
    font-size: 0.8rem;
}

.remote-pitcher-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--ov-org);
}

.remote-pitcher-val.val-white {
    color: #fff;
}

.remote-mini-btns {
    display: flex;
    gap: 4px;
}

.remote-mini-btn {
    background: #222;
    color: #fff;
    border: 1px solid #333;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remote-mini-btn:active {
    background: #333;
}

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

.feature-card {
    padding: 32px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-cyan { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.icon-purple { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.icon-green { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.icon-amber { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.icon-rose { background: rgba(244, 63, 94, 0.15); color: #fb7185; }
.icon-blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

/* Hardware Specs */
.hw-spec-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.hw-card {
    padding: 36px;
}

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

.hw-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.hw-chip {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    background: rgba(139, 92, 246, 0.15);
    color: #c4b5fd;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.hw-specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hw-specs-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hw-specs-list li strong {
    color: var(--text-main);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

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

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

.faq-answer {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    display: none;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    padding: 48px;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.direct-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.direct-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dim);
}

.direct-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Contact Centered Cards */
.contact-card-centered {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.contact-channel-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-channel-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.channel-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.channel-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.channel-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex: 1;
}

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

/* Footer */
.footer {
    background: #030712;
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
}

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

.link-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.col-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.link-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.link-col a:hover {
    color: var(--text-main);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        max-width: 540px;
        margin: 0 auto;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(7, 9, 14, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
    }

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

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .features-grid, .hw-spec-cards {
        grid-template-columns: 1fr;
    }

    .mock-scoreboard {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

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

/* Sports Supported Bar in Hero */
.sports-supported-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.sports-bar-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dim);
    margin-right: 4px;
}

.sport-chip {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sport-chip.active {
    color: var(--ov-org);
    border-color: rgba(255, 127, 0, 0.4);
    background: rgba(255, 127, 0, 0.1);
}

.proven-tag {
    font-size: 0.65rem;
    background: var(--ov-org);
    color: #000;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Sports Architecture Section */
.sports-section {
    padding: 80px 0;
}

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

.sport-card {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.sport-card.proven-card {
    border-color: rgba(255, 127, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 127, 0, 0.1);
}

.sport-card-badge {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--ov-org);
    color: #000;
    margin-bottom: 16px;
}

.sport-card-badge.readiness {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.sport-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.sport-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

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

.sport-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-main);
    margin-top: auto;
}

/* Simulator Sport Switcher Tabs */
.sim-sport-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.sim-sport-tab {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.sim-sport-tab.active {
    background: var(--ov-org);
    color: #000;
    border-color: var(--ov-org);
    box-shadow: 0 4px 14px rgba(255, 127, 0, 0.4);
}

.sim-tag {
    font-size: 0.65rem;
    background: #000;
    color: #00ffcc;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 900;
}

.sim-tag-preview {
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.sport-preview-banner {
    text-align: center;
    margin-bottom: 15px;
}

.preview-badge {
    font-size: 0.7rem;
    font-weight: 900;
    background: rgba(255, 127, 0, 0.15);
    color: var(--ov-org);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 127, 0, 0.3);
}

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

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