#seasonTab .nav-link {
    color: #1a2533;
    font-weight: 600;
    background: transparent;
    transition: 0.3s;
}

#seasonTab .nav-link.active {
    background-color: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

#seasonTab .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
    border-color: #dc3545;
    color: #dc3545;
}

.tab-content {
    border-radius: 15px;
    background: #fff;
}

#v-pills-tab .nav-link {
    color: #1a2533;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#v-pills-tab .nav-link.active {
    background-color: #dc3545 !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

#v-pills-tab .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
    color: #dc3545;
}

.tab-content {
    min-height: 400px;
}

/* Tournament Page Specifics */
.stats-card {
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: none;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
}

.stats-card:hover {
    transform: translateY(-5-px);
}

.table-league thead {
    background-color: #1a2533;
    color: white;
}

.promotion-badge {
    background-color: #d4edda;
    color: #155724;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: bold;
}

.relegation-badge {
    background-color: #f8d7da;
    color: #721c24;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: bold;
}

.hero-sub-header {
    background: #dc3545;
    color: white;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Match General "Grand" Theme */
#galleryTab .nav-link {
    background: transparent;
    color: #888;
    border: none;
    transition: 0.3s all ease;
}

#galleryTab .nav-link.active {
    background: #dc3545 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.custom-standings-table {
    border-collapse: separate;
    border-spacing: 0 5px;
}

.custom-standings-table thead th {
    border: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
}

.custom-standings-table tbody td {
    background: #f8f9fa;
    border: none;
    padding: 15px;
}

.custom-standings-table tbody tr:hover td {
    background: #fff3f3;
}

.stat-leader-card {
    transition: transform 0.3s ease;
}

.stat-leader-card:hover {
    transform: translateY(-5px);
}