/* 
========================================================================
   WhereSports Registry - "DAZN Style" Premium Broadcasting UI System
   Filename: wheresports.css
   Version: 9.0.0 (High-End Media Company Dashboard Edition)
   Copyright: © 2026 WhereSports. All rights reserved.
========================================================================
*/

/* --- Google Fonts & Core Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Share+Tech+Mono&display=swap');

:root {
    /* Matte Deep Charcoal & Black Backgrounds */
    --bg-dark: #07080a;           /* Deep void background */
    --bg-panel: #0e1013;          /* Dark charcoal panels */
    --bg-card: rgba(18, 20, 26, 0.7);  /* Glassmorphism matte gray */
    --bg-card-hover: rgba(26, 29, 38, 0.95);
    
    /* Vibrant High-Voltage Accents */
    --neon-yellow: #dfff00;       /* Vibrant neon yellow */
    --neon-yellow-glow: rgba(223, 255, 0, 0.4);
    
    --electric-blue: #0055ff;     /* High-voltage electric blue */
    --electric-blue-glow: rgba(0, 85, 255, 0.4);
    
    /* Color Palette Helpers */
    --accent-emerald: #22c55e;
    --accent-red: #ef4444;
    
    /* Text Hierarchy */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #4b5563;
    
    /* Font Families */
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    
    /* Glassmorphism & Borders */
    --border: rgba(255, 255, 255, 0.04);
    --border-hover: rgba(223, 255, 0, 0.2);
    --border-blue: rgba(0, 85, 255, 0.3);
    
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-yellow);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation Header --- */
header {
    background: rgba(7, 8, 10, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

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

/* Sleek Digital Logo */
.logo {
    font-size: 25px;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    position: relative;
}

.logo i {
    color: var(--neon-yellow);
    font-size: 28px;
    filter: drop-shadow(0 0 10px var(--neon-yellow-glow));
}

.logo span {
    color: var(--electric-blue);
    font-weight: 300;
    filter: drop-shadow(0 0 10px var(--electric-blue-glow));
}

/* Navigation Links */
nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

nav a:not(.contact-btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 16px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 4px;
}

nav a:not(.contact-btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-yellow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--neon-yellow-glow);
}

nav a:not(.contact-btn):hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

nav a:not(.contact-btn):hover::after {
    width: 60%;
}

nav a:not(.contact-btn).active {
    color: #ffffff;
    background: transparent;
}

nav a:not(.contact-btn).active::after {
    width: 80%;
    background: var(--neon-yellow);
}

/* Verified Button - Neon Accented */
.contact-btn {
    background: linear-gradient(135deg, var(--neon-yellow) 0%, #b3cc00 100%);
    border: none;
    color: #000000;
    padding: 12px 24px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(223, 255, 0, 0.2);
}

.contact-btn i {
    transition: transform 0.3s ease;
    font-size: 14px;
    font-weight: bold;
}

.contact-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.contact-btn:hover i {
    transform: translateX(4px);
}

.mobile-toggle {
    display: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

/* --- Massive Hero Banner --- */
.hero {
    margin-top: 40px;
    margin-bottom: 60px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background-color: var(--bg-panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
}

/* Dark atmospheric gradient overlays */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 8, 10, 0.95) 0%, rgba(7, 8, 10, 0.7) 40%, rgba(7, 8, 10, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding: 60px 48px;
    text-align: left;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 85, 255, 0.12);
    border: 1px solid var(--border-blue);
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
}

.badge i {
    color: var(--electric-blue);
    animation: pulseGlow 1.5s infinite;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--neon-yellow);
    filter: drop-shadow(0 0 10px var(--neon-yellow-glow));
}

.hero p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 600px;
}

.cta-stack {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-main {
    background: var(--neon-yellow);
    border: 1px solid var(--neon-yellow);
    color: #000000;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(223, 255, 0, 0.25);
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--neon-yellow);
    background: #ffffff;
    border-color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border-radius: 4px;
}

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

/* --- Clean Grid Navigation (Sports Tiles) --- */
/* Stadium Radial Lighting Glows */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 600px;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(223, 255, 0, 0.04) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.category-section {
    margin-bottom: 60px;
}

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

.category-tile {
    background: rgba(18, 20, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 28px 16px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.category-tile i {
    font-size: 34px;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-tile span {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Slick High-Tech Play Overlay */
.tile-play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.1) 0%, rgba(0, 85, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 3;
}

.tile-play-overlay i {
    font-size: 40px;
    color: var(--neon-yellow) !important;
    transform: scale(0.6);
    filter: drop-shadow(0 0 12px var(--neon-yellow-glow));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-tile:hover {
    border-color: rgba(0, 85, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 85, 255, 0.25), 0 0 0 1px rgba(0, 85, 255, 0.3);
}

.category-tile:hover i {
    transform: scale(0.9);
}

.category-tile:hover span {
    transform: translateY(4px);
    color: #ffffff;
}

.category-tile:hover .tile-play-overlay {
    opacity: 1;
}

.category-tile:hover .tile-play-overlay i {
    transform: scale(1);
}

/* --- Immersive Glassmorphism Content HUD --- */
.directory-section {
    padding-bottom: 100px;
}

.directory-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    position: relative;
}

/* Subtle accent lighting border */
.directory-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(223, 255, 0, 0.25) 0%, rgba(0, 85, 255, 0.25) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

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

.directory-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.directory-title-wrap i {
    font-size: 24px;
    color: var(--electric-blue);
    filter: drop-shadow(0 0 6px var(--electric-blue-glow));
}

.directory-title-wrap h3 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.directory-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
}

.directory-status.status-live {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: var(--accent-emerald);
}

.directory-status.status-fallback {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--accent-red);
}

.directory-status span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 6px currentColor;
}

.directory-status.status-live span {
    animation: pulseGlow 1s infinite alternate;
}

/* Event List Card Layouts */
.directory-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-row {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    padding: 24px 32px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.event-row:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.event-sport-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.event-row:hover .event-sport-icon {
    background: var(--electric-blue);
    color: #ffffff;
    border-color: var(--electric-blue);
    box-shadow: 0 0 12px var(--electric-blue-glow);
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-meta h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.event-meta p {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.event-broadcasters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.broadcaster-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
}

.event-row:hover .broadcaster-tag {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

.event-status-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.status-pill {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-live {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--accent-emerald);
}

.status-upcoming {
    background: rgba(0, 85, 255, 0.08);
    border: 1px solid var(--border-blue);
    color: var(--electric-blue);
}

.status-completed {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.status-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-emerald);
    box-shadow: 0 0 6px var(--accent-emerald);
    animation: pulseGlow 0.6s infinite alternate;
}

.btn-action {
    background: transparent;
    border: 1px solid var(--electric-blue);
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
}

.btn-action:hover {
    background: var(--electric-blue);
    box-shadow: 0 4px 15px var(--electric-blue-glow);
    color: #ffffff;
}

/* --- Features Grid --- */
.features {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 0 6px var(--neon-yellow-glow));
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 48px;
    text-transform: uppercase;
}

.section-title span {
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-yellow);
    filter: drop-shadow(0 0 8px var(--neon-yellow-glow));
}

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

.feature-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 36px 28px;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--neon-yellow);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(223, 255, 0, 0.1);
}

.icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-yellow);
    font-size: 22px;
    margin-bottom: 24px;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover .icon-wrap {
    background: var(--neon-yellow);
    color: #000000;
    border-color: var(--neon-yellow);
    box-shadow: 0 0 12px var(--neon-yellow-glow);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

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

/* --- Clean About Section --- */
.about-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

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

.about-content h2 {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-content h2 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--electric-blue);
    filter: drop-shadow(0 0 8px var(--electric-blue-glow));
}

.about-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bullet-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bullet-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-emerald);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bullet-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    text-transform: uppercase;
}

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

/* Telemetry Card Panel */
.editorial-panel-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.editorial-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.editorial-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.editorial-header h3 i {
    color: var(--electric-blue);
    filter: drop-shadow(0 0 6px var(--electric-blue-glow));
}

.editorial-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.editorial-metric-row {
    background: rgba(255, 255, 255, 0.005);
    border: 1px solid var(--border);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.editorial-metric-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
}

.editorial-metric-label i {
    color: var(--text-secondary);
}

.editorial-metric-val {
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--neon-yellow);
    font-weight: 700;
    filter: drop-shadow(0 0 4px var(--neon-yellow-glow));
}

.editorial-metric-val.blue-val {
    color: var(--electric-blue);
    filter: drop-shadow(0 0 4px var(--electric-blue-glow));
}

.editorial-callout {
    background: rgba(0, 85, 255, 0.03);
    border-left: 3px solid var(--electric-blue);
    padding: 18px;
    margin-top: 24px;
    border-radius: 0 6px 6px 0;
}

.editorial-callout p {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Standardized Subpage Core Wrappers --- */
.subpage-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px 100px 24px;
}

.subpage-header {
    margin-bottom: 40px;
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-yellow);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    transition: transform var(--transition);
}

.back-home-link:hover {
    transform: translateX(-4px);
    filter: drop-shadow(0 0 6px var(--neon-yellow-glow));
}

.subpage-header h1 {
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.subpage-header .subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

.subpage-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.subpage-card h2 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 32px 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.subpage-card h2:first-of-type {
    margin-top: 0;
}

.subpage-card h2 i {
    color: var(--electric-blue);
    filter: drop-shadow(0 0 4px var(--electric-blue-glow));
}

.subpage-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.subpage-card p strong {
    color: #ffffff;
}

.subpage-card p:last-child {
    margin-bottom: 0;
}

.subpage-card ul {
    margin: 0 0 24px 20px;
    color: var(--text-secondary);
    font-size: 15px;
}

.subpage-card ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.subpage-card ul li strong {
    color: #ffffff;
}

.subpage-card a {
    color: var(--neon-yellow);
    text-decoration: underline;
    transition: color var(--transition);
}

.subpage-card a:hover {
    color: #ffffff;
}

.callout-box {
    background: rgba(0, 85, 255, 0.03);
    border-left: 3px solid var(--electric-blue);
    padding: 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.callout-box p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* B2B Contact Hub Layout */
.contact-hub-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
    align-items: stretch;
}

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

.info-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    color: var(--neon-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border-radius: 8px;
}

.info-card-text h3 {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.info-card-text p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.info-card-text a {
    color: var(--neon-yellow);
    text-decoration: none;
    font-weight: 700;
}

.info-card-text a:hover {
    color: #ffffff;
}

.partner-desk-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-desk-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.partner-desk-card h3 i {
    color: var(--electric-blue);
}

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

/* Form Inputs */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--neon-yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--neon-yellow);
    box-shadow: 0 0 15px rgba(223, 255, 0, 0.15);
}

.form-group select option {
    background-color: var(--bg-panel);
    color: #ffffff;
}

.btn-submit {
    background: var(--neon-yellow);
    border: 1px solid var(--neon-yellow);
    color: #000000;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    width: 100%;
    margin-top: 8px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(223, 255, 0, 0.25);
}

.btn-submit:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--neon-yellow);
}

/* Toast Notification HUD */
.toast-alert {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-panel);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-radius: 8px;
    transform: translateY(150%);
    transition: transform var(--transition);
    z-index: 2000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.toast-alert.show {
    transform: translateY(0);
}

.toast-icon {
    font-size: 20px;
    color: var(--accent-emerald);
    filter: drop-shadow(0 0 6px var(--accent-emerald));
}

.toast-text {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* --- Footer --- */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px 0;
    margin-top: 80px;
}

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

.footer-brand h3 {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-brand h3 span {
    color: var(--electric-blue);
    filter: drop-shadow(0 0 6px var(--electric-blue-glow));
}

.footer-brand p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    border-radius: 6px;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--neon-yellow);
    border-color: var(--neon-yellow);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 0 12px var(--neon-yellow-glow);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--neon-yellow);
}

.footer-status-card {
    background: rgba(255, 255, 255, 0.005);
    border: 1px solid var(--border);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
}

.footer-status-line {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.footer-status-dot {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-emerald);
}

.footer-status-dot::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-emerald);
    box-shadow: 0 0 5px var(--accent-emerald);
    animation: pulseGlow 0.8s infinite alternate;
}

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

.copy-text {
    font-size: 12.5px;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12.5px;
    transition: color var(--transition);
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--neon-yellow);
}

/* --- System Animations --- */
@keyframes pulseGlow {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-top {
        grid-template-columns: 1fr 1.2fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-panel);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        align-items: stretch;
        box-shadow: var(--shadow);
    }
    
    nav.show {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-content {
        padding: 40px 24px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }
    
    .event-status-wrap {
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin-top: 12px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}

/* --- Clean Visual Layout Components for Sports Events --- */
.event-league-tag {
    color: var(--neon-yellow);
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 750;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.event-teams-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin: 6px 0;
}

.team-block {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.team-logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.team-logo.single-logo {
    width: 30px;
    height: 30px;
}

.team-name {
    font-size: 16.5px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.team-name.single-name {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.vs-divider {
    color: var(--neon-yellow);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 800;
    filter: drop-shadow(0 0 4px var(--neon-yellow-glow));
}

/* Premium DAZN Empty State Card */
.no-events-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 20px 0;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2);
}

.no-events-card i {
    font-size: 58px;
    color: var(--text-muted);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.03));
    animation: pulseGlow 2s infinite alternate;
}

.no-events-card h4 {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.no-events-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.6;
    margin: 0 auto;
}

/* --- Sponsored Offers Section --- */
.sponsored-offers-section {
    padding-bottom: 65px;
    margin-top: -20px;
}

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

.offer-card {
    background: rgba(14, 16, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow);
}

.offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.offer-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow, var(--neon-yellow));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 255, 255, 0.02);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.offer-brand {
    font-size: 12px;
    font-weight: 800;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

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

.offer-cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: auto;
}

.offer-price {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.btn-offer-action {
    background: var(--neon-yellow);
    border: 1px solid var(--neon-yellow);
    color: #000000;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(223, 255, 0, 0.15);
}

.btn-offer-action:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

.btn-offer-action.blue-btn {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px var(--electric-blue-glow);
}

.btn-offer-action.blue-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.btn-offer-action.orange-btn {
    background: #ff5500;
    border-color: #ff5500;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.25);
}

.btn-offer-action.orange-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
