/* ═══════════════════════════════════════════
   Match Show — Premium UI
   ═══════════════════════════════════════════ */

/* Hero */
.match-hero {
    position: relative;
    padding: 2rem 0 3rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.match-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(27, 79, 155, 0.35), transparent),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(0, 210, 255, 0.12), transparent),
        radial-gradient(ellipse 40% 50% at 80% 80%, rgba(211, 47, 47, 0.12), transparent),
        var(--bg-dark);
    z-index: 0;
}

.match-hero-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 210, 255, 0.015) 2px,
        rgba(0, 210, 255, 0.015) 4px
    );
    animation: scanMove 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

.match-hero-inner {
    position: relative;
    z-index: 2;
}

.match-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.match-back:hover { color: var(--accent-cyan); }

.match-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.match-stage, .match-group-pill {
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(74, 144, 226, 0.15);
    border: 1px solid rgba(74, 144, 226, 0.3);
    color: var(--primary-light);
}

.match-status-pill {
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.match-status-pill.status-live {
    background: rgba(211, 47, 47, 0.2);
    border: 1px solid rgba(211, 47, 47, 0.5);
    color: #ff6b6b;
    animation: liveGlow 2s ease-in-out infinite;
}

.match-status-pill.status-finished {
    background: rgba(139, 163, 199, 0.15);
    border: 1px solid rgba(139, 163, 199, 0.3);
    color: var(--text-muted);
}

.match-status-pill.status-upcoming {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--accent-cyan);
}

.live-dot {
    width: 8px; height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes liveGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(211,47,47,0.3); }
    50% { box-shadow: 0 0 20px rgba(211,47,47,0.6); }
}

/* Scoreboard */
.scoreboard {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.scoreboard-team {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.team-crest-wrap {
    position: relative;
    width: 90px;
    height: 64px;
}

.team-crest {
    width: 90px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.crest-glow {
    position: absolute;
    inset: -8px;
    border-radius: 12px;
    filter: blur(12px);
    opacity: 0.5;
    z-index: 1;
}

.home-glow { background: var(--primary-light); }
.away-glow { background: var(--jordan-red); }

.team-title {
    font-size: clamp(1rem, 3vw, 1.35rem);
    font-weight: 800;
}

.team-formation {
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 210, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 210, 255, 0.25);
}

.scoreboard-center {
    text-align: center;
}

.score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
}

.score-digit {
    font-family: var(--font-en);
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(0, 210, 255, 0.3);
    transition: all 0.3s;
}

.score-digit.winner {
    color: var(--accent-cyan);
    text-shadow: 0 0 50px rgba(0, 210, 255, 0.5);
}

.score-sep {
    font-family: var(--font-en);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
    color: var(--text-muted);
    opacity: 0.5;
}

.score-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.live-pulse {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(211, 47, 47, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff6b6b;
    animation: pulse 2s infinite;
}

.match-hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.hero-info-chip {
    padding: 0.4rem 0.9rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    backdrop-filter: blur(8px);
}

.source-chip.source-hybrid {
    border-color: rgba(76, 175, 80, 0.4);
    color: #81c784;
}

/* Page */
.match-premium-page {
    padding-bottom: 4rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Scorers Spotlight */
.scorers-spotlight {
    margin-bottom: 2rem;
}

.scorers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.scorer-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    min-width: 220px;
    flex: 1;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.scorer-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 4px;
    height: 100%;
}

.scorer-home::before { background: var(--primary-light); }
.scorer-away::before { background: var(--jordan-red); }

.scorer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.scorer-minute {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    min-width: 40px;
}

.scorer-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 210, 255, 0.4);
    box-shadow: 0 0 16px rgba(0, 210, 255, 0.2);
}

.scorer-photo-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 210, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.scorer-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

.scorer-team {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Summary Row */
.match-summary-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s;
}

.summary-card:hover {
    border-color: var(--accent-cyan);
}

.summary-icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }

.summary-value {
    display: block;
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.summary-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    display: block;
}

/* Tabs */
.match-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.35rem;
    background: rgba(0,0,0,0.25);
    border-radius: 50px;
    border: 1px solid var(--border-glow);
    overflow-x: auto;
}

.match-tab {
    flex: 1;
    min-width: max-content;
    padding: 0.65rem 1.25rem;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-ar);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.match-tab:hover { color: var(--accent-cyan); }

.match-tab.active {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: white;
    box-shadow: 0 4px 16px rgba(27, 79, 155, 0.4);
}

.match-tab-panel {
    display: none;
    animation: fadeUp 0.4s ease;
}

.match-tab-panel.active { display: block; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Timeline Pro */
.timeline-pro {
    position: relative;
    padding: 1rem 0;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-axis {
    position: absolute;
    right: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--primary-dark));
    opacity: 0.3;
}

.timeline-node {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    padding-right: 0;
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    overflow: visible;
}

.timeline-marker-fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: linear-gradient(145deg, rgba(27, 79, 155, 0.25), rgba(0, 210, 255, 0.08));
}

.event-fallback-goal { background: linear-gradient(145deg, rgba(0, 210, 255, 0.2), rgba(27, 79, 155, 0.15)); }
.event-fallback-var { background: linear-gradient(145deg, rgba(255, 193, 7, 0.2), rgba(255, 87, 34, 0.1)); }
.event-fallback-yellow { background: linear-gradient(145deg, rgba(255, 235, 59, 0.25), rgba(255, 152, 0, 0.1)); }
.event-fallback-red { background: linear-gradient(145deg, rgba(244, 67, 54, 0.25), rgba(183, 28, 28, 0.15)); }

.timeline-event-badge {
    position: absolute;
    bottom: -4px;
    left: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--bg-card);
    padding: 2px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.timeline-type-pill {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.type-goal { background: rgba(0, 210, 255, 0.15); color: var(--accent-cyan); border: 1px solid rgba(0, 210, 255, 0.35); }
.type-yellow { background: rgba(255, 235, 59, 0.15); color: #ffd54f; border: 1px solid rgba(255, 235, 59, 0.35); }
.type-red { background: rgba(244, 67, 54, 0.15); color: #ff6b6b; border: 1px solid rgba(244, 67, 54, 0.35); }
.type-var { background: rgba(255, 152, 0, 0.15); color: #ffb74d; border: 1px solid rgba(255, 152, 0, 0.35); }
.type-substitution { background: rgba(76, 175, 80, 0.15); color: #81c784; border: 1px solid rgba(76, 175, 80, 0.35); }
.type-kickoff, .type-halftime, .type-fulltime, .type-other {
    background: rgba(139, 163, 199, 0.12);
    color: var(--text-muted);
    border: 1px solid rgba(139, 163, 199, 0.25);
}

.timeline-player-name {
    font-weight: 800;
    font-size: 1rem;
    margin: 0 0 0.25rem;
    color: var(--text-primary);
}

.timeline-detail {
    font-size: 0.82rem;
    color: var(--accent-cyan);
    margin: 0.35rem 0 0;
    opacity: 0.9;
}

.timeline-card-footer {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.65rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.timeline-footer-flag {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.timeline-node.event-new {
    animation: eventPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-node.event-new .timeline-card {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 24px rgba(0, 210, 255, 0.2);
}

@keyframes eventPop {
    from { opacity: 0; transform: translateX(16px) scale(0.96); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

#match-live-minute {
    font-family: var(--font-en);
    font-weight: 900;
    min-width: 2ch;
    display: inline-block;
}

#match-live-badge-wrap {
    min-height: 1.75rem;
}

.is-hidden {
    display: none !important;
}

.timeline-sub-rows {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.35rem;
}

.timeline-sub-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-sub-row.sub-in {
    border-right: 3px solid #4caf50;
}

.timeline-sub-row.sub-out {
    border-right: 3px solid #ef5350;
    opacity: 0.9;
}

.sub-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sub-in .sub-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #81c784;
}

.sub-out .sub-badge {
    background: rgba(239, 83, 80, 0.2);
    color: #ff8a80;
}

.sub-player-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.sub-player-name {
    font-weight: 800;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.sub-player-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.scorer-team-logo {
    object-fit: contain;
    padding: 6px;
    background: rgba(255, 255, 255, 0.06);
}

.event-type-goal .timeline-marker {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.timeline-player-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.timeline-card {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s;
}

.timeline-card:hover { border-color: var(--accent-cyan); }

.timeline-home .timeline-card { border-right: 3px solid var(--primary-light); }
.timeline-away .timeline-card { border-right: 3px solid var(--jordan-red); }

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.timeline-minute {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent-cyan);
}

.timeline-label { font-weight: 700; font-size: 0.85rem; }

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.timeline-team-tag {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 50px;
    color: var(--accent-cyan);
}

/* Lineups Premium */
.lineups-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.lineup-premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
}

.lineup-home { border-top: 3px solid var(--primary-light); }
.lineup-away { border-top: 3px solid var(--jordan-red); }

.lineup-premium-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lineup-premium-flag {
    width: 56px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.lineup-premium-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
}

.lineup-premium-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.formation-badge {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.2rem 0.55rem;
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 50px;
    color: var(--accent-cyan);
}

.players-section h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.players-section.subs { margin-top: 1.25rem; }

.player-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.6rem;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    position: relative;
}

.player-card:hover {
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(0, 210, 255, 0.05);
}

.player-card.is-scorer {
    border-color: rgba(0, 210, 255, 0.5);
    background: rgba(0, 210, 255, 0.08);
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.15);
}

.player-card-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.player-card-photo.ph {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 210, 255, 0.15);
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--accent-cyan);
}

.player-card-num {
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.player-card-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.player-card-pos {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.scorer-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    font-size: 0.75rem;
}

.subs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.sub-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0,0,0,0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    border: 1px solid rgba(255,255,255,0.06);
}

.sub-num {
    font-family: var(--font-en);
    font-weight: 800;
    color: var(--accent-cyan);
    font-size: 0.7rem;
}

.sub-photo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

/* Football Pitch */
.pitch-dual-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pitch-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    overflow: hidden;
}

.pitch-panel-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.3);
    font-weight: 700;
    font-size: 0.9rem;
}

.pitch-flag {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    object-fit: cover;
}

.football-pitch {
    position: relative;
    aspect-ratio: 2/3;
    max-height: 480px;
    background: linear-gradient(180deg,
        rgba(34, 100, 50, 0.9) 0%,
        rgba(28, 85, 42, 0.95) 50%,
        rgba(34, 100, 50, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 0.75rem;
    overflow: hidden;
}

.pitch-lines {
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    pointer-events: none;
}

.pitch-lines::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,0.25);
}

.pitch-center-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    pointer-events: none;
}

.pitch-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.pitch-player {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: default;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pitch-home .pitch-player { border-color: var(--primary-light); }
.pitch-away .pitch-player { border-color: #ff8a80; }

.pitch-player:hover {
    transform: scale(1.15);
    box-shadow: 0 0 16px rgba(255,255,255,0.3);
    z-index: 10;
}

.pitch-player img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.pitch-player-num {
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.pitch-player:has(img) .pitch-player-num { display: none; }

/* Stats Premium */
.stats-premium {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.stats-premium-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stats-team-flag {
    width: 40px;
    height: 28px;
    border-radius: 4px;
    object-fit: cover;
}

.stat-bar-group { margin-bottom: 1.25rem; }

.stat-bar-values {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.stat-val-home {
    text-align: right;
    font-family: var(--font-en);
    font-weight: 800;
    color: var(--primary-light);
}

.stat-val-away {
    text-align: left;
    font-family: var(--font-en);
    font-weight: 800;
    color: var(--jordan-red);
}

.stat-bar-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-bar-track {
    display: flex;
    height: 8px;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    flex-direction: row-reverse;
}

.stat-bar-home {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    border-radius: 0 50px 50px 0;
    transition: width 0.8s ease;
}

.stat-bar-away {
    background: linear-gradient(90deg, #b71c1c, var(--jordan-red));
    border-radius: 50px 0 0 50px;
    transition: width 0.8s ease;
}

/* Empty */
.empty-state-premium {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px dashed var(--border-glow);
    border-radius: var(--radius);
}

.empty-icon { font-size: 3rem; margin-bottom: 1rem; }

.empty-state-premium h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.empty-state-premium p { color: var(--text-muted); }

/* Responsive */
@media (max-width: 768px) {
    .scoreboard {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .scoreboard-center { order: -1; }

    .match-summary-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .lineups-premium-grid,
    .pitch-dual-view {
        grid-template-columns: 1fr;
    }

    .match-tabs { border-radius: var(--radius-sm); }

    .match-tab {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .scorer-card { min-width: 100%; }
}
