/* WC2026 Results — Frontend */

.wc2026r-results-list {
    max-width: 600px;
    margin: 0 auto;
}

/* Match */
.wc2026r-match {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}
.wc2026r-match:last-child { border-bottom: none; }
.wc2026r-match:hover { background: #fafbfc; }

.wc2026r-match-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wc2026r-match-date {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}
.wc2026r-match-round {
    font-size: 9px;
    color: #fff;
    background: #e74c3c;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.wc2026r-match-round.group {
    background: #3b82f6;
}

.wc2026r-match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.wc2026r-team {
    flex: 1;
    text-align: center;
}
.wc2026r-team-name {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wc2026r-team-name.winner {
    color: #16a34a;
}
.wc2026r-team-name.loser {
    color: #dc2626;
    opacity: 0.7;
}

.wc2026r-score {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 60px;
    justify-content: center;
}
.wc2026r-score-num {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    min-width: 20px;
    text-align: center;
}
.wc2026r-score-num.high {
    color: #e74c3c;
}
.wc2026r-score-dash {
    font-size: 16px;
    color: #cbd5e1;
    font-weight: 600;
}

.wc2026r-pens {
    font-size: 10px;
    color: #e74c3c;
    font-weight: 700;
    text-align: center;
}

.wc2026r-match-venue {
    font-size: 10px;
    color: #94a3b8;
    text-align: center;
}

.wc2026r-match-live {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #e74c3c;
    font-weight: 700;
}

.wc2026r-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e74c3c;
    animation: wc2026r-pulse 1.5s infinite;
}
@keyframes wc2026r-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Groups */
.wc2026r-groups-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
}
.wc2026r-group-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
}
.wc2026r-group-name {
    font-size: 11px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.wc2026r-group-team {
    font-size: 11px;
    color: #334155;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.wc2026r-group-team::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
}

/* Next Match */
.wc2026r-next-match {
    max-width: 450px;
    margin: 10px auto;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: #fff;
}
.wc2026r-next-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.5);
    margin-bottom: 12px;
}
.wc2026r-next-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}
.wc2026r-next-team {
    font-size: 16px;
    font-weight: 700;
}
.wc2026r-next-vs {
    font-size: 14px;
    font-weight: 800;
    color: #e74c3c;
    background: rgba(231,76,60,.15);
    padding: 4px 12px;
    border-radius: 8px;
}
.wc2026r-next-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,.7);
    margin-bottom: 8px;
}
.wc2026r-next-group {
    font-size: 10px;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Empty */
.wc2026r-empty {
    text-align: center;
    padding: 24px;
    color: #94a3b8;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 600px) {
    .wc2026r-groups-grid {
        grid-template-columns: 1fr;
    }
    .wc2026r-team-name {
        font-size: 11px;
    }
    .wc2026r-score-num {
        font-size: 16px;
    }
    .wc2026r-next-teams {
        flex-direction: column;
        gap: 8px;
    }
}
