/* WC2026 — Owrite | Aconymous */

:root {
  --wc-bg:         #ffffff;
  --wc-gray:       #f8f8f8;
  --wc-gray2:      #f1f1f1;
  --wc-border:     #e5e5e5;
  --wc-border2:    #eeeeee;
  --wc-text:       #0f0f0f;
  --wc-text2:      #3c3c3c;
  --wc-muted:      #767676;
  --wc-live:       #cc0000;
  --wc-live-bg:    #fff5f5;
  --wc-qualify:    #1a73e8;
  --wc-green:      #1e7e3e;
  --wc-pill-act:   #fce8e6;
  --wc-pill-bdr:   #f5c6c2;
  --wc-pill-txt:   #d93025;
  --wc-font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --wc-r:          12px;
  --wc-r-sm:       8px;
  --wc-shadow:     0 1px 4px rgba(0,0,0,.10), 0 4px 20px rgba(0,0,0,.07);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.wc2026-wrap {
  background: #f0f0f0;
  font-family: var(--wc-font);
  font-size: 14px;
  line-height: 1.55;
  color: var(--wc-text);
  padding: 0 0 40px;
}

/* ── Hero ── */
.wc2026-hero {
  padding: 20px 20px 0; background: var(--wc-bg);
  border-bottom: 1px solid var(--wc-border2);
}


.wc2026-hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

.wc2026-hero__title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--wc-text);
  margin: 0 0 4px;
}

.wc2026-hero__date {
  font-size: 13px;
  color: var(--wc-muted);
  margin: 0 0 20px;
}

.wc2026-hero__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

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

/* ── Opinions ── */
.wc2026-opinions { display: flex; flex-direction: column; gap: 10px; }

.wc2026-op-outer {
  display: flex; gap: 10px; align-items: center; margin-bottom: 10px;
}
.wc2026-op-wrap {
  position: relative; overflow: hidden; flex: 1; height: 240px;
}
.wc2026-op-wrap::before,
.wc2026-op-wrap::after {
  content: ''; position: absolute; left: 0; right: 0; height: 80px;
  pointer-events: none; z-index: 3;
}
.wc2026-op-wrap::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.wc2026-op-wrap::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.wc2026-opinions__feed {
  height: 100%; overflow-y: scroll;
  scroll-snap-type: y mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 64px 2px;
}
.wc2026-opinions__feed::-webkit-scrollbar { display: none; }

.wc2026-opinion-card {
  scroll-snap-align: center; scroll-snap-stop: always;
  display: flex; gap: 12px; align-items: center;
  background: #fff; border: 0.5px solid #ebebeb; border-radius: 9999px;
  padding: 10px 18px 10px 10px; margin-bottom: 10px;
  transition: transform .38s cubic-bezier(.34,1.56,.64,1),
              opacity .38s ease, filter .38s ease, border-color .2s;
  /* default: fully visible — JS adds blur after snap is initialized */
  transform: scale(1); opacity: 1; filter: blur(0);
  will-change: transform, opacity, filter; cursor: pointer;
}
.wc2026-opinion-card:last-child { margin-bottom: 0; }
/* After snap is ready, non-active cards get dimmed */
.wc2026-op-wrap.snap-ready .wc2026-opinion-card {
  transform: scale(0.86); opacity: 0.32; filter: blur(0.8px);
}
.wc2026-opinion-card.is-active,
.wc2026-op-wrap.snap-ready .wc2026-opinion-card.is-active {
  transform: scale(1); opacity: 1; filter: blur(0);
  border-color: #bbb;
}
.wc2026-opinion-card__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: #111; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.wc2026-opinion-card__avatar svg { width: 100%; height: 100%; display: block; }
.wc2026-opinion-card__body { flex: 1; min-width: 0; }
.wc2026-opinion-card__text {
  font-size: 13px; line-height: 1.45; font-weight: 500;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; word-break: break-word; margin-bottom: 5px;
}
.wc2026-opinion-card.is-active .wc2026-opinion-card__text { color: #111; font-weight: 600; }
.wc2026-opinion-card:not(.is-active) .wc2026-opinion-card__text { color: #8a8a8a; font-weight: 400; }
.wc2026-opinion-card__handle {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 500; color: #555;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wc2026-op-dots {
  display: flex; flex-direction: column; gap: 6px;
  align-items: center; flex-shrink: 0;
}
.wc2026-op-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #ccc;
  transition: height .3s cubic-bezier(.34,1.56,.64,1), border-radius .3s, background .3s;
}
.wc2026-op-dot.active { height: 22px; border-radius: 3px; background: #111; }

.wc2026-opinions__empty {
  text-align: center; color: var(--wc-muted); font-size: 13px; padding: 20px 0;
}

/* Opinion popup */
.wc2026-op-popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 9999; display: flex; align-items: flex-end; justify-content: center;
}
.wc2026-op-popup-overlay[hidden] { display: none; }
.wc2026-op-popup {
  background: #fff; border-radius: 24px 24px 0 0;
  padding: 24px 20px 32px; width: 100%; max-width: 520px;
  animation: wc2026-slide-up .28s cubic-bezier(.34,1.56,.64,1);
}
@keyframes wc2026-slide-up {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.wc2026-op-popup__handle {
  width: 36px; height: 4px; background: #ddd; border-radius: 2px; margin: 0 auto 18px;
}
.wc2026-op-popup__ava {
  width: 52px; height: 52px; border-radius: 50%; background: #111;
  overflow: hidden; margin-bottom: 12px; display: flex;
  align-items: center; justify-content: center;
}
.wc2026-op-popup__ava svg { width: 100%; height: 100%; }
.wc2026-op-popup__name {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: #555; margin-bottom: 10px;
}
.wc2026-op-popup__text { font-size: 15px; line-height: 1.6; color: #111; font-weight: 500; }
.wc2026-op-popup__close {
  margin-top: 20px; width: 100%; padding: 12px; background: #f2f2f2;
  border: none; border-radius: 100px; font-size: 14px; font-weight: 600; cursor: pointer;
}

.wc2026-btn-opinion {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #111; color: #fff; border: none; border-radius: 100px;
  padding: 11px 18px; font-family: var(--wc-font); font-size: 13px;
  font-weight: 600; cursor: pointer; width: 100%;
  transition: transform .15s, opacity .15s;
  letter-spacing: .01em;
}
.wc2026-btn-opinion:hover { opacity: .85; }
.wc2026-btn-opinion:active { transform: scale(.98); }

/* ── YouTube ── */
/* ── YouTube ── */
.wc2026-youtube {
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-r-sm);
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
}

.wc2026-youtube__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 10px;
}

.wc2026-live-dot {
  width: 7px; height: 7px;
  background: var(--wc-live);
  border-radius: 50%;
  animation: wc-pulse 1.5s step-end infinite;
  flex-shrink: 0;
}

@keyframes wc-pulse { 0%,100%{opacity:1} 50%{opacity:0} }

.wc2026-youtube__frame {
  position: relative;
  padding-top: 56.25%;
}

.wc2026-youtube__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.wc2026-youtube__meta {
  background: #fff;
  padding: 8px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--wc-muted);
}

.wc2026-youtube__meta strong { color: var(--wc-text); }

/* ── Logo Bar ── */
.wc2026-logo-bar {
  background: var(--wc-bg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--wc-border);
}

.wc2026-logo {
  height: 40px;
  width: auto;
  display: block;
}

/* ── Etalase ── */
.wc2026-etalase {
  max-width: 860px;
  margin: 20px auto 0;
  background: var(--wc-bg);
  border-radius: var(--wc-r);
  box-shadow: var(--wc-shadow);
  overflow: hidden;
}

/* ── Pills ── */
.wc2026-pills {
  display: flex;
  gap: 8px;
  padding: 14px 16px 10px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--wc-border);
}

.wc2026-pills::-webkit-scrollbar { display: none; }

.wc2026-pill {
  flex-shrink: 0;
  border: 1px solid var(--wc-border);
  border-radius: 100px;
  background: var(--wc-bg);
  color: var(--wc-text2);
  font-family: var(--wc-font);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all .15s;
  margin-bottom: 0;
  white-space: nowrap;
}

.wc2026-pill:hover {
  background: var(--wc-gray);
}

.wc2026-pill.active {
  background: var(--wc-pill-act);
  border-color: var(--wc-pill-bdr);
  color: var(--wc-pill-txt);
}

/* ── Panels ── */
.wc2026-panel { display: none; }
.wc2026-panel.active { display: block; }
.wc2026-panel[hidden] { display: none; }

.wc2026-panel__inner {
  padding: 20px 16px 16px;
}

/* ── Live Header ── */
.wc2026-live-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--wc-text2);
  margin-bottom: 12px;
}

.wc2026-btn-refresh {
  background: none;
  border: 1px solid var(--wc-border);
  border-radius: 4px;
  color: var(--wc-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 2px 8px;
  margin-left: auto;
  transition: all .15s;
}

.wc2026-btn-refresh:hover { color: var(--wc-text); }

/* ── Match Cards ── */
.wc2026-match-list { display: flex; flex-direction: column; gap: 8px; }

.wc2026-match-card {
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-r-sm);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .15s;
}

.wc2026-match-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,.1); }

.wc2026-match-card--live { border-left: 3px solid var(--wc-live); }

.wc2026-match-card__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  background: var(--wc-gray);
  font-size: 11px;
  color: var(--wc-muted);
}

.wc2026-match-card__body {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 8px;
  padding: 12px;
}

.wc2026-match-card__team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.wc2026-match-card__team--away {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.wc2026-match-card__score {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}

.wc2026-match-card__venue {
  font-size: 10px;
  color: var(--wc-muted);
  text-align: center;
  margin-top: 4px;
}

/* ── Tags ── */
.wc2026-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}

.wc2026-tag--live { background: var(--wc-live); color: #fff; }
.wc2026-tag--ft   { background: var(--wc-gray2); color: var(--wc-muted); }
.wc2026-tag--tbd  { background: var(--wc-gray2); color: var(--wc-muted); }

.wc2026-flag {
  width: 22px; height: 16px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,.08);
  flex-shrink: 0;
  vertical-align: middle;
}

/* ── Toolbar ── */
.wc2026-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--wc-border2);
}

.wc2026-filter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--wc-muted);
}

.wc2026-input {
  background: var(--wc-bg);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-r-sm);
  color: var(--wc-text);
  font-family: var(--wc-font);
  font-size: 13px;
  padding: 6px 10px;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: border-color .15s;
}

.wc2026-input:focus { border-color: var(--wc-qualify); }

.wc2026-btn-primary {
  background: var(--wc-text);
  border: none;
  border-radius: var(--wc-r-sm);
  color: #fff;
  cursor: pointer;
  font-family: var(--wc-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 7px 16px;
  transition: opacity .15s;
}

.wc2026-btn-primary:hover { opacity: .8; }

/* ── Sub Tabs ── */
.wc2026-sub-tabs {
  display: flex;
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-r-sm);
  overflow: hidden;
}

.wc2026-sub-btn {
  flex: 1;
  background: var(--wc-bg);
  border: none;
  color: var(--wc-muted);
  cursor: pointer;
  font-family: var(--wc-font);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  transition: all .15s;
  white-space: nowrap;
}

.wc2026-sub-btn + .wc2026-sub-btn { border-left: 1px solid var(--wc-border); }
.wc2026-sub-btn.active { background: var(--wc-text); color: #fff; }

.wc2026-sub-panel { display: none; }
.wc2026-sub-panel.active { display: block; }
.wc2026-sub-panel[hidden] { display: none; }

/* ── Group Tabs ── */
.wc2026-grp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.wc2026-grp-btn {
  background: var(--wc-bg);
  border: 1px solid var(--wc-border);
  border-radius: 4px;
  color: var(--wc-muted);
  cursor: pointer;
  font-family: var(--wc-font);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  transition: all .15s;
}

.wc2026-grp-btn.active,
.wc2026-grp-btn:hover {
  background: var(--wc-text);
  border-color: var(--wc-text);
  color: #fff;
}

/* ── Standings Table ── */
.wc2026-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.wc2026-standings {
  width: 100%;
  min-width: 380px;
  border-collapse: collapse;
  font-size: 13px;
}

.wc2026-standings caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--wc-muted);
  text-align: left;
  padding: 8px 0 6px;
}

.wc2026-standings th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--wc-muted);
  padding: 7px 8px;
  text-align: center;
  border-bottom: 2px solid var(--wc-border);
  background: var(--wc-bg);
  white-space: nowrap;
}

.wc2026-standings th:nth-child(1),
.wc2026-standings th:nth-child(2),
.wc2026-standings th:nth-child(3) {
  position: sticky;
  z-index: 2;
  background: var(--wc-bg);
}

.wc2026-standings th:nth-child(1) { left: 0; width: 24px; }
.wc2026-standings th:nth-child(2) { left: 24px; width: 26px; text-align: left; }
.wc2026-standings th:nth-child(3) { left: 50px; min-width: 100px; text-align: left; box-shadow: 2px 0 4px rgba(0,0,0,.06); }

.wc2026-standings td {
  padding: 8px 8px;
  text-align: center;
  border-bottom: 1px solid var(--wc-border2);
  white-space: nowrap;
  color: var(--wc-text2);
}

.wc2026-standings td:nth-child(1),
.wc2026-standings td:nth-child(2),
.wc2026-standings td:nth-child(3) {
  position: sticky;
  z-index: 1;
  background: var(--wc-bg);
}

.wc2026-standings td:nth-child(1) { left: 0; color: var(--wc-muted); font-size: 11px; }
.wc2026-standings td:nth-child(2) { left: 24px; text-align: left; padding-right: 4px; }
.wc2026-standings td:nth-child(3) { left: 50px; text-align: left; font-weight: 500; color: var(--wc-text); box-shadow: 2px 0 4px rgba(0,0,0,.06); }
.wc2026-standings td:nth-child(9) { font-weight: 700; color: var(--wc-text); }

.wc2026-standings tbody tr:hover td { background: var(--wc-gray); }
.wc2026-standings tbody tr:hover td:nth-child(1),
.wc2026-standings tbody tr:hover td:nth-child(2),
.wc2026-standings tbody tr:hover td:nth-child(3) { background: var(--wc-gray); }

.wc2026-standings tr.qualify td:nth-child(1) { box-shadow: inset 3px 0 0 var(--wc-qualify); }

.wc2026-form-pip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  margin-left: 1px;
}

.pip-W { background: var(--wc-green); }
.pip-D { background: #9aa0a6; }
.pip-L { background: var(--wc-live); }

/* ── Knockout Bracket ── */
.wc2026-ko-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--wc-border) transparent;
  padding-bottom: 12px;
}

.wc2026-ko-scroller:active { cursor: grabbing; }
.wc2026-ko-scroller::-webkit-scrollbar { height: 4px; }
.wc2026-ko-scroller::-webkit-scrollbar-thumb { background: var(--wc-border); border-radius: 2px; }

.wc2026-ko-inner { position: relative; }

.wc2026-ko-round-lbl {
  position: absolute;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wc-muted);
  text-align: center;
  top: 0;
}

.wc2026-ko-card {
  position: absolute;
  background: var(--wc-bg);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-r-sm);
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow .15s;
}

.wc2026-ko-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,.1); }
.wc2026-ko-card--live { border-left: 3px solid var(--wc-live); }
.wc2026-ko-card--final { border-color: #d4af37; }

.wc2026-ko-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
  font-size: 9px;
  color: var(--wc-muted);
  background: var(--wc-gray);
}

.wc2026-ko-team {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-top: 1px solid var(--wc-border2);
  font-size: 12px;
  font-weight: 500;
}

.wc2026-ko-team.tbd { color: var(--wc-muted); font-style: italic; font-weight: 400; font-size: 11px; }
.wc2026-ko-team.winner { color: var(--wc-green); font-weight: 700; }

.wc2026-ko-score {
  margin-left: auto;
  font-weight: 700;
  font-size: 13px;
  color: var(--wc-muted);
}

.wc2026-ko-team.winner .wc2026-ko-score { color: var(--wc-green); }

/* ── Scroll Hint ── */
.wc2026-scroll-hint {
  font-size: 11px;
  color: var(--wc-muted);
  text-align: center;
  padding: 4px 0 10px;
}

/* ── Skeleton ── */
.wc2026-skeleton-stack { display: flex; flex-direction: column; gap: 8px; }

.wc2026-skeleton {
  border: 1px solid var(--wc-border2);
  border-radius: var(--wc-r-sm);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wc2026-skeleton__bar {
  height: 12px;
  background: linear-gradient(90deg, var(--wc-gray2) 25%, var(--wc-gray) 50%, var(--wc-gray2) 75%);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: wc-shimmer 1.5s infinite;
}

.wc2026-skeleton__bar--short { width: 55%; }

@keyframes wc-shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── Modal ── */
.wc2026-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(3px);
}

.wc2026-modal-overlay[hidden] { display: none; }

.wc2026-modal {
  background: var(--wc-bg);
  border-radius: var(--wc-r);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  width: min(500px, 100%);
  max-height: 88vh;
  overflow-y: auto;
}

.wc2026-modal--detail { width: min(620px, 100%); }

.wc2026-modal__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--wc-border);
  position: sticky;
  top: 0;
  background: var(--wc-bg);
  z-index: 1;
}

.wc2026-modal__hd h3 { font-size: 16px; font-weight: 700; }

.wc2026-modal__close {
  background: none;
  border: 1px solid var(--wc-border);
  border-radius: 6px;
  color: var(--wc-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  transition: all .15s;
}

.wc2026-modal__close:hover { color: var(--wc-text); }

.wc2026-modal__body { padding: 18px; }

/* ── Opinion Form ── */
.wc2026-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.wc2026-form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--wc-text2);
}

.wc2026-form-group input,
.wc2026-form-group textarea {
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-r-sm);
  font-family: var(--wc-font);
  font-size: 13px;
  padding: 9px 12px;
  outline: none;
  transition: border-color .15s;
  color: var(--wc-text);
  background: var(--wc-bg);
  resize: vertical;
}

.wc2026-form-group input:focus,
.wc2026-form-group textarea:focus { border-color: var(--wc-qualify); }

.wc2026-char-count { display: none; }
/* legacy */ ._wc2026-char-count {
  font-size: 11px;
  color: var(--wc-muted);
  text-align: right;
}

.wc2026-recaptcha-note {
  font-size: 11px;
  color: var(--wc-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.wc2026-recaptcha-note a { color: var(--wc-qualify); }

.wc2026-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wc2026-quota-info {
  font-size: 11px;
  color: var(--wc-muted);
}

.wc2026-form-msg {
  margin-top: 10px;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: var(--wc-r-sm);
  display: none;
}

.wc2026-form-msg.ok    { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; display: block; }
.wc2026-form-msg.error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; display: block; }

/* ── Match Detail Modal ── */
.wc2026-detail-tabs {
  display: flex;
  border-bottom: 1px solid var(--wc-border);
  margin-bottom: 14px;
}

.wc2026-dtab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--wc-muted);
  cursor: pointer;
  font-family: var(--wc-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 9px 8px 7px;
  text-align: center;
  text-transform: uppercase;
  transition: all .15s;
}

.wc2026-dtab.active { color: var(--wc-qualify); border-bottom-color: var(--wc-qualify); }

.wc2026-stat-row {
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  gap: 8px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--wc-border2);
  font-size: 13px;
}

.wc2026-stat-row:last-child { border: none; }

.wc2026-stat-val {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.wc2026-stat-lbl {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--wc-muted);
}

.wc2026-event-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--wc-border2);
  font-size: 13px;
}

.wc2026-event-row:last-child { border: none; }
.wc2026-event-min { font-weight: 700; color: var(--wc-qualify); width: 36px; flex-shrink: 0; }
.wc2026-event-ico { font-size: 16px; flex-shrink: 0; }
.wc2026-event-info strong { display: block; font-weight: 600; }
.wc2026-event-info small { color: var(--wc-muted); font-size: 11px; }

.wc2026-lineup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.wc2026-lineup-team h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wc-qualify);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--wc-border);
}

.wc2026-player-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--wc-border2);
  font-size: 12px;
}

.wc2026-player-num { color: var(--wc-muted); font-size: 10px; width: 18px; flex-shrink: 0; }

/* ── News Section ── */
.wc2026-news {
  max-width: 860px;
  margin: 20px auto 0;
  background: var(--wc-bg);
  border-radius: var(--wc-r);
  box-shadow: var(--wc-shadow);
  padding: 20px;
}

.wc2026-news__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.wc2026-news__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--wc-text);
}

.wc2026-news__all {
  font-size: 12px;
  font-weight: 600;
  color: var(--wc-qualify);
  text-decoration: none;
}

.wc2026-news__all:hover { text-decoration: underline; }

.wc2026-news__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 580px) {
  .wc2026-news__grid { grid-template-columns: 1fr; }
  .wc2026-news__featured .wc2026-news__title { font-size: 17px; }
}

.wc2026-news__featured {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wc2026-news__featured img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--wc-r-sm);
  display: block;
}

.wc2026-news__title a,
.wc2026-news__item-title a {
  color: var(--wc-text);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.38;
}

.wc2026-news__title a:hover,
.wc2026-news__item-title a:hover { color: var(--wc-qualify); }

.wc2026-news__featured .wc2026-news__title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.28;
}

.wc2026-news__meta {
  font-size: 12px;
  color: var(--wc-muted);
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 6px;
}

.wc2026-news__excerpt {
  font-size: 14px;
  color: var(--wc-muted);
  line-height: 1.55;
}

.wc2026-news__side {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wc2026-news__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--wc-border2);
  cursor: pointer;
}

.wc2026-news__item:first-child { padding-top: 0; }
.wc2026-news__item:last-child { border: none; }

.wc2026-news__item-body { flex: 1; min-width: 0; }

.wc2026-news__item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.38;
  margin-bottom: 5px;
}

.wc2026-news__item-img img {
  width: 80px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  display: block;
}

/* ── Admin CSS (inline in plugin, separate file normally) ── */
.wc2026-admin .title { margin-top: 24px; }

/* ── Responsive ── */
@media (max-width: 480px) {
  .wc2026-match-card__body { grid-template-columns: 1fr; }
  .wc2026-match-card__team--away { flex-direction: row; justify-content: flex-start; }
  .wc2026-lineup-grid { grid-template-columns: 1fr; }
  .wc2026-stat-row { grid-template-columns: 1fr 80px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .wc2026-live-dot,
  .wc2026-skeleton__bar { animation: none; }
}

.wc2026-quota-info { display: none; }
.wc2026-recaptcha-note { display: none; }
.wc2026-opinions__quota-msg { display: none; }

/* ── Embedded Shortcodes ─────────────────────────────────────────────────── */
.wc2026-embed {
  font-family: var(--wc-font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--wc-text);
  margin: 20px 0;
}

.wc2026-embed__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--wc-text);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wc2026-embed__group-badge {
  font-size: 12px;
  font-weight: 600;
  background: var(--wc-pill-act);
  color: var(--wc-pill-txt);
  border-radius: 100px;
  padding: 2px 10px;
}
.wc2026-embed__empty {
  color: var(--wc-muted);
  font-size: 13px;
  padding: 16px 0;
  text-align: center;
}
.wc2026-embed__list { display: flex; flex-direction: column; gap: 8px; }

.wc2026-embed__date-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--wc-muted);
  padding: 10px 0 4px;
}
.wc2026-embed__match {
  background: var(--wc-bg);
  border: 1px solid var(--wc-border2);
  border-radius: var(--wc-r-sm);
  padding: 10px 14px;
}
.wc2026-embed__match-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.wc2026-embed__group {
  font-size: 11px;
  color: var(--wc-muted);
  font-weight: 500;
}
.wc2026-embed__teams {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.wc2026-embed__teams--result {
  justify-content: space-between;
}
.wc2026-embed__team {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.wc2026-embed__team--away {
  justify-content: flex-end;
  text-align: right;
  flex-direction: row-reverse;
}
.wc2026-embed__team--winner {
  color: var(--wc-qualify);
}
.wc2026-embed__vs {
  color: var(--wc-muted);
  font-size: 12px;
  font-weight: 400;
  flex-shrink: 0;
}
.wc2026-embed__score {
  font-size: 18px;
  font-weight: 800;
  color: var(--wc-text);
  min-width: 60px;
  text-align: center;
  flex-shrink: 0;
}
.wc2026-embed__venue {
  font-size: 11px;
  color: var(--wc-muted);
  margin-top: 6px;
}

/* Standings embed */
.wc2026-embed__standings-group { margin-bottom: 24px; }
.wc2026-embed__standings-group:last-child { margin-bottom: 0; }
.wc2026-embed__standings-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--wc-muted);
  margin-bottom: 8px;
}
.wc2026-embed__table { width: 100%; }

/* Live embed dot */
.wc2026-live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--wc-live);
  border-radius: 50%;
  animation: wc2026-pulse 1.4s infinite;
}

/* Bracket embed */
.wc2026-embed--bracket .wc2026-ko-wrap {
  min-height: 200px;
}

/* ── Match Row (Matches tab) ── */
.wc2026-date-hdr {
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--wc-muted);
  padding: 14px 0 6px;
}
.wc2026-date-hdr:first-child { padding-top: 4px; }

.wc2026-mr {
  display: flex; align-items: center; gap: 0;
  padding: 9px 0; border-bottom: 1px solid var(--wc-border2);
  cursor: pointer; transition: background .12s;
  border-radius: 0;
}
.wc2026-mr:last-child { border-bottom: none; }
.wc2026-mr:hover {
  background: var(--wc-gray2);
  margin: 0 -16px; padding: 9px 16px;
  border-radius: 8px;
}
.wc2026-mr--live { background: #fff8f8; }
.wc2026-mr--live:hover { background: #fff0f0; }

.wc2026-mr-time {
  width: 52px; flex-shrink: 0;
  text-align: center; line-height: 1.3;
}
.wc2026-mr-teams {
  flex: 1; display: flex; flex-direction: column;
  gap: 5px; padding: 0 10px;
}
.wc2026-mr-team {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--wc-text);
}
.wc2026-mr-team--win { font-weight: 700; }
.wc2026-mr-team--dim { color: var(--wc-muted); font-weight: 400; }
.wc2026-mr-scores {
  width: 28px; flex-shrink: 0;
  display: flex; flex-direction: column;
  gap: 5px; align-items: center;
}
.wc2026-mr-scores span {
  display: flex; align-items: center; justify-content: center;
  height: 20px; width: 100%;
  font-size: 14px; font-weight: 700; color: var(--wc-text);
  line-height: 1;
}
.wc2026-mr-score--win { color: var(--wc-text); }
.wc2026-mr-meta {
  width: 40px; flex-shrink: 0;
  font-size: 10px; color: var(--wc-muted);
  font-weight: 600; text-align: right;
  letter-spacing: .3px;
}

/* Fixtures container scroll */
#wc2026-fixtures-data {
  max-height: 500px; overflow-y: auto;
  margin: 0 -16px; padding: 0 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--wc-border) transparent;
}
#wc2026-fixtures-data::-webkit-scrollbar { width: 4px; }
#wc2026-fixtures-data::-webkit-scrollbar-thumb {
  background: var(--wc-border); border-radius: 2px;
}

/* ── Match filter strip ── */
.wc2026-mtch-filter {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px; border-bottom: 1px solid var(--wc-border2);
  margin-bottom: 4px; flex-wrap: wrap;
}
.wc2026-mtch-pills {
  display: flex; gap: 6px; overflow-x: auto;
  scrollbar-width: none; flex: 1;
}
.wc2026-mtch-pills::-webkit-scrollbar { display: none; }
.wc2026-mtch-pill {
  flex-shrink: 0; background: none;
  border: 1px solid var(--wc-border); border-radius: 100px;
  padding: 5px 14px; font-size: 12px; font-weight: 500;
  color: var(--wc-text2); cursor: pointer;
  font-family: var(--wc-font); white-space: nowrap;
  transition: all .15s;
}
.wc2026-mtch-pill.active {
  background: var(--wc-text); color: #fff; border-color: var(--wc-text);
}
.wc2026-mtch-grp {
  flex-shrink: 0; border: 1px solid var(--wc-border);
  border-radius: 8px; padding: 5px 10px;
  font-size: 12px; color: var(--wc-text2);
  font-family: var(--wc-font); background: var(--wc-bg); cursor: pointer;
  max-width: 130px;
}

/* Scrollable match list */
.wc2026-match-list--scroll {
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--wc-border) transparent;
  margin: 0 -16px;
  padding: 0 16px;
}
.wc2026-match-list--scroll::-webkit-scrollbar { width: 4px; }
.wc2026-match-list--scroll::-webkit-scrollbar-thumb {
  background: var(--wc-border); border-radius: 2px;
}

/* ── PageSpeed optimizations ── */
.wc2026-wrap {
  /* content-visibility skipped — theme compatibility */
}
/* Prevent layout shift on flag images */
.wc2026-flag {
  display: inline-block;
  width: 24px; height: 18px;
  object-fit: contain;
}
/* Prevent CLS on ko-scroller */
.wc2026-ko-wrap {
  min-height: 200px;
  contain: layout style;
}

/* ── YouTube Full Width ── */
.wc2026-yt-wrap {
  position: relative; width: 100%; background: #000;
  overflow: hidden; margin-top: 16px;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.wc2026-yt-frame {
  display: block; width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}
.wc2026-yt-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; background: #111; color: #fff;
  font-size: 13px; font-weight: 500;
}
.wc2026-yt-bar__label { opacity: .7; }
.wc2026-yt-bar__link {
  color: #fff; text-decoration: none; opacity: .85;
  font-size: 12px; font-weight: 600;
  transition: opacity .15s;
}
.wc2026-yt-bar__link:hover { opacity: 1; }

/* Tab panels */
.wc2026-tab-body { padding-top: 16px; }
.wc2026-panel { display: none; }
.wc2026-panel[hidden] { display: none !important; }
.wc2026-panel:not([hidden]) { display: block; }

/* Group tabs for standings */
.wc2026-grp-tabs {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-bottom: 16px;
}
.wc2026-grp-tab {
  background: none; border: 1px solid var(--wc-border);
  border-radius: 6px; padding: 4px 12px;
  font-size: 12px; font-weight: 600;
  color: var(--wc-text2); cursor: pointer;
  font-family: var(--wc-font); transition: all .15s;
}
.wc2026-grp-tab.active, .wc2026-grp-tab[aria-selected="true"] {
  background: var(--wc-text); color: #fff; border-color: var(--wc-text);
}

/* ── Data Section ── */
.wc2026-data {
  background: var(--wc-bg);
  padding: 20px;
  border: 1px solid var(--wc-border2);
  border-radius: var(--wc-r);
  margin-top: 16px;
}
.wc2026-data__title {
  font-size: 20px; font-weight: 800;
  letter-spacing: -.02em; margin: 0 0 14px;
  color: var(--wc-text);
}

/* News section */
.wc2026-news {
  margin-top: 24px;
  padding: 20px;
  background: var(--wc-bg);
  border: 1px solid var(--wc-border2);
  border-radius: var(--wc-r);
}
.wc2026-news__header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 16px;
}
.wc2026-news__title {
  font-size: 18px; font-weight: 800;
  letter-spacing: -.01em; margin: 0;
}
.wc2026-news__all {
  font-size: 13px; color: var(--wc-qualify);
  text-decoration: none; font-weight: 600;
}
.wc2026-news__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .wc2026-news__grid { grid-template-columns: 1fr; }
}
.wc2026-news__featured-link {
  display: block; text-decoration: none; color: inherit;
}
.wc2026-news__img {
  width: 100%; border-radius: 8px;
  aspect-ratio: 16/9; object-fit: cover;
  display: block; margin-bottom: 12px;
  background: var(--wc-gray2);
}
.wc2026-news__featured-title {
  font-size: 17px; font-weight: 800;
  line-height: 1.3; margin-bottom: 6px;
  color: var(--wc-text);
}
.wc2026-news__featured-excerpt {
  font-size: 13px; color: var(--wc-muted);
  line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.wc2026-news__side {
  display: flex; flex-direction: column; gap: 0;
}
.wc2026-news__item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--wc-border2);
  text-decoration: none; color: inherit;
  align-items: flex-start;
}
.wc2026-news__item:last-child { border-bottom: none; }
.wc2026-news__item:hover .wc2026-news__item-title { color: var(--wc-qualify); }
.wc2026-news__item-body { flex: 1; min-width: 0; }
.wc2026-news__item-title {
  font-size: 13.5px; font-weight: 700;
  line-height: 1.4; color: var(--wc-text);
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.wc2026-news__item-img {
  width: 80px; flex-shrink: 0;
}
.wc2026-news__item-img img,
.wc2026-news__item-img .wc2026-news__img {
  width: 80px; height: 64px; border-radius: 6px;
  object-fit: cover; aspect-ratio: unset; margin: 0;
}
.wc2026-news__meta {
  font-size: 11px; color: var(--wc-muted);
  display: flex; gap: 4px; margin-top: 6px;
}

/* ── Google Snippet Match Cards ── */
.wc2026-gs-group {
  margin-bottom: 4px;
}
.wc2026-gs-group--today .wc2026-gs-date-hdr {
  background: #1a1a2e;
  color: #fff;
}
.wc2026-gs-date-hdr {
  background: var(--wc-gray2, #f3f4f6);
  color: var(--wc-text, #111);
  font-size: 13px; font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px 8px 0 0;
  letter-spacing: .02em;
}
.wc2026-gs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--wc-border2, #ebebeb);
  border: 1px solid var(--wc-border2, #ebebeb);
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
@media (max-width: 560px) {
  .wc2026-gs-grid { grid-template-columns: 1fr; }
}
.wc2026-gs-card {
  background: var(--wc-bg, #fff);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wc2026-gs-card--live {
  background: #fff8f8;
}
.wc2026-gs-label {
  font-size: 11px; font-weight: 600;
  color: var(--wc-muted, #888);
  letter-spacing: .3px;
  text-transform: uppercase;
}
.wc2026-gs-teams {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wc2026-gs-team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.wc2026-gs-team-left {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
}
.wc2026-gs-team-name {
  font-size: 14px; font-weight: 500;
  color: var(--wc-text, #111);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wc2026-gs-team-name.bold { font-weight: 700; }
.wc2026-gs-team-name.dim  { color: var(--wc-muted, #888); }
.wc2026-gs-score {
  font-size: 15px; font-weight: 700;
  color: var(--wc-text, #111);
  min-width: 18px; text-align: right;
  flex-shrink: 0;
}
.wc2026-gs-score.bold { font-weight: 800; }
.wc2026-gs-badge-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wc2026-gs-badge {
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 3px;
  letter-spacing: .3px;
}
.wc2026-gs-badge--ft {
  background: var(--wc-gray2, #f3f4f6);
  color: var(--wc-muted, #888);
}
.wc2026-gs-badge--live {
  background: #e53e3e; color: #fff;
  animation: wc2026-pulse 1.4s infinite;
}
.wc2026-gs-badge-date {
  font-size: 11px; color: var(--wc-muted, #888);
}
.wc2026-gs-time {
  font-size: 12px; font-weight: 600;
  color: var(--wc-text2, #444);
}

/* Scrollable matches container */
.wc2026-match-list--scroll {
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--wc-border, #ddd) transparent;
}
.wc2026-match-list--scroll::-webkit-scrollbar { width: 4px; }
.wc2026-match-list--scroll::-webkit-scrollbar-thumb {
  background: var(--wc-border, #ddd); border-radius: 2px;
}

/* ── Shortcode wrapper — max-width + spacing ── */
.wc2026-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 24px;
  font-family: var(--wc-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  color: var(--wc-text, #111);
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}
@media (max-width: 900px) {
  .wc2026-wrap { padding: 0 0 16px; }
}

/* ── Match Detail Modal ── */
.wc2026-modal-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}
.wc2026-modal-overlay[hidden] { display: none !important; }
.wc2026-modal {
  background: var(--wc-bg, #fff);
  border-radius: 14px;
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: wc2026-slide-up .2s ease;
}
@keyframes wc2026-slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.wc2026-modal__hd {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--wc-border2, #ebebeb);
  position: sticky; top: 0; background: var(--wc-bg, #fff); z-index: 1;
}
.wc2026-modal__title { font-size: 16px; font-weight: 700; margin: 0; }
.wc2026-modal__close {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--wc-muted, #888);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.wc2026-modal__close:hover { background: var(--wc-gray2, #f3f4f6); }
.wc2026-modal__body { padding: 20px; }

/* Match detail card */
.wc2026-md-scoreboard {
  text-align: center; padding: 16px 0 20px;
}
.wc2026-md-teams {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  margin-bottom: 12px;
}
.wc2026-md-team {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; flex: 1;
}
.wc2026-md-flag img { width: 48px; height: 36px; object-fit: contain; }
.wc2026-md-team-name {
  font-size: 14px; font-weight: 700; text-align: center;
}
.wc2026-md-scores {
  display: flex; align-items: center; gap: 8px;
  font-size: 36px; font-weight: 900;
}
.wc2026-md-scores .wc2026-md-dash {
  font-size: 24px; color: var(--wc-muted, #888); font-weight: 300;
}
.wc2026-md-ht {
  font-size: 12px; color: var(--wc-muted, #888); margin-top: 4px;
}
.wc2026-md-info {
  font-size: 12px; color: var(--wc-muted, #888);
  text-align: center; margin-bottom: 20px;
}
.wc2026-md-goals {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.wc2026-md-goals-team { }
.wc2026-md-goals-label {
  font-size: 11px; font-weight: 700; color: var(--wc-muted, #888);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 8px;
}
.wc2026-md-goal {
  display: flex; align-items: baseline; gap: 6px;
  font-size: 13px; padding: 4px 0;
  border-bottom: 1px solid var(--wc-border2, #ebebeb);
}
.wc2026-md-goal:last-child { border-bottom: none; }
.wc2026-md-goal-min {
  font-size: 11px; color: var(--wc-muted, #888);
  font-weight: 600; min-width: 28px;
}
.wc2026-md-no-goals {
  font-size: 13px; color: var(--wc-muted, #888);
  font-style: italic;
}
.wc2026-md-upcoming {
  text-align: center; padding: 20px 0;
  font-size: 14px; color: var(--wc-muted, #888);
}
.wc2026-md-upcoming .wc2026-md-kick {
  font-size: 20px; font-weight: 800; color: var(--wc-text, #111);
  margin-top: 8px;
}

/* ── Standings: flag column ── */
.wc2026-st-pos  { width: 28px; text-align: center; font-weight: 700; color: var(--wc-muted,#888); }
.wc2026-st-flag { width: 32px; padding: 0 4px; }
.wc2026-st-name { text-align: left; font-weight: 600; }
.wc2026-table td, .wc2026-table th {
  padding: 8px 6px; text-align: center; border-bottom: 1px solid var(--wc-border2,#ebebeb);
  font-size: 13px; white-space: nowrap;
}
.wc2026-table tr.qualify td:first-child,
.wc2026-table tr.qualify th:first-child {
  border-left: 3px solid #2563eb;
}
.wc2026-qualify-dot {
  display: inline-block; width: 8px; height: 8px;
  background: #2563eb; border-radius: 50%; margin-right: 5px;
}
.wc2026-qualify-note { font-size: 11px; color: var(--wc-muted,#888); margin-top: 6px; }

/* ── Stats ── */
.wc2026-stats-title { font-size: 15px; font-weight: 700; margin: 0 0 14px; }
.wc2026-stats-wrap  { }

/* ── Knockout grid ── */
.wc2026-ko-scroller  { overflow-x: auto; padding-bottom: 8px; }
.wc2026-ko-grid      { display: flex; gap: 12px; min-width: max-content; padding: 4px 0; }
.wc2026-ko-round     { display: flex; flex-direction: column; gap: 8px; min-width: 160px; }
.wc2026-ko-round-label {
  font-size: 11px; font-weight: 700; color: var(--wc-muted,#888);
  text-transform: uppercase; letter-spacing: .5px; padding: 4px 0;
}
.wc2026-ko-match {
  border: 1px solid var(--wc-border2,#ebebeb);
  border-radius: 8px; overflow: hidden;
  background: var(--wc-bg,#fff);
  transition: box-shadow .15s;
}
.wc2026-ko-match:hover { box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.wc2026-ko-team {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 10px; font-size: 13px; font-weight: 500;
  border-bottom: 1px solid var(--wc-border2,#ebebeb);
}
.wc2026-ko-team:last-child { border-bottom: none; }
.wc2026-ko-team.win { font-weight: 700; }
.wc2026-ko-team span:first-of-type { flex: 1; }
.wc2026-ko-score { font-weight: 700; font-size: 14px; margin-left: auto; }

/* ── Match Detail Modal ── */
.wc2026-md-flag-img {
  width: 48px; height: 36px; object-fit: contain; display: block; margin: 0 auto 8px;
}
.wc2026-md-team { align-items: center; }
.wc2026-md-team-name.win { font-weight: 900 !important; }
.wc2026-md-dash { font-size: 22px; color: var(--wc-muted,#888); font-weight: 300; margin: 0 4px; }
.wc2026-md-ht   { font-size: 12px; color: var(--wc-muted,#888); text-align: center; margin-top: 4px; }
.wc2026-md-kick { font-size: 22px; font-weight: 800; color: var(--wc-text,#111); margin: 8px 0 0; }
.wc2026-md-no-goals { font-size: 13px; color: var(--wc-muted,#888); font-style: italic; }

/* ── Google Snippet date header ── */
.wc2026-gs-date-hdr--today {
  background: #1e3a5f !important;
  color: #fff !important;
}

/* ── Tab body padding ── */
.wc2026-panel__inner { padding-top: 12px; }

/* ── Player Cards (Stats) ── */
.wc2026-pc-header {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 700; color: var(--wc-muted,#888);
  text-transform: uppercase; letter-spacing: .5px;
  padding: 0 12px 8px; border-bottom: 1px solid var(--wc-border2,#ebebeb);
}
.wc2026-pc-list { display: flex; flex-direction: column; }
.wc2026-pc {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--wc-border2,#ebebeb);
  transition: background .1s;
}
.wc2026-pc:last-child { border-bottom: none; }
.wc2026-pc:hover { background: var(--wc-gray2,#f8f8f8); }
.wc2026-pc-pos {
  width: 24px; flex-shrink: 0;
  font-size: 13px; font-weight: 700;
  color: var(--wc-muted,#888); text-align: center;
}
.wc2026-pc-pos--gold { color: #d4a017; }
.wc2026-pc-photo {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  background: var(--wc-gray2,#f0f0f0);
  display: flex; align-items: center; justify-content: center;
}
.wc2026-pc-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.wc2026-pc-noimg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, #e8e8f0 0%, #d0d0e0 100%);
}
.wc2026-pc-info { flex: 1; min-width: 0; }
.wc2026-pc-name {
  font-size: 14px; font-weight: 700;
  color: var(--wc-text,#111);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wc2026-pc-team {
  font-size: 12px; color: var(--wc-muted,#888);
  display: flex; align-items: center; gap: 4px; margin-top: 2px;
}
.wc2026-pc-val {
  font-size: 20px; font-weight: 900;
  color: var(--wc-text,#111); min-width: 28px; text-align: right;
  flex-shrink: 0;
}

/* ── Upcoming embed: day groups ── */
.wc2026-embed__day { margin-bottom: 16px; }
.wc2026-embed__day:last-child { margin-bottom: 0; }
.wc2026-embed__day-hdr {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--wc-muted,#888);
  padding: 0 0 8px;
  border-bottom: 2px solid var(--wc-border2,#ebebeb);
  margin-bottom: 8px;
}
.wc2026-embed__day-grid {
  display: flex; flex-direction: column; gap: 8px;
}
.wc2026-embed__match--upcoming {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  align-items: center;
}
.wc2026-embed__match--upcoming .wc2026-embed__match-meta {
  grid-column: 1; grid-row: 1;
  display: flex; align-items: center; gap: 8px;
}
.wc2026-embed__match--upcoming .wc2026-embed__teams {
  grid-column: 1; grid-row: 2;
}
.wc2026-embed__match--upcoming .wc2026-embed__venue {
  grid-column: 1 / -1; grid-row: 3;
  font-size: 11px; color: var(--wc-muted,#888); margin-top: 2px;
}
.wc2026-embed__more {
  display: block; text-align: center;
  font-size: 13px; font-weight: 600;
  color: var(--wc-qualify,#1a73e8); text-decoration: none;
  padding: 12px 0 4px;
  border-top: 1px solid var(--wc-border2,#ebebeb);
  margin-top: 12px;
}
.wc2026-embed__more:hover { opacity: .8; }
.wc2026-embed--stats .wc2026-embed__title {
  margin-bottom: 12px;
}
