.wc2026-box,
.wc2026-hub {
    max-width: 1050px;
    margin: 25px auto;
    font-family: Arial, sans-serif;
}

.wc2026-hero {
    background: linear-gradient(135deg, #0f2b5c, #174a9c);
    color: #fff;
    padding: 34px;
    border-radius: 24px;
    margin-bottom: 18px;
    box-shadow: 0 16px 40px rgba(15, 43, 92, 0.25);
}

.wc2026-kicker {
    display: inline-block;
    margin-bottom: 8px;
    opacity: 0.85;
    font-size: 14px;
}

.wc2026-hero h1 {
    margin: 0 0 8px;
    font-size: 34px;
}

.wc2026-hero p {
    margin: 0;
    opacity: 0.9;
}

.wc2026-tabs input {
    display: none;
}

.wc2026-tab-labels {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    background: #f5f7fb;
    padding: 8px;
    border-radius: 18px;
}

.wc2026-tab-labels label {
    flex: 1;
    text-align: center;
    padding: 12px 14px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    color: #42526b;
}

#wc2026_tab_home:checked ~ .wc2026-tab-labels label[for="wc2026_tab_home"],
#wc2026_tab_groups:checked ~ .wc2026-tab-labels label[for="wc2026_tab_groups"],
#wc2026_tab_matches:checked ~ .wc2026-tab-labels label[for="wc2026_tab_matches"] {
    background: #ffffff;
    color: #174a9c;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.wc2026-tab-content {
    display: none;
}

#wc2026_tab_home:checked ~ .wc2026-home-content,
#wc2026_tab_groups:checked ~ .wc2026-groups-content,
#wc2026_tab_matches:checked ~ .wc2026-matches-content {
    display: block;
}

.wc2026-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.wc2026-stat-card,
.wc2026-panel,
.wc2026-group-card,
.wc2026-match-card {
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.wc2026-stat-card {
    padding: 18px;
    text-align: center;
}

.wc2026-stat-card strong {
    display: block;
    font-size: 30px;
    color: #174a9c;
}

.wc2026-stat-card span {
    color: #607086;
}

.wc2026-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.wc2026-panel {
    padding: 18px;
}

.wc2026-panel h3,
.wc2026-group-card h3 {
    margin-top: 0;
}

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

.wc2026-group-card {
    padding: 18px;
}

.wc2026-group-team {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-top: 1px solid #f0f2f5;
}

.wc2026-group-team span {
    font-size: 24px;
}

.wc2026-matches {
    display: grid;
    gap: 14px;
}

.wc2026-match-card {
    padding: 18px;
}

.wc2026-match-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #607086;
    font-size: 13px;
    margin-bottom: 12px;
}

.wc2026-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 19px;
    font-weight: 700;
}

.wc2026-team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.wc2026-team:last-child {
    justify-content: flex-end;
    text-align: right;
}

.wc2026-flag {
    font-size: 24px;
}

.wc2026-vs {
    color: #777;
    font-size: 13px;
}

.wc2026-info {
    margin-top: 10px;
    color: #555;
}

.wc2026-stadium {
    margin-top: 6px;
    color: #777;
}

.wc2026-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: #f1f1f1;
}

.wc2026-status-live {
    background: #ffe1e1;
    color: #b00020;
}

.wc2026-status-finished {
    background: #e7f7ed;
    color: #16753b;
}

.wc2026-status-scheduled {
    background: #eef3ff;
    color: #2353b5;
}

@media (max-width: 800px) {
    .wc2026-stats-grid,
    .wc2026-home-grid,
    .wc2026-groups-grid {
        grid-template-columns: 1fr;
    }

    .wc2026-hero {
        padding: 24px;
    }

    .wc2026-hero h1 {
        font-size: 27px;
    }

    .wc2026-tab-labels {
        flex-direction: column;
    }
}
.wc2026-score {
    min-width: 70px;
    text-align: center;
    padding: 7px 12px;
    border-radius: 12px;
    background: #0f2b5c;
    color: #ffffff;
    font-weight: 800;
    font-size: 17px;
}