.announcement-bar {
    background: var(--bs-info);
    color: var(--bs-white);
}

.hero-section {
    background-position: center;
    background-size: cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 0rem;
}

.hero-nav {
    border-radius: 1rem;
}

.hero-copy {
    max-width: 780px;
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 480px;
    }

    .hero-copy h1 {
        font-size: 2rem;
    }
}

.activity-nav {
    display: flex;
    gap: 3rem;
    border-bottom: 1px solid #dee2e6;
    padding: 0;
    list-style: none;
}

.activity-nav .nav-link {
    background: transparent !important;
    border: none !important;
    color: #6c757d !important;
    font-weight: 600;
    padding: 1rem 0;
    font-size: 1.1rem;
    position: relative;
    border-radius: 0;
    transition: color 0.2s ease;
}

.activity-nav .nav-link.active {
    color: #212529 !important; 
}

.activity-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px; 
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0d6efd;
    border-radius: 2px 2px 0 0;
}

.activity-nav .nav-link:hover {
    color: #212529 !important;
}

.leagues-stats-box {
    min-width: 180px;
    background-color: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    transition: transform 0.2s ease;
}

.leagues-stats-box:hover {
    transform: translateY(-2px);
}

