body {
    background: #ffffff;
    color: #000000;
    font-family: Arial, sans-serif;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
}

.match-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.match-card {
    display: block;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border: 2px solid #cccccc;
    border-radius: 10px;
    overflow: hidden;
}

.match-card:hover {
    border: 2px solid #999999;
}

.match-top {
    position: relative;
    padding: 15px;
    background: #f5f5f5;
}

.league {
    font-size: 16px;
    font-weight: normal;
}

.time {
    position: absolute;
    right: 15px;
    top: 15px;
    background: #d9534f;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.teams {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team {
    width: 35%;
    text-align: center;
}

.team img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: transparent;
    padding: 5px;
    border-radius: 8px;
}

.team-name {
    margin-top: 8px;
    font-weight: bold;
    font-size: 14px;
}

.middle {
    width: 30%;
    text-align: center;
}

.vs {
    font-size: 42px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .match-grid {
        grid-template-columns: 1fr;
    }

    .team img {
        width: 55px;
        height: 55px;
    }

    .vs {
        font-size: 28px;
    }

    .team-name {
        font-size: 14px;
    }
}
