.sport-hero {
    position: relative;
    min-height: auto;
    padding: 9rem 1.5rem 2rem;
    overflow: hidden;
}
.sport-hero .hero-bg-layer {
    opacity: 0.35;
    filter: blur(6px) brightness(0.45);
}
.sport-hero .hero-overlay-radial {
    background: radial-gradient(circle at 30% 50%, rgba(15,23,42,0.5) 0%, rgba(15,23,42,0.92) 100%);
}
.sport-hero-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.sport-hero-emoji {
    line-height: 1;
    font-size: clamp(2.8rem, 9vw, 4.5rem);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
    animation: floatEmoji 4s ease-in-out infinite;
}
.sport-hero-description {
    margin-inline: 0;
    opacity: 0.8;
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}
@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}
html.light-mode .league-nav-card {
	border:1px solid rgb(0 0 0 / 25%);
}
 
html.light-mode .sport-pill {
	border:1px solid rgb(0 0 0 / 25%);
}
html.light-mode .sport-pill:hover {
	border:1px solid rgb(0 0 0 / 25%);
	color:var(--text-primary);
}
.sport-leagues-section {
    padding: 2rem 0 3rem;
}
.sport-leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 1.25rem;
}
.league-nav-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-secondary, #cbd5e1);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.league-nav-card:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(99,102,241,0.15);
}
.league-nav-card .lnc-count {
    margin-left: auto;
    background: rgba(255,255,255,0.07);
    color: var(--text-muted, #94a3b8);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}
.league-nav-card.is-live .lnc-count {
    background: rgba(239,68,68,0.15);
    color: #f87171;
}
.lnc-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 1.2s ease-in-out infinite;
}

.other-sports-section { padding: 2rem 0 3rem; }
.other-sports-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.25rem;
}
.sport-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 100px;
    text-decoration: none;
    color: var(--text-secondary, #cbd5e1);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.sport-pill:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-1px);
}
.sport-pill-emoji { font-size: 15px; line-height: 1; }
