.wc2026-container {
    width: 100%;
    margin: 20px 0;
    font-family: sans-serif;
}

.wc2026-teams-grid, .wc2026-stadiums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.wc2026-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.team-flag {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.wc2026-group-table {
    margin-bottom: 30px;
    overflow-x: auto;
}

.wc2026-group-table table {
    width: 100%;
    border-collapse: collapse;
}

.wc2026-group-table th, .wc2026-group-table td {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
}

.wc2026-group-table th {
    background: #f4f4f4;
}

.match-card {
    margin-bottom: 15px;
    text-align: left;
}

.match-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8em;
    color: #666;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.match-teams {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
}

.match-footer {
    margin-top: 10px;
    font-size: 0.8em;
    color: #888;
}

@media (max-width: 600px) {
    .wc2026-teams-grid, .wc2026-stadiums-grid {
        grid-template-columns: 1fr 1fr;
    }
}
