/* World Cup 2026 — modern responsive UI (font loaded via css/mycss.css) */
.world-cup-page,
.world-cup-page *:not(svg):not(path) {
    font-family: 'Bahij-Janna-Bold', Bahij-Janna-Bold, 'Nunito', sans-serif !important;
}

.world-cup-page,
.wc-watch-page,
.wc-live-page,
.wc-highlight-page {
    --wc-green: #00d47e;
    --wc-green-dim: rgba(0, 212, 126, 0.15);
    --wc-gold: #f5c518;
    --wc-red: #ff4757;
    --wc-bg: #070b14;
    --wc-surface: #111827;
    --wc-surface-2: #1a2332;
    --wc-border: rgba(255, 255, 255, 0.08);
    --wc-text: #f1f5f9;
    --wc-muted: #94a3b8;
    --wc-radius: 20px;
    --wc-radius-sm: 14px;
    --wc-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 212, 126, 0.18), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(245, 197, 24, 0.08), transparent),
        var(--wc-bg);
    min-height: 100vh;
    padding: 7.5rem 0 4rem;
    color: var(--wc-text);
}

.world-cup-page .container {
    max-width: 920px;
}

/* Header */
.wc-hero {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.wc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--wc-green-dim);
    border: 1px solid rgba(0, 212, 126, 0.35);
    color: var(--wc-green);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.wc-hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--wc-green);
    border-radius: 50%;
    animation: wc-dot 2s infinite;
}

@keyframes wc-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.wc-hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.4rem;
    background: linear-gradient(135deg, #fff 30%, var(--wc-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wc-hero-sub {
    color: var(--wc-muted);
    font-size: 0.9rem;
    margin: 0;
}

.wc-sync-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    color: var(--wc-muted);
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
}

.wc-sync-pill svg {
    width: 13px;
    height: 13px;
    opacity: 0.7;
}

/* Live section at top */
.wc-live-section {
    margin-bottom: 1.75rem;
}

.wc-live-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-red);
    margin-bottom: 0.85rem;
}

.wc-live-dot-lg {
    width: 10px;
    height: 10px;
    background: var(--wc-red);
    border-radius: 50%;
    animation: wc-pulse 1.2s infinite;
}

.wc-featured-live {
    margin-bottom: 0.75rem;
    border-color: rgba(255, 71, 87, 0.45);
    box-shadow: 0 0 40px rgba(255, 71, 87, 0.12), var(--wc-shadow);
}

.wc-featured-live:last-child {
    margin-bottom: 0;
}

.wc-score-live {
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 212, 126, 0.4);
}

/* Featured match */
.wc-featured {
    position: relative;
    border-radius: var(--wc-radius);
    overflow: hidden;
    margin-bottom: 1.75rem;
    box-shadow: var(--wc-shadow);
    border: 1px solid var(--wc-border);
}

.wc-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(0, 212, 126, 0.12) 0%, transparent 50%),
        linear-gradient(220deg, rgba(245, 197, 24, 0.07) 0%, transparent 40%),
        linear-gradient(180deg, #152035 0%, #0d1520 100%);
    z-index: 0;
}

.wc-featured-inner {
    position: relative;
    z-index: 1;
    padding: 1.75rem 1.5rem 1.5rem;
}

.wc-featured-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin-bottom: 1.25rem;
}

.wc-featured-top .wc-status-chip {
    margin-bottom: 0;
}

.wc-featured-top .wc-countdown {
    flex-shrink: 0;
}

.wc-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.wc-status-chip.live {
    background: rgba(255, 71, 87, 0.2);
    color: var(--wc-red);
    border: 1px solid rgba(255, 71, 87, 0.4);
}

.wc-status-chip.live .wc-live-dot {
    width: 8px;
    height: 8px;
    background: var(--wc-red);
    border-radius: 50%;
    animation: wc-pulse 1.2s infinite;
}

@keyframes wc-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(255, 71, 87, 0); }
}

.wc-status-chip.next {
    background: rgba(0, 212, 126, 0.15);
    color: var(--wc-green);
    border: 1px solid rgba(0, 212, 126, 0.35);
}

.wc-matchup {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
}

.wc-team {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.6rem 0.75rem;
    text-align: start;
    min-width: 0;
}

.wc-team:last-child {
    grid-template-columns: 1fr auto;
    text-align: end;
}

.wc-team:last-child .wc-team-flag-wrap {
    grid-column: 2;
    grid-row: 1;
}

.wc-team:last-child .wc-team-name {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.wc-team-flag-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--wc-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: transform 0.2s;
}

.wc-team-flag-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wc-team-name {
    font-weight: 700;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    line-height: 1.3;
    min-width: 0;
}

.wc-center {
    text-align: center;
    min-width: 110px;
}

.wc-score-display {
    font-size: clamp(2rem, 6vw, 2.75rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.wc-vs-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--wc-muted);
    margin-bottom: 0;
}

.wc-countdown {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
}

.wc-countdown-unit {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--wc-border);
    border-radius: 10px;
    padding: 0.35rem 0.5rem;
    min-width: 44px;
}

.wc-countdown-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.wc-countdown-lbl {
    display: block;
    font-size: 0.55rem;
    color: var(--wc-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wc-featured-meta {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--wc-border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--wc-muted);
}

.wc-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.wc-meta-item svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* Filters — single row */
.wc-filters {
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    border-radius: 999px;
    padding: 0.5rem 0.6rem 0.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.wc-filters-row {
    display: flex;
    align-items: flex-end;
    gap: 0.65rem;
    flex-wrap: nowrap;
}

.wc-field {
    min-width: 0;
}

.wc-field-grow {
    flex: 1 1 0;
}

.wc-field label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wc-muted);
    margin-bottom: 0.25rem;
    padding-left: 0.15rem;
}

.wc-select,
.wc-field select {
    width: 100%;
    background: var(--wc-surface-2);
    border: 1px solid var(--wc-border);
    color: var(--wc-text);
    border-radius: 999px;
    padding: 0.55rem 2rem 0.55rem 0.9rem;
    font-size: 0.82rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wc-select:focus,
.wc-field select:focus {
    outline: none;
    border-color: var(--wc-green);
    box-shadow: 0 0 0 3px rgba(0, 212, 126, 0.15);
}

/* Team select (Select2) */
.wc-field-team {
    position: relative;
}

.wc-field-team .select2-container {
    width: 100% !important;
}

.world-cup-page .select2-container--default .select2-selection--single {
    background: var(--wc-surface-2);
    border: 1px solid var(--wc-border);
    border-radius: 999px;
    height: 2.35rem;
    min-height: 2.35rem;
    display: flex;
    align-items: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.world-cup-page .select2-container--default.select2-container--open .select2-selection--single,
.world-cup-page .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--wc-green);
    box-shadow: 0 0 0 3px rgba(0, 212, 126, 0.15);
}

.world-cup-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--wc-text);
    line-height: normal;
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 0.9rem;
    padding-right: 2rem;
    font-size: 0.82rem;
}

.world-cup-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 2.35rem;
    right: 0.55rem;
}

.world-cup-page .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--wc-muted) transparent transparent transparent;
}

.world-cup-page .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--wc-muted) transparent;
}

.world-cup-page .select2-container--default .select2-selection--single .select2-selection__clear {
    color: var(--wc-muted);
    margin-right: 1.5rem;
    font-size: 1.1rem;
}

.world-cup-page .select2-dropdown {
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-sm);
    box-shadow: var(--wc-shadow);
    overflow: hidden;
    z-index: 1060;
}

.world-cup-page .select2-container--default .select2-search--dropdown .select2-search__field {
    background: var(--wc-surface-2);
    border: 1px solid var(--wc-border);
    color: var(--wc-text);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
}

.world-cup-page .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none;
    border-color: var(--wc-green);
    box-shadow: 0 0 0 3px rgba(0, 212, 126, 0.12);
}

.world-cup-page .select2-container--default .select2-results__option {
    color: var(--wc-text);
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
}

.world-cup-page .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: rgba(0, 212, 126, 0.18);
    color: var(--wc-text);
}

.world-cup-page .select2-container--default .select2-results__option--selected {
    background: rgba(0, 212, 126, 0.28);
    color: #fff;
}

.world-cup-page .select2-results__option.loading-results,
.world-cup-page .select2-container--default .select2-results__option[aria-disabled=true] {
    color: var(--wc-muted);
}

.wc-team-option {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.wc-team-option-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--wc-border);
    background: var(--wc-surface-2);
}

.wc-team-option-flag-empty {
    display: inline-block;
    background: linear-gradient(135deg, var(--wc-surface-2), rgba(255, 255, 255, 0.08));
}

.wc-team-option-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.world-cup-page .select2-selection__rendered .wc-team-option-name {
    max-width: calc(100% - 28px);
}

.wc-btn {
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1.2;
    min-height: 2.35rem;
}

.wc-btn-icon svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.wc-btn:active {
    transform: scale(0.98);
}

.wc-btn-primary {
    background: linear-gradient(135deg, var(--wc-green), #00a862);
    color: #041510;
    box-shadow: 0 4px 16px rgba(0, 212, 126, 0.3);
}

.wc-btn-primary:hover {
    box-shadow: 0 6px 22px rgba(0, 212, 126, 0.45);
}

.wc-btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--wc-muted);
    border: 1px solid var(--wc-border);
}

.wc-btn-ghost:hover {
    color: var(--wc-text);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Match list */
.wc-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    padding: 0 0.25rem;
}

.wc-list-header h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--wc-text);
}

.wc-match-count {
    font-size: 0.78rem;
    color: var(--wc-muted);
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
}

.wc-match-card {
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-sm);
    padding: 1rem 1.1rem;
    margin-bottom: 0.65rem;
    transition: border-color 0.2s, transform 0.15s;
    position: relative;
    overflow: hidden;
}

.wc-match-card.has-highlight {
    cursor: pointer;
}

.wc-match-card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}

.wc-match-card.has-highlight:hover {
    border-color: rgba(255, 0, 0, 0.35);
    transform: translateY(-1px);
}

.wc-match-card.has-highlight:hover .wc-btn-youtube-lg {
    background: rgba(255, 0, 0, 0.28);
    color: #fff;
}

.wc-match-card:hover {
    border-color: rgba(0, 212, 126, 0.25);
    transform: translateY(-1px);
}

.wc-match-card.is-live {
    border-color: rgba(255, 71, 87, 0.35);
}

.wc-match-card.is-live::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--wc-red);
}

.wc-match-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.wc-match-date {
    font-size: 0.75rem;
    color: var(--wc-muted);
    font-weight: 500;
}

.wc-match-date strong {
    color: var(--wc-text);
    font-weight: 600;
}

.wc-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.wc-badge-live {
    background: rgba(255, 71, 87, 0.2);
    color: var(--wc-red);
}

.wc-badge-ft {
    background: rgba(148, 163, 184, 0.15);
    color: var(--wc-muted);
}

.wc-badge-group {
    background: rgba(245, 197, 24, 0.12);
    color: var(--wc-gold);
}

.wc-badge-scheduled {
    background: rgba(0, 212, 126, 0.1);
    color: var(--wc-green);
}

.wc-match-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 0.5rem;
}

.wc-match-side {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
    align-items: stretch;
}

.wc-match-side.home {
    align-items: stretch;
}

.wc-match-side.away {
    align-items: stretch;
}

.wc-match-team {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    width: 100%;
}

.wc-match-side.home .wc-match-team {
    justify-content: flex-start;
}

.wc-match-side.away .wc-match-team {
    justify-content: flex-end;
    flex-direction: row;
    text-align: right;
}

.wc-match-team.away span {
    text-align: right;
}

.wc-match-team img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.wc-match-team span {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.wc-match-score {
    font-size: 1.15rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    text-align: center;
    min-width: 56px;
    color: var(--wc-text);
    align-self: center;
    padding-top: 0.15rem;
}

.wc-match-score.muted {
    color: var(--wc-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Goal scorers */
.wc-side-scorers {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    margin-top: 0.15rem;
}

.wc-side-scorers.home {
    align-items: flex-start;
}

.wc-side-scorers.away {
    align-items: flex-end;
}

.wc-goals-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.12rem 0.55rem 0.12rem 0.4rem;
    border-radius: 999px;
    background: rgba(0, 212, 126, 0.08);
    border: 1px solid rgba(0, 212, 126, 0.22);
}

.wc-side-scorers.away .wc-goals-label {
    flex-direction: row-reverse;
    padding: 0.12rem 0.4rem 0.12rem 0.55rem;
}

.wc-goals-label-icon {
    display: flex;
    width: 14px;
    height: 14px;
    color: var(--wc-green);
    flex-shrink: 0;
}

.wc-goals-label-icon svg {
    width: 100%;
    height: 100%;
}

.wc-goals-label-text {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(0, 212, 126, 0.95);
}

.wc-goals-stack {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}

.wc-side-scorers.home .wc-goals-stack {
    align-items: flex-start;
}

.wc-side-scorers.away .wc-goals-stack {
    align-items: flex-end;
}

.wc-goal-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    max-width: 100%;
    padding: 0.15rem 0;
}

.wc-goal-chip:hover {
    transform: translateY(-1px);
}

.wc-side-scorers.away .wc-goal-chip {
    flex-direction: row-reverse;
}

.wc-goal-chip-minute {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--wc-green);
}

.wc-goal-chip-tick {
    font-size: 0.72rem;
    opacity: 0.85;
}

.wc-goal-chip-player {
    flex: 1;
    min-width: 0;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--wc-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-side-scorers.away .wc-goal-chip-player {
    text-align: right;
}

.wc-goal-chip-icon {
    display: none;
}

.wc-goal-chip.is-own-goal {
    color: rgba(255, 71, 87, 0.95);
}

.wc-goal-chip.is-own-goal .wc-goal-chip-minute {
    color: rgba(255, 71, 87, 0.95);
}

.wc-goal-chip.is-own-goal .wc-goal-chip-icon {
    display: none;
}

.wc-match-card.is-live .wc-goal-chip {
    animation: wc-goal-pop 0.45s ease;
}

.wc-match-card.is-live .wc-goal-chip-minute {
    color: var(--wc-red);
}

@keyframes wc-goal-pop {
    0% { opacity: 0; transform: scale(0.92) translateY(4px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Featured / live hero — slightly larger goal chips */
.wc-side-scorers-featured {
    max-width: 170px;
}

.wc-side-scorers-featured .wc-goals-label-text {
    font-size: 0.64rem;
}

.wc-side-scorers-featured .wc-goal-chip {
    padding: 0.15rem 0;
}

.wc-side-scorers-featured .wc-goal-chip-player {
    font-size: 0.72rem;
}

.wc-featured-live .wc-team {
    align-items: center;
}

.wc-featured-live .wc-side-scorers-featured.home {
    align-items: center;
}

.wc-featured-live .wc-side-scorers-featured.away {
    align-items: center;
}

.wc-featured-live .wc-side-scorers-featured.home .wc-goals-stack,
.wc-featured-live .wc-side-scorers-featured.away .wc-goals-stack {
    align-items: center;
}

.wc-bracket-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    align-self: center;
    white-space: nowrap;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.wc-bracket-action-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.wc-bracket-action-btn.live {
    background: rgba(0, 212, 126, 0.12);
    border: 1px solid rgba(0, 212, 126, 0.3);
    color: var(--wc-green);
}

.wc-bracket-action-btn.live .wc-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 6px currentColor;
    animation: wc-live-pulse 1.5s ease-in-out infinite;
}

.wc-bracket-action-btn.highlight {
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.25);
    color: #ff5e5e;
}

.wc-bracket-action-btn.highlight svg {
    width: 14px;
    height: 14px;
}
.wc-scorers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--wc-border);
}

.wc-scorers-col {
    min-width: 0;
}

.wc-scorers-col.home .wc-side-scorers {
    align-items: flex-start;
}

.wc-scorers-col.away .wc-side-scorers {
    align-items: flex-end;
}

.wc-side-scorers-block {
    max-width: 100%;
}

/* Legacy class aliases — keep for cached views */
.wc-goal,
.wc-goal-inline,
.wc-team-scorers {
    display: contents;
}

.wc-goal-player,
.wc-goal-minute {
    display: none;
}

/* YouTube highlights button */
.wc-btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.35);
    color: #ff6b6b;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.wc-btn-youtube svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.wc-btn-youtube:hover {
    background: rgba(255, 0, 0, 0.25);
    color: #fff;
    transform: translateY(-1px);
}

.wc-match-highlight-cta {
    display: flex;
    justify-content: center;
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--wc-border);
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.wc-btn-youtube-lg {
    padding: 0.45rem 1.1rem;
    font-size: 0.78rem;
    gap: 0.45rem;
    letter-spacing: 0.05em;
}

.wc-btn-youtube-lg svg {
    width: 20px;
    height: 20px;
}

.wc-match-top,
.wc-match-body {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

/* Highlight page */
.wc-highlight-page {
    padding-top: 7.5rem;
}

.wc-highlight-page .container {
    max-width: 1100px;
}

.wc-highlight-topbar {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.wc-highlight-header {
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.wc-highlight-header .wc-back-link {
    margin-bottom: 0.35rem;
}

.wc-highlight-header h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin: 0.5rem 0 0.25rem;
    color: var(--wc-text);
}

.wc-highlight-header .wc-hero-sub {
    margin: 0 auto;
}

.wc-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--wc-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.wc-back-link-btn {
    min-height: 44px;
    padding: 0.55rem 1.2rem;
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    border-radius: 999px;
    color: var(--wc-text);
    font-weight: 600;
    font-size: 0.82rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.wc-back-link-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.wc-back-link-btn:hover,
.wc-back-link-btn:active {
    color: var(--wc-green);
    border-color: rgba(0, 212, 126, 0.45);
    background: rgba(0, 212, 126, 0.08);
}

.wc-back-link svg {
    width: 16px;
    height: 16px;
}

.wc-back-link:hover {
    color: var(--wc-green);
}

.wc-highlight-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.25rem;
    align-items: start;
}

.wc-highlight-main {
    min-width: 0;
}

.wc-highlight-match-card {
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-sm);
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
}

.wc-highlight-match-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.wc-highlight-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
}

.wc-highlight-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    min-width: 0;
}

.wc-highlight-team img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.wc-highlight-team span {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
}

.wc-highlight-score {
    font-size: 1.5rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.wc-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--wc-radius-sm);
    overflow: hidden;
    background: #000;
    border: 1px solid var(--wc-border);
    box-shadow: var(--wc-shadow);
}

.wc-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.wc-video-poster {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--wc-radius-sm);
    overflow: hidden;
    background: #000;
    border: 1px solid var(--wc-border);
    box-shadow: var(--wc-shadow);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wc-video-poster:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
}

.wc-video-poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-video-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.wc-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 72px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
    transition: transform 0.2s;
}

.wc-video-poster:hover .wc-video-play {
    transform: translate(-50%, -50%) scale(1.08);
}

.wc-video-notice {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    color: var(--wc-muted);
    line-height: 1.45;
}

.wc-video-title {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    color: var(--wc-muted);
    line-height: 1.45;
}

.wc-youtube-external {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.65rem;
    font-size: 0.8rem;
    color: #ff6b6b;
    text-decoration: none;
}

.wc-youtube-external svg {
    width: 18px;
    height: 18px;
}

.wc-youtube-external:hover {
    color: #fff;
}

.wc-highlight-sidebar {
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-sm);
    padding: 1rem;
    position: sticky;
    top: 1rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

.wc-highlight-sidebar h2 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 0.85rem;
    color: var(--wc-text);
}

.wc-highlight-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wc-highlight-item {
    display: block;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--wc-border);
    background: var(--wc-surface-2);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.wc-highlight-item:hover {
    border-color: rgba(0, 212, 126, 0.35);
}

.wc-highlight-item.is-active {
    border-color: rgba(0, 212, 126, 0.55);
    background: rgba(0, 212, 126, 0.08);
}

.wc-highlight-item-date {
    font-size: 0.68rem;
    color: var(--wc-muted);
    margin-bottom: 0.25rem;
}

.wc-highlight-item-teams {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    flex-wrap: wrap;
}

.wc-highlight-item-teams strong {
    color: var(--wc-green);
    font-variant-numeric: tabular-nums;
}

.wc-highlight-item-title {
    margin-top: 0.3rem;
    font-size: 0.68rem;
    color: var(--wc-muted);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wc-highlight-empty {
    margin: 0;
    font-size: 0.85rem;
    color: var(--wc-muted);
}

/* Empty / alert states */
.wc-empty {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--wc-surface);
    border: 1px dashed var(--wc-border);
    border-radius: var(--wc-radius);
    color: var(--wc-muted);
}

.wc-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.wc-empty p {
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 576px) {
    .world-cup-page {
        padding: 3.75rem 0 3rem;
    }

    .wc-highlight-page {
        padding-top: 3.75rem;
    }

    .wc-back-link-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .wc-featured-inner {
        padding: 1.25rem 1rem 1rem;
    }

    .wc-featured-top {
        gap: 0.5rem 0.75rem;
        margin-bottom: 1rem;
    }

    .wc-team-flag-wrap {
        width: 48px;
        height: 48px;
        padding: 8px;
    }

    .wc-team-name {
        font-size: 0.8rem;
    }

    .wc-center {
        min-width: 90px;
    }

    .wc-countdown-unit {
        min-width: 38px;
        padding: 0.25rem 0.35rem;
    }

    .wc-countdown-num {
        font-size: 1rem;
    }

    .wc-filters {
        border-radius: var(--wc-radius);
        padding: 0.75rem;
    }

    .wc-filters-row {
        flex-wrap: wrap;
        align-items: stretch;
    }

    .wc-field-grow {
        flex: 1 1 calc(50% - 0.35rem);
        min-width: 140px;
    }

    .wc-btn-icon span {
        display: none;
    }

    .wc-btn-icon {
        padding: 0.55rem 0.75rem;
        min-width: 2.35rem;
    }

    .wc-filters-row .wc-btn-icon:last-child,
    .wc-filters-row .wc-btn-icon:nth-last-child(2) {
        flex: 0 0 auto;
    }

    .wc-match-body {
        grid-template-columns: 1fr auto 1fr;
        gap: 0.35rem;
        align-items: start;
    }

    .wc-match-team {
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
    }

    .wc-match-side.home .wc-match-team {
        justify-content: flex-start;
    }

    .wc-match-side.away .wc-match-team {
        justify-content: flex-end;
        flex-direction: row;
    }

    .wc-match-team span {
        font-size: 0.72rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: start;
        max-width: none;
        flex: 1;
        min-width: 0;
    }

    .wc-match-team.away span {
        text-align: end;
        flex: 1;
    }

    .wc-side-scorers {
        max-width: 100%;
    }

    .wc-goal-chip {
        max-width: 100%;
    }

    .wc-goal-chip-player {
        font-size: 0.65rem;
    }

    .wc-side-scorers-featured {
        max-width: 100%;
    }

    .wc-match-team img {
        width: 28px;
        height: 28px;
    }

    .wc-btn-youtube-lg {
        padding: 0.4rem 0.95rem;
        font-size: 0.72rem;
    }

    .wc-highlight-layout {
        grid-template-columns: 1fr;
    }

    .wc-highlight-sidebar {
        position: static;
        max-height: none;
    }
}

/* ── View tabs (Today / Happened / Prediction) ── */
.wc-view-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.35rem;
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
}

.wc-view-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--wc-muted);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.wc-view-tab svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.85;
}

.wc-view-tab:hover {
    color: var(--wc-text);
    background: rgba(255, 255, 255, 0.06);
}

.wc-view-tab.is-active {
    color: #041510;
    background: linear-gradient(135deg, var(--wc-green) 0%, #00a862 100%);
    box-shadow: 0 6px 20px rgba(0, 212, 126, 0.3);
}

.wc-view-tab.is-active svg {
    opacity: 1;
}

.wc-view-date-form {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-inline-start: 0.15rem;
    padding-inline-start: 0.55rem;
    border-inline-start: 1px solid var(--wc-border);
}

.wc-view-date-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--wc-muted);
    white-space: nowrap;
    margin: 0;
}

.wc-view-date-input {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--wc-text);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 0.85rem;
    min-height: 2.35rem;
    cursor: pointer;
}

.wc-view-date-input:focus {
    outline: none;
    border-color: rgba(0, 212, 126, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 212, 126, 0.12);
}

.wc-view-date-input.is-active {
    color: #041510;
    background: linear-gradient(135deg, var(--wc-green) 0%, #00a862 100%);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(0, 212, 126, 0.3);
}

.wc-view-date-input::-webkit-calendar-picker-indicator {
    filter: invert(0.85);
    cursor: pointer;
}

.wc-view-date-input.is-active::-webkit-calendar-picker-indicator {
    filter: invert(0.1);
}

.wc-view-tab-predict.is-active {
    color: #1a1400;
    background: linear-gradient(135deg, var(--wc-gold) 0%, #e6b800 100%);
    box-shadow: 0 6px 20px rgba(245, 197, 24, 0.28);
}

@media (max-width: 575px) {
    .wc-view-tabs {
        width: 100%;
        border-radius: var(--wc-radius-sm);
        justify-content: center;
    }

    .wc-view-tab {
        flex: 1;
        justify-content: center;
        padding: 0.5rem 0.65rem;
        font-size: 0.75rem;
    }

    .wc-view-tab svg {
        width: 14px;
        height: 14px;
    }

    .wc-view-date-form {
        flex: 1 1 100%;
        margin-inline-start: 0;
        padding-inline-start: 0;
        border-inline-start: none;
        border-top: 1px solid var(--wc-border);
        padding-top: 0.55rem;
        justify-content: center;
    }

    .wc-view-date-input {
        flex: 1;
        max-width: 12rem;
    }
}

/* ── Predictions ── */
.wc-predict-section {
    margin-bottom: 1.75rem;
}

.wc-predict-section-head {
    text-align: center;
    margin-bottom: 1rem;
}

.wc-predict-section-sub {
    margin-bottom: 0;
}

.wc-predict-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.wc-predict-card {
    position: relative;
    background: linear-gradient(160deg, #121c2e 0%, var(--wc-surface) 45%, #0d1524 100%);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    padding: 1.1rem 1rem 1rem;
    box-shadow: var(--wc-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
}

.wc-predict-card-datetime {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--wc-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.wc-predict-card-datetime svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.85;
}

.wc-predict-card-datetime strong {
    color: var(--wc-text);
    font-weight: 700;
}

.wc-predict-matchup-card {
    margin-bottom: 0;
}

.wc-predict-card-group {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--wc-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wc-predict-card-btn {
    width: 100%;
    margin-top: 0.15rem;
}

.wc-predict-card-closed {
    margin-top: 0.15rem;
}

.wc-predict-modal-kickoff {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
}

.wc-predict-banner {
    position: relative;
    margin-bottom: 1.75rem;
    border-radius: calc(var(--wc-radius) + 4px);
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 212, 126, 0.65), rgba(245, 197, 24, 0.35), rgba(0, 212, 126, 0.2));
    box-shadow: var(--wc-shadow);
    overflow: hidden;
}

.wc-predict-banner-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 126, 0.22), transparent 55%);
    pointer-events: none;
}

.wc-predict-banner-inner {
    position: relative;
    background: linear-gradient(160deg, #121c2e 0%, var(--wc-surface) 45%, #0d1524 100%);
    border-radius: var(--wc-radius);
    padding: 1.5rem 1.25rem 1.35rem;
    text-align: center;
}

.wc-predict-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-gold);
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.35);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.wc-predict-banner-badge svg {
    width: 14px;
    height: 14px;
}

.wc-predict-matchup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
}

.wc-predict-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    min-width: 88px;
    max-width: 130px;
}

.wc-predict-team span {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--wc-text);
}

.wc-predict-flag,
.wc-predict-score-flag {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--wc-surface-2);
    border: 2px solid var(--wc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.wc-predict-flag img,
.wc-predict-score-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-predict-vs {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--wc-muted);
    padding: 0.35rem 0.55rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.wc-predict-sub {
    color: var(--wc-muted);
    font-size: 0.85rem;
    margin: 0 0 1.1rem;
}

.wc-btn-predict {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--wc-green) 0%, #00a862 100%);
    color: #041510;
    border: none;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 212, 126, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-btn-predict svg {
    width: 18px;
    height: 18px;
}

.wc-btn-predict:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 212, 126, 0.45);
    color: #041510;
}

.wc-btn-predict-sm {
    font-size: 0.78rem;
    padding: 0.5rem 1rem;
}

.wc-match-predict-cta {
    display: flex;
    justify-content: center;
    padding: 0.65rem 0.85rem 0.85rem;
    border-top: 1px solid var(--wc-border);
    margin-top: 0.35rem;
}

.wc-match-card:has(.wc-match-predict-cta) {
    border-color: rgba(0, 212, 126, 0.25);
}

.wc-match-predict-closed {
    justify-content: center;
}

.wc-match-predict-closed .wc-badge {
    font-size: 0.72rem;
}

.wc-live-pred-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-sm);
}

.wc-live-pred-stats.is-live {
    border-color: rgba(255, 71, 87, 0.35);
    background: rgba(255, 71, 87, 0.08);
}

.wc-live-pred-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wc-muted);
    width: 100%;
    text-align: center;
    margin-bottom: 0.1rem;
}

.wc-live-pred-stats.is-live .wc-live-pred-label {
    color: #ff8a98;
}

.wc-live-pred-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.wc-live-pred-pill.correct {
    background: rgba(0, 212, 126, 0.18);
    color: var(--wc-green);
    border: 1px solid rgba(0, 212, 126, 0.35);
}

.wc-live-pred-pill.wrong {
    background: rgba(255, 71, 87, 0.15);
    color: #ff8a98;
    border: 1px solid rgba(255, 71, 87, 0.35);
}

.wc-featured-live .wc-live-pred-stats {
    margin-top: 1rem;
}

.wc-match-card .wc-live-pred-stats {
    margin: 0.65rem 0.85rem 0.85rem;
}

.wc-predict-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, #0f2a1f, #123528);
    border: 1px solid rgba(0, 212, 126, 0.45);
    color: var(--wc-green);
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
}

.wc-predict-toast.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.wc-predict-toast svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.wc-predict-modal .modal-dialog {
    max-width: 480px;
}

.wc-predict-modal-content {
    background: linear-gradient(165deg, #121c2e 0%, var(--wc-surface) 50%, #0a101a 100%);
    border: 1px solid var(--wc-border);
    border-radius: calc(var(--wc-radius) + 2px);
    color: var(--wc-text);
    overflow: hidden;
    box-shadow: var(--wc-shadow);
}

.wc-predict-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.35rem 0.5rem;
}

.wc-predict-modal-kicker {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin-bottom: 0.25rem;
}

.wc-predict-modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.wc-predict-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--wc-border);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-muted);
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.wc-predict-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.wc-predict-close svg {
    width: 18px;
    height: 18px;
}

.wc-predict-modal-body {
    padding: 0.75rem 1.35rem 1rem;
}

.wc-predict-phone-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--wc-muted);
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wc-predict-phone-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--wc-surface-2);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-sm);
    padding: 0 0.85rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wc-predict-phone-wrap:focus-within {
    border-color: rgba(0, 212, 126, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 212, 126, 0.12);
}

.wc-predict-phone-wrap svg {
    width: 18px;
    height: 18px;
    color: var(--wc-green);
    flex-shrink: 0;
}

.wc-predict-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.85rem 0;
    outline: none;
    text-align: left;
    direction: ltr;
}

.wc-predict-input::placeholder {
    color: rgba(148, 163, 184, 0.55);
    font-weight: 500;
}

.wc-predict-hint {
    font-size: 0.72rem;
    color: var(--wc-muted);
    margin: 0.45rem 0 0;
}

.wc-predict-error {
    color: var(--wc-red);
    font-size: 0.78rem;
    font-weight: 600;
    margin: 0.35rem 0 0;
}

.wc-predict-scores {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px solid var(--wc-border);
}

.wc-predict-score-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}

.wc-predict-score-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    color: var(--wc-text);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-predict-score-input {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--wc-surface-2);
    border: 2px solid var(--wc-border);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    direction: ltr;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.wc-predict-score-input:focus {
    border-color: rgba(0, 212, 126, 0.6);
    box-shadow: 0 0 0 4px rgba(0, 212, 126, 0.12);
    transform: scale(1.03);
}

.wc-predict-score-input.is-invalid {
    border-color: var(--wc-red);
}

.wc-predict-score-sep {
    font-size: 2rem;
    font-weight: 800;
    color: var(--wc-muted);
    padding-top: 4.5rem;
    line-height: 1;
}

.wc-predict-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    padding: 0.75rem 1.35rem 1.25rem;
    border-top: 1px solid var(--wc-border);
}

.wc-predict-modal-footer .wc-btn-ghost {
    border-radius: 999px;
    padding: 0.6rem 1.1rem;
}

.wc-btn-predict-submit {
    border-radius: 999px;
    padding: 0.65rem 1.35rem;
}

.wc-predict-modal .modal-backdrop.show {
    opacity: 0.75;
}

@media (max-width: 575px) {
    .wc-predict-banner-inner {
        padding: 1.25rem 1rem;
    }

    .wc-predict-team {
        min-width: 72px;
        max-width: 110px;
    }

    .wc-predict-flag {
        width: 48px;
        height: 48px;
    }

    .wc-predict-score-input {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .wc-predict-score-sep {
        padding-top: 4rem;
        font-size: 1.75rem;
    }

    .wc-predict-modal-footer {
        flex-direction: column-reverse;
    }

    .wc-predict-modal-footer .wc-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Live stream watch ── */
.wc-btn-watch {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 55%, #b91c1c 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(239, 68, 68, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.wc-btn-watch:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(239, 68, 68, 0.45);
}

.wc-btn-watch svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.wc-btn-watch-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
    animation: wcWatchPulse 2s infinite;
    pointer-events: none;
}

.wc-btn-watch-lg {
    width: 100%;
    padding: 0.85rem 1.35rem;
    font-size: 0.95rem;
}

.wc-btn-watch-sm {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
}

@keyframes wcWatchPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
    70% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.wc-view-tab-live {
    border-color: rgba(239, 68, 68, 0.45);
}

.wc-view-tab-live.is-active,
.wc-view-tab-live:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.65);
}

.wc-view-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.85);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
}

.wc-match-watch-cta,
.wc-predict-card-watch {
    margin-top: 0.65rem;
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.wc-match-watch-cta .wc-btn-watch,
.wc-predict-card-watch .wc-btn-watch {
    width: 100%;
}

.wc-live-page .wc-live-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.wc-live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.wc-live-card {
    background: linear-gradient(160deg, #121c2e 0%, var(--wc-surface) 45%, #0d1524 100%);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    padding: 1.15rem;
    box-shadow: var(--wc-shadow);
}

.wc-live-card-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}

.wc-live-card-datetime {
    font-size: 0.82rem;
    color: var(--wc-muted);
    margin-bottom: 0.85rem;
}

.wc-live-card-datetime strong {
    color: var(--wc-text);
}

.wc-live-card-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.65rem;
    align-items: center;
    margin-bottom: 1rem;
}

.wc-live-card-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    text-align: center;
}

.wc-live-card-team img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.wc-live-card-team span {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
}

.wc-live-card-score {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
}

.wc-live-notice {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.35);
    color: #fde68a;
    font-size: 0.88rem;
    line-height: 1.5;
    text-align: center;
}

.wc-watch-page .wc-watch-header {
    margin-bottom: 1.25rem;
}

.wc-watch-header-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.wc-watch-kickoff {
    color: var(--wc-muted);
    font-size: 0.85rem;
}

.wc-watch-matchup {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.wc-watch-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    text-align: center;
}

.wc-watch-team img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.wc-watch-team span {
    font-size: 1rem;
    font-weight: 800;
}

.wc-watch-score {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.wc-watch-player-card {
    background: linear-gradient(160deg, #121c2e 0%, var(--wc-surface) 45%, #0d1524 100%);
    border: 1px solid var(--wc-border);
    border-radius: calc(var(--wc-radius) + 2px);
    padding: 1rem;
    box-shadow: var(--wc-shadow);
}

.wc-watch-player-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fca5a5;
}

.wc-featured-watch {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.wc-featured-watch .wc-btn-watch {
    min-width: min(100%, 280px);
}

.wc-live-player-wrap {
    position: relative;
    width: 100%;
    min-height: 210px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

@supports (aspect-ratio: 16 / 9) {
    .wc-live-player-wrap {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }
}

.wc-live-player-start {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    border: 0;
    background: linear-gradient(180deg, rgba(8, 12, 22, 0.45) 0%, rgba(8, 12, 22, 0.88) 100%);
    color: #fff;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    font: inherit;
}

.wc-live-player-start-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 10px 36px rgba(239, 68, 68, 0.5);
}

.wc-live-player-start-icon svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
}

.wc-live-player-start-text {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wc-live-player-start[hidden],
.wc-live-player-stage[hidden] {
    display: none !important;
}

.wc-live-player-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.wc-live-player-iframe,
.wc-live-player-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.wc-live-player-iframe iframe,
.wc-live-player-embed iframe,
.wc-live-player-embed video,
.wc-live-player-embed [data-html5-video] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.wc-live-external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
    color: var(--wc-muted);
    font-size: 0.85rem;
    text-decoration: none;
}

.wc-live-external-link:hover {
    color: #fff;
}

.wc-live-external-link svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 575px) {
    .wc-watch-matchup {
        gap: 0.65rem;
    }

    .wc-watch-team span {
        font-size: 0.85rem;
    }

    .wc-watch-score {
        font-size: 1.5rem;
    }
}

/* ── Group standings modal ── */
.wc-hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.55rem;
    width: 100%;
    max-width: 920px;
    margin: -0.5rem auto 1.35rem;
    padding: 0 0.35rem;
}

.wc-groups-open-btn,
.wc-top-scorers-open-btn,
.wc-bracket-open-btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}

.wc-groups-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.7rem 1.35rem;
    border: 1px solid rgba(245, 197, 24, 0.45);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.18) 0%, rgba(0, 212, 126, 0.12) 100%);
    color: #fde68a;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(245, 197, 24, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.wc-groups-open-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.9;
}

.wc-groups-open-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 197, 24, 0.65);
    box-shadow: 0 12px 32px rgba(245, 197, 24, 0.22);
    color: #fff;
}

.wc-groups-modal .modal-dialog {
    margin: 0.75rem auto;
    max-width: min(1140px, calc(100% - 1rem));
}

.wc-groups-modal-content {
    background: linear-gradient(165deg, #0f1728 0%, #111827 50%, #0a101c 100%);
    border: 1px solid var(--wc-border);
    border-radius: calc(var(--wc-radius) + 4px);
    color: var(--wc-text);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
    overflow: hidden;
}

.wc-groups-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--wc-border);
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
}

.wc-groups-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--wc-border);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-muted);
    flex-shrink: 0;
    padding: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wc-groups-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.wc-groups-close svg {
    width: 18px;
    height: 18px;
}

.wc-groups-modal-header .modal-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.wc-groups-modal-sub {
    margin: 0.25rem 0 0;
    font-size: 0.78rem;
    color: var(--wc-muted);
}

.wc-groups-modal-body {
    padding: 1rem 1.1rem 1.25rem;
}

.wc-groups-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.wc-groups-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--wc-muted);
}

.wc-groups-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: rgba(0, 212, 126, 0.55);
    box-shadow: 0 0 0 2px rgba(0, 212, 126, 0.2);
}

.wc-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.85rem;
}

.wc-group-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-sm);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.wc-group-card-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid var(--wc-border);
    background: rgba(245, 197, 24, 0.08);
}

.wc-group-card-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--wc-gold) 0%, #d4a012 100%);
    color: #1a1200;
    font-size: 0.95rem;
    font-weight: 900;
    flex-shrink: 0;
}

.wc-group-card-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--wc-text);
    letter-spacing: 0.03em;
}

.wc-group-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wc-group-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.76rem;
    min-width: 280px;
}

.wc-group-table thead th {
    padding: 0.45rem 0.35rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--wc-muted);
    border-bottom: 1px solid var(--wc-border);
    white-space: nowrap;
    text-align: center;
}

.wc-group-table thead th.wc-col-team {
    text-align: start;
    padding-inline-start: 0.65rem;
}

.wc-group-table tbody td {
    padding: 0.5rem 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.wc-group-table tbody tr:last-child td {
    border-bottom: none;
}

.wc-group-table tbody tr.is-qualifying {
    background: rgba(0, 212, 126, 0.07);
}

.wc-group-table tbody tr.is-qualifying td:first-child {
    box-shadow: inset 3px 0 0 var(--wc-green);
}

.wc-col-rank {
    width: 1.6rem;
    color: var(--wc-muted);
    font-weight: 700;
}

.wc-col-team {
    text-align: start !important;
    padding-inline-start: 0.65rem !important;
    min-width: 0;
}

.wc-col-stat {
    width: 1.75rem;
}

.wc-col-pts {
    width: 2rem;
    color: var(--wc-gold);
}

.wc-col-pts strong {
    font-weight: 900;
}

.wc-group-team {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}

.wc-group-team-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--wc-border);
    background: var(--wc-surface-2);
}

.wc-group-team-flag-empty {
    display: inline-block;
    background: linear-gradient(135deg, var(--wc-surface-2), rgba(255, 255, 255, 0.06));
}

.wc-group-team-name {
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--wc-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-col-stat.is-positive {
    color: var(--wc-green);
}

.wc-col-stat.is-negative {
    color: var(--wc-red);
}

@media (max-width: 767px) {
    .wc-groups-grid {
        grid-template-columns: 1fr;
    }

    .wc-col-hide-md {
        display: none;
    }
}

@media (max-width: 479px) {
    .wc-hero-actions {
        gap: 0.4rem;
        padding: 0 0.25rem;
    }

    .wc-groups-open-btn,
    .wc-top-scorers-open-btn,
    .wc-bracket-open-btn {
        flex-direction: column;
        padding: 0.55rem 0.35rem;
        font-size: 0.68rem;
        gap: 0.35rem;
    }

    .wc-groups-open-btn svg,
    .wc-top-scorers-open-btn svg,
    .wc-bracket-open-btn svg {
        width: 20px;
        height: 20px;
    }

    .wc-groups-modal-header {
        padding: 0.9rem 1rem;
    }

    .wc-groups-modal-body {
        padding: 0.85rem 0.65rem 1rem;
    }

    .wc-col-hide-sm {
        display: none;
    }

    .wc-group-table {
        font-size: 0.72rem;
        min-width: 0;
    }

    .wc-group-team-name {
        font-size: 0.74rem;
    }
}

/* ── Top scorers modal ── */
.wc-top-scorers-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.7rem 1.35rem;
    border: 1px solid rgba(0, 212, 126, 0.45);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 212, 126, 0.16) 0%, rgba(56, 189, 248, 0.12) 100%);
    color: #6ee7b7;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(0, 212, 126, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.wc-top-scorers-open-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.9;
}

.wc-top-scorers-open-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 212, 126, 0.65);
    box-shadow: 0 12px 32px rgba(0, 212, 126, 0.22);
    color: #fff;
}

.wc-top-scorers-modal .modal-dialog {
    margin: 0.75rem auto;
    max-width: min(720px, calc(100% - 1rem));
}

.wc-top-scorers-modal-content {
    background: linear-gradient(165deg, #0f1728 0%, #111827 50%, #0a101c 100%);
    border: 1px solid var(--wc-border);
    border-radius: calc(var(--wc-radius) + 4px);
    color: var(--wc-text);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
    overflow: hidden;
}

.wc-top-scorers-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--wc-border);
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
}

.wc-top-scorers-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--wc-border);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-muted);
    flex-shrink: 0;
    padding: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wc-top-scorers-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.wc-top-scorers-close svg {
    width: 18px;
    height: 18px;
}

.wc-top-scorers-modal-header .modal-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.wc-top-scorers-modal-sub {
    margin: 0.25rem 0 0;
    font-size: 0.78rem;
    color: var(--wc-muted);
}

.wc-top-scorers-modal-body {
    padding: 1.25rem 1.1rem 1.35rem;
}

.wc-top-scorers-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--wc-muted);
}

.wc-top-scorers-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.wc-top-scorers-empty p {
    margin: 0;
    font-size: 0.9rem;
}

.wc-scorers-podium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    padding: 0 0.25rem;
}

.wc-scorer-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--wc-border);
    border-radius: 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.wc-scorer-card-podium {
    flex-direction: column;
    text-align: center;
    padding: 1rem 0.65rem 0.85rem;
    position: relative;
    overflow: hidden;
}

.wc-scorer-card-podium.is-gold {
    order: 0;
    padding-top: 1.35rem;
    padding-bottom: 1.1rem;
    border-color: rgba(245, 197, 24, 0.45);
    background: linear-gradient(180deg, rgba(245, 197, 24, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 12px 32px rgba(245, 197, 24, 0.12);
    transform: translateY(-8px);
}

.wc-scorer-card-podium.is-silver {
    border-color: rgba(203, 213, 225, 0.35);
    background: linear-gradient(180deg, rgba(203, 213, 225, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.wc-scorer-card-podium.is-bronze {
    border-color: rgba(217, 119, 6, 0.35);
    background: linear-gradient(180deg, rgba(217, 119, 6, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.wc-scorer-card-row {
    padding: 0.65rem 0.85rem;
    margin-bottom: 0.5rem;
}

.wc-scorer-card-row:hover {
    border-color: rgba(0, 212, 126, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.wc-scorer-card-row .wc-scorer-rank {
    width: 28px;
    flex-shrink: 0;
}

.wc-scorer-card-podium .wc-scorer-rank {
    margin-bottom: 0.15rem;
}

.wc-scorer-rank-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--wc-muted);
}

.wc-scorer-medal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 900;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.is-gold .wc-scorer-medal {
    background: linear-gradient(145deg, #fde68a 0%, #f59e0b 100%);
}

.is-silver .wc-scorer-medal {
    background: linear-gradient(145deg, #e2e8f0 0%, #94a3b8 100%);
}

.is-bronze .wc-scorer-medal {
    background: linear-gradient(145deg, #fdba74 0%, #d97706 100%);
}

.wc-scorer-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.wc-scorer-card-podium .wc-scorer-avatar-wrap {
    margin: 0.25rem 0 0.35rem;
}

.wc-scorer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        hsl(var(--wc-avatar-hue) 70% 55%) 0%,
        hsl(calc(var(--wc-avatar-hue) + 40) 65% 38%) 100%
    );
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.wc-scorer-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wc-scorer-avatar-initials {
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.wc-scorer-avatar-initials[hidden] {
    display: none;
}

.wc-scorer-card-podium.is-gold .wc-scorer-avatar {
    width: 68px;
    height: 68px;
    border-color: rgba(245, 197, 24, 0.5);
}

.wc-scorer-card-podium.is-gold .wc-scorer-avatar-initials {
    font-size: 1.2rem;
}

.wc-scorers-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--wc-border);
    padding-top: 0.85rem;
}

.wc-scorer-team-flag {
    position: absolute;
    bottom: -2px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #111827;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    background: #1e293b;
}

.wc-scorer-card-podium.is-gold .wc-scorer-team-flag {
    width: 26px;
    height: 26px;
}

.wc-scorer-info {
    flex: 1;
    min-width: 0;
}

.wc-scorer-card-podium .wc-scorer-info {
    width: 100%;
}

.wc-scorer-name {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-scorer-card-podium .wc-scorer-name {
    font-size: 0.82rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wc-scorer-team {
    margin: 0.15rem 0 0;
    font-size: 0.72rem;
    color: var(--wc-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-scorer-goals {
    flex-shrink: 0;
    text-align: center;
    min-width: 44px;
}

.wc-scorer-card-podium .wc-scorer-goals {
    margin-top: 0.35rem;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.wc-scorer-goals-num {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    color: #6ee7b7;
}

.is-gold .wc-scorer-goals-num {
    color: #fde68a;
    font-size: 1.55rem;
}

.wc-scorer-goals-label {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--wc-muted);
}

@media (max-width: 479px) {
    .wc-scorers-podium {
        gap: 0.45rem;
    }

    .wc-scorer-card-podium {
        padding: 0.75rem 0.4rem 0.65rem;
    }

    .wc-scorer-card-podium.is-gold {
        transform: none;
        padding-top: 0.85rem;
    }

    .wc-scorer-avatar {
        width: 44px;
        height: 44px;
    }

    .wc-scorer-card-podium.is-gold .wc-scorer-avatar {
        width: 52px;
        height: 52px;
    }

    .wc-scorer-name {
        font-size: 0.78rem;
    }

    .wc-top-scorers-modal-header {
        padding: 0.9rem 1rem;
    }

    .wc-top-scorers-modal-body {
        padding: 0.85rem 0.65rem 1rem;
    }
}

/* ── Knockout bracket modal ── */
.wc-bracket-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.7rem 1.35rem;
    border: 1px solid rgba(56, 189, 248, 0.45);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.16) 0%, rgba(99, 102, 241, 0.12) 100%);
    color: #7dd3fc;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(56, 189, 248, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.wc-bracket-open-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.9;
}

.wc-bracket-open-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow: 0 12px 32px rgba(56, 189, 248, 0.22);
    color: #fff;
}

.wc-bracket-modal .modal-dialog {
    margin: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.wc-bracket-modal .modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
}

.wc-bracket-modal-content {
    background: linear-gradient(165deg, #0b1220 0%, #0f1728 45%, #0a101c 100%);
    border: none;
    border-radius: 0;
    color: var(--wc-text);
    box-shadow: none;
    overflow: hidden;
}

.wc-bracket-modal-header {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--wc-border);
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
}

.wc-bracket-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--wc-border);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-muted);
    flex-shrink: 0;
    padding: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wc-bracket-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.wc-bracket-close svg {
    width: 18px;
    height: 18px;
}

.wc-bracket-modal-header .modal-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.wc-bracket-modal-sub {
    margin: 0.25rem 0 0;
    font-size: 0.78rem;
    color: var(--wc-muted);
}

.wc-bracket-modal-body {
    flex: 1;
    min-height: 0;
    padding: 0.75rem 0 1rem;
    background:
        radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(10, 16, 28, 0.95) 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wc-bracket-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0 0.75rem 0.55rem;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: #7dd3fc;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
}

.wc-bracket-scroll-hint svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    animation: wc-bracket-hint-pulse 1.6s ease-in-out infinite;
}

@keyframes wc-bracket-hint-pulse {
    0%, 100% { transform: translateX(0); opacity: 0.75; }
    50% { transform: translateX(4px); opacity: 1; }
}

.wc-bracket-scroll {
    flex: 1;
    min-height: 0;
    width: 100%;
    direction: ltr;
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y pinch-zoom;
    padding: 0 0.75rem 0.75rem;
    scroll-padding-inline: 0.75rem;
}

.wc-bracket-zoom-layer {
    display: block;
    margin-inline: auto;
    width: fit-content;
}

.wc-bracket-board {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.65rem;
    width: max-content;
    padding: 0.35rem 0.25rem 0.5rem;
    direction: ltr;
    transform-origin: 0 0;
    will-change: transform;
    --wc-bracket-unit: 4.45rem;
    --wc-bracket-gap: 0.55rem;
}

.wc-bracket-half {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    flex: 0 0 auto;
}

.wc-bracket-half-left {
    flex-direction: row;
}

.wc-bracket-half-right {
    flex-direction: row-reverse;
}

.wc-bracket-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--wc-muted);
}

.wc-bracket-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.wc-bracket-round {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 148px;
    flex: 0 0 148px;
}

.wc-bracket-round-label {
    margin: 0 0 0.55rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #fff !important;
    direction: rtl;
    unicode-bidi: plaintext;
}

.wc-bracket-round-matches {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--wc-bracket-gap);
    flex: 0 0 auto;
}

.wc-bracket-round[data-round="r16"] .wc-bracket-round-matches {
    gap: calc(var(--wc-bracket-unit) + var(--wc-bracket-gap));
    padding-block-start: calc((var(--wc-bracket-unit) + var(--wc-bracket-gap)) / 2);
}

.wc-bracket-round[data-round="qf"] .wc-bracket-round-matches {
    gap: calc((3 * var(--wc-bracket-unit)) + (3 * var(--wc-bracket-gap)));
    padding-block-start: calc((2 * var(--wc-bracket-unit) + 2 * var(--wc-bracket-gap)) / 2);
}

.wc-bracket-round[data-round="sf"] .wc-bracket-round-matches {
    gap: calc((7 * var(--wc-bracket-unit)) + (7 * var(--wc-bracket-gap)));
    padding-block-start: calc((4 * var(--wc-bracket-unit) + 4 * var(--wc-bracket-gap)) / 2);
}

.wc-bracket-round-empty {
    font-size: 0.72rem;
    color: var(--wc-muted);
    text-align: center;
    padding: 0.75rem 0.35rem;
    border: 1px dashed rgba(125, 211, 252, 0.25);
    border-radius: 10px;
}

.wc-bracket-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: 180px;
    flex: 0 0 180px;
    padding: 0 0.25rem;
}

.wc-bracket-trophy-wrap {
    text-align: center;
}

.wc-bracket-trophy {
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 8px 18px rgba(245, 197, 24, 0.35));
}

.wc-bracket-finals-label {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fde68a;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wc-bracket-final-slot {
    width: 100%;
}

.wc-bracket-champion {
    width: 100%;
    text-align: center;
    padding: 0.65rem 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 197, 24, 0.45);
    background: linear-gradient(180deg, rgba(245, 197, 24, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.wc-bracket-champion-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fde68a;
    margin-bottom: 0.35rem;
}

.wc-bracket-champion-team {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    direction: rtl;
    unicode-bidi: plaintext;
}

.wc-bracket-fixture {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    padding: 0.35rem;
    border-radius: 10px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.wc-bracket-fixture.is-clickable:hover {
    transform: translateY(-2px);
}

.wc-bracket-fixture.is-clickable:hover .wc-bracket-action-btn.highlight {
    background: rgba(255, 0, 0, 0.18);
    border-color: rgba(255, 0, 0, 0.35);
}

.wc-bracket-fixture.is-clickable:hover .wc-bracket-action-btn.live {
    background: rgba(0, 212, 126, 0.18);
    border-color: rgba(0, 212, 126, 0.4);
}

.wc-bracket-fixture-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: 10px;
}

.wc-bracket-kickoff {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--wc-muted);
    text-align: center;
    direction: rtl;
    unicode-bidi: plaintext;
    padding: 0 0.15rem 0.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0.05rem;
}

.wc-bracket-fixture.is-live {
    border-color: rgba(239, 68, 68, 0.55);
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25);
}

.wc-bracket-fixture.is-finished {
    border-color: rgba(0, 212, 126, 0.35);
}

.wc-bracket-team {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 28px;
    padding: 0.18rem 0.35rem;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.03);
    direction: rtl;
}

.wc-bracket-team.is-winner {
    background: rgba(0, 212, 126, 0.14);
    border: 1px solid rgba(0, 212, 126, 0.35);
}

.wc-bracket-team.is-tbd .wc-bracket-team-name {
    color: var(--wc-muted);
    font-style: italic;
}

.wc-bracket-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #1e293b;
}

.wc-bracket-flag-empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--wc-muted);
}

.wc-bracket-team-name {
    flex: 1;
    min-width: 0;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff !important;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    direction: rtl;
    unicode-bidi: plaintext;
    text-align: right;
}

html[lang="en"] .wc-bracket-team-name {
    direction: ltr;
    text-align: left;
}

.wc-bracket-score {
    font-size: 0.78rem;
    font-weight: 900;
    color: #6ee7b7;
    flex-shrink: 0;
}

.wc-bracket-live-pill,
.wc-bracket-ft-pill {
    position: absolute;
    top: -0.45rem;
    right: 0.45rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.12rem 0.35rem;
    border-radius: 999px;
}

.wc-bracket-live-pill {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
}

.wc-bracket-ft-pill {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(125, 211, 252, 0.35);
    color: #7dd3fc;
}

@media (max-width: 767px) {
    .wc-bracket-modal .modal-dialog {
        margin: 0;
        max-width: 100%;
        height: 100%;
    }

    .wc-bracket-modal .modal-content,
    .wc-bracket-modal-content {
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .wc-bracket-scroll-hint {
        font-size: 0.68rem;
    }

    .wc-bracket-modal-header {
        padding: 0.85rem 1rem;
    }

    .wc-bracket-modal-header .modal-title {
        font-size: 1rem;
    }

    .wc-bracket-modal-sub {
        font-size: 0.72rem;
    }

    .wc-bracket-round {
        width: 128px;
        flex-basis: 128px;
    }

    .wc-bracket-center {
        width: 156px;
        flex-basis: 156px;
    }

    .wc-bracket-team-name {
        font-size: 0.68rem;
    }

    .wc-bracket-flag {
        width: 18px;
        height: 18px;
    }

    .wc-bracket-trophy {
        font-size: 2.25rem;
    }

    .wc-bracket-round-label {
        font-size: 0.62rem;
    }
}

@media (max-width: 479px) {
    .wc-bracket-modal-header {
        padding: 0.75rem 0.85rem;
    }

    .wc-bracket-scroll {
        padding-inline: 0.55rem;
    }

    .wc-bracket-round {
        width: 118px;
        flex-basis: 118px;
    }

    .wc-bracket-center {
        width: 140px;
        flex-basis: 140px;
    }

    .wc-bracket-board {
        gap: 0.45rem;
    }

    .wc-bracket-half {
        gap: 0.4rem;
    }
}

/* ── AdSense slots (World Cup) ── */
.wc-ad-slot {
    margin: 1.25rem auto;
    max-width: 100%;
    min-height: 90px;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    overflow: hidden;
}

.wc-ad-slot-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wc-muted);
    opacity: 0.75;
}

.wc-ad-unit {
    min-height: 60px;
}

@media (min-width: 768px) {
    .wc-ad-slot {
        min-height: 110px;
        max-width: 728px;
    }
}
