/* ── League Page Specific Styles ────────────────── */
.league-hero {
    position: relative;
    min-height: auto;
    padding: 10rem 1.5rem 2rem;
    overflow: hidden;
}

.league-hero .hero-bg-layer {
    opacity: 0.4;
    filter: blur(4px) brightness(0.5);
}

.league-hero .hero-overlay-radial {
    background: radial-gradient(circle at center, rgba(15,23,42,0.6) 0%, rgba(15,23,42,0.9) 100%);
}
html.light-mode .olc-name {
	color:#4c4949;
}
.league-hero .hero-subtitle-dynamic {
    margin-inline: 0;
    opacity: 1;
    max-width: 650px;
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    line-height: 1.6;
    transform: none;
    animation: none;
}

/* Other League Cards */
.other-leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.other-league-card {
    position: relative;
    display: block;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition);
    overflow: hidden;
}

.other-league-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.olc-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.no-matches-msg {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
    grid-column: 1 / -1;
}
