body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* 🔝 TOP BAR */
.topbar {
    background: #062c33;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    font-weight: bold;
    font-size: 20px;
}

.main-links span {
    margin: 0 15px;
    cursor: pointer;
    padding-bottom: 5px;
}

.main-links .active {
    border-bottom: 3px solid #ff2e63;
}

.actions button {
    margin-left: 10px;
    background: #0d3b44;
    border: none;
    color: white;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.login {
    background: #123f47;
}

/* 📊 SPORTS MENU */
.sports-menu {
    background: #f2f2f2;
    border-bottom: 1px solid #ddd;
}

.sports-menu ul {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 10px 20px;
    margin: 0;
    align-items: center;
}

.sports-menu li {
    cursor: pointer;
    color: #555;
}

.sports-menu .active {
    color: #ff2e63;
    border-bottom: 2px solid #ff2e63;
    padding-bottom: 5px;
}