:root {
    --primary-yellow: #FDB913;
    --primary-blue: #0A1E42; /* Deep Blue from "View Details" button */
    --accent-pink: #E91E63; /* Trending badge approx */
    --bg-light: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-muted: #6C757D;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-primary {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--text-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-outline-dark {
    color: var(--text-dark);
    border-color: #ced4da;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
}

.search-bar input {
    background-color: #F1F3F5;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    width: 250px;
}

.league-pills .badge {
    font-weight: 500;
    padding: 0.5em 1em;
    background-color: #E9ECEF;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.league-pills .badge:hover {
    background-color: #DEE2E6;
}

.footer {
    background-color: #111;
    color: #fff;
    padding: 3rem 0;
}

.footer a {
    color: #bbb;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

/* Standings Table Improvements */
.custom-table th {
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom-width: 1px;
}

.custom-table td {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.position-number {
    font-weight: 600;
    color: var(--text-muted);
}

.team-name {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-badge {
    font-size: 0.7rem;
    font-weight: 700;
}

.form-w {
    background-color: #13CF00;
    color: white;
}

.form-d {
    background-color: #767676;
    color: white;
}

.form-l {
    background-color: #E90052;
    color: white;
}

/* Hero enhancements */
#heroCarousel .display-4 {
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-item-overlay {
    background: linear-gradient(135deg, rgba(10,30,66,0.85) 0%, rgba(26,35,126,0.6) 100%);
    min-height: 400px; 
    display: flex; 
    align-items: center;
    position: relative;
    z-index: 1;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
