body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

header {
    background-color: #000;
    padding: 10px 20px;
    border-bottom: 2px solid #0f0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0f0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 18px;
}

main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.description-section {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.description-section h2 {
    color: #0f0;
    font-size: 28px;
    margin-top: 0;
}

.description-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.description-section strong {
    color: #0f0;
}

.games-section h2 {
    color: #0f0;
    font-size: 28px;
    margin-bottom: 20px;
}

.search-bar {
    display: flex;
    margin-bottom: 30px;
}

.search-bar input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #0f0;
    border-radius: 5px 0 0 5px;
    background-color: #3a3a3a;
    color: #e0e0e0;
    font-size: 16px;
}

.search-bar button {
    background-color: #0f0;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 18px;
}

.games-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.game-card {
    background-color: #2a2a2a;
    border: 1px solid #0f0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
}

.game-card h3 {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 14px;
    color: #b0b0b0;
}

.game-card .time {
    font-weight: bold;
    color: #0f0;
    margin-bottom: 10px;
}

.game-card button {
    background-color: #0f0;
    color: #1a1a1a;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

footer {
    background-color: #000;
    color: #e0e0e0;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}



.game-card .time.live {
    color: #ff4444;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.game-card button:disabled {
    background-color: #666;
    color: #999;
    cursor: not-allowed;
}

.modal {
    display: block;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    background-color: #2a2a2a;
    border: 2px solid #0f0;
    border-radius: 8px;
}

.modal-content iframe {
    width: 100%;
    height: calc(100% - 40px);
    border-radius: 0 0 8px 8px;
}

.close {
    color: #0f0;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 15px;
    cursor: pointer;
}

.close:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .games-list {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        height: 70%;
        margin: 10% auto;
    }
    
    nav {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul {
        justify-content: center;
    }
}



.channels-section {
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
}

.channels-section h2 {
    color: #0f0;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.channels-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.channel-card {
    background-color: #3a3a3a;
    border: 1px solid #0f0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.channel-card h3 {
    color: #e0e0e0;
    font-size: 22px;
    margin-bottom: 10px;
}

.channel-card p {
    color: #b0b0b0;
    font-size: 15px;
    flex-grow: 1;
}

.channel-card .watch-channel-btn {
    background-color: #0f0;
    color: #1a1a1a;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    text-decoration: none;
    display: inline-block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}



.championships-section {
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
}

.championships-section h2 {
    color: #0f0;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.championships-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.championship-card {
    background-color: #3a3a3a;
    border: 1px solid #0f0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.championship-card h3 {
    color: #e0e0e0;
    font-size: 22px;
    margin-bottom: 10px;
}

.championship-card p {
    color: #b0b0b0;
    font-size: 15px;
    flex-grow: 1;
}

.championship-card .view-championship-btn {
    background-color: #0f0;
    color: #1a1a1a;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    text-decoration: none;
    display: inline-block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}



.teams-section {
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
}

.teams-section h2 {
    color: #0f0;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.teams-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.team-card {
    background-color: #3a3a3a;
    border: 1px solid #0f0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-card h3 {
    color: #e0e0e0;
    font-size: 22px;
    margin-bottom: 10px;
}

.team-card p {
    color: #b0b0b0;
    font-size: 15px;
    flex-grow: 1;
}

.team-card .view-team-btn {
    background-color: #0f0;
    color: #1a1a1a;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    text-decoration: none;
    display: inline-block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

