/* ✅ Global Body Style */
body {
    background: #f5f6fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* ✅ Top Bar (Hamburger + Logo + Login/Register) */
.top-bar {
    background: #0b1f3a;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.top-bar .btn-link {
    color: white;
    font-weight: bold;
    font-size: 26px;
    text-decoration: none;
    margin-right: 8px;
}

.top-bar .btn-link:hover {
    color: #ffc107;
}

/* ✅ Logo Styling */
.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: #ffc107 !important;
    margin: 0;
    padding: 0;
}

/* ✅ Login/Register Buttons */
.top-bar .btn {
    font-size: 14px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
}

/* ✅ Scrolling Marquee */
.marquee-bar {
    background: #08264d;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 4px 0;
}

/* ✅ Sports | Live | Upcoming Bar */
.nav-tabs-custom {
    background: #0e2f59;
    padding: 5px 0;
    text-align: center;
}

.nav-tabs-custom a {
    display: inline-block;
    margin: 0 10px;
    color: #ddd;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 20px;
    transition: 0.3s;
}

.nav-tabs-custom a:hover {
    background: #1b4c8a;
    color: #fff;
}

.nav-tabs-custom a.active {
    background: #ffc107;
    color: #000;
}

/* ✅ Match Card Design */
.match-card {
    background: #1e2a47;
    color: #fff;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.match-card h5 {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
}

/* ✅ Odds Button (Bet Option) */
.bet-option {
    background: #f1f1f1;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    margin: 4px 0;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

.bet-option:hover {
    background: #ffc107;
    color: #000;
}

/* ✅ Accordion Style (Live Matches List) */
.accordion-button {
    background: #0e2f59 !important;
    color: #fff !important;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: #1a3c6e !important;
    color: #fff;
}

.accordion-body {
    background: #f8f9fa;
}

/* ✅ Sidebar (Offcanvas) */
.offcanvas-custom {
    width: 250px;
    background-color: #0b1f3a;
    color: white;
}

.offcanvas-custom a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.offcanvas-custom a:hover {
    background-color: #0d6efd;
}

/* ✅ Footer */
footer {
    background: #0b1f3a;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .top-bar {
        height: 50px;
        padding: 0 10px;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .bet-option {
        font-size: 13px;
        padding: 6px;
    }

    .nav-tabs-custom a {
        font-size: 13px;
        padding: 5px 10px;
        margin: 0 5px;
    }
}
