body {
    font-family: Arial, sans-serif;
    background: #0b1220;
    color: #eee;
    margin: 0;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.match-header {
    text-align: center;
    margin-bottom: 30px;
}

.flag {
    width: 40px;
}

.teams {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.team img {
    width: 80px;
}

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

.card {
    background: #131b2e;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.card h3 {
    margin-top: 0;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.highlight {
    background: #1e2f55;
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td, th {
    padding: 8px;
    border-bottom: 1px solid #333;
    text-align: center;
}
