body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-main {
    max-width: 1200px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #111;
    border-bottom: 1px solid #222;
    padding: 8px 0;
}

.page-content {
    padding-top: 70px;
}

.navbar-brand {
    font-weight: 700;
}

.nav-link {
    color: #cfcfcf !important;
    font-size: 14px;
}

.nav-link.active {
    color: #fff !important;
}

.search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 14px;
}

.search-wrap svg {
    flex-shrink: 0;
}

.search-wrap input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
    font-size: 14px;
}

.league-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.league-btn {
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 8px;
    background: #111115;
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #1f1f25;
}

.league-btn:hover {
    background: #222;
    color: #fff;
    border-color: #333;
}

.league-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    font-weight: 600;
}

.events {
    margin-left: auto;
    font-size: 13px;
    color: #aaa;
}

.match-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
}

.match-card:hover {
    background-color: #222;

}

.league-name {
    width: 160px;
    font-size: 14px;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.teams {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.team {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.team img {
    width: 26px;
    height: 26px;
}

.vs {
    font-size: 13px;
}

.time {
    width: 120px;
    text-align: right;
    font-size: 13px;
    color: #ccc;
}

.sidebar {
    padding-left: 20px;
}

.ad-box {
    background: #111115;
    border: 1px solid #1f1f25;
    border-radius: 12px;
    padding: 10px;
}

.ad-box img {
    width: 100%;
    border-radius: 10px;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    color: #aaa;
    font-size: 14px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #333;
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 12px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 14px;
    color: #aaa;
}