/* ============================================================
   SingSing × WK 2026 — Landing
   Bold WC2026 black/white base · SingSing neon accents
   ============================================================ */

.wk2026 {
  --wk-bg: #0a0a0a;
  --wk-bg-2: #111111;
  --wk-fg: #ffffff;
  --wk-fg-dim: #a0a0a0;
  --wk-fg-muted: #666666;

  --wk-accent: #FF3D5A;     /* SingSing electric pink */
  --wk-accent-2: #FF6B35;   /* SingSing orange (Oranje friendly!) */
  --wk-accent-3: #FFB800;   /* gold for highlights */
  --wk-accent-cool: #00C2FF;/* cool electric */

  --wk-line: rgba(255,255,255,0.08);
  --wk-line-strong: rgba(255,255,255,0.18);

  --wk-radius: 20px;
  --wk-radius-sm: 12px;

  --wk-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  --wk-font-display: 'Inter', -apple-system, system-ui, sans-serif;

  background: var(--wk-bg);
  color: var(--wk-fg);
  font-family: var(--wk-font-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* ensure dark even if site has light theme */
  position: relative;
  isolation: isolate;
}

.wk2026 *,
.wk2026 *::before,
.wk2026 *::after { box-sizing: border-box; }

.wk2026 a { color: inherit; text-decoration: none; }

/* Neutralize theme button styles — Elementor/themes often add glow, gradients,
   borders, and pink colors that break our design. Reset to a clean baseline. */
.wk2026 button {
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none !important;
  appearance: none !important;
  background: transparent;
  color: inherit;
  border: none;
  outline: none;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  background-image: none !important;
}

/* ────────────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────────────── */
.wk2026-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.2px;
  border: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.wk2026 .wk2026-btn-primary,
.wk2026 a.wk2026-btn-primary,
.wk2026 button.wk2026-btn-primary {
  background: #f582b3 !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 0 14px 4px rgba(245, 130, 179, 0.55) !important;
  text-decoration: none !important;
  background-image: none !important;
}
.wk2026 .wk2026-btn-primary:hover,
.wk2026 a.wk2026-btn-primary:hover,
.wk2026 button.wk2026-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px 6px rgba(245, 130, 179, 0.75) !important;
  background: #e66ea5 !important;
  color: #ffffff !important;
}

.wk2026 .wk2026-btn-ghost,
.wk2026 a.wk2026-btn-ghost {
  background: transparent !important;
  color: #ffffff !important;
  border: 1.5px solid var(--wk-line-strong);
  text-decoration: none !important;
}
.wk2026 .wk2026-btn-ghost:hover,
.wk2026 a.wk2026-btn-ghost:hover {
  background: #ffffff !important;
  color: #0a0a0a !important;
  border-color: #ffffff;
}

.wk2026-btn-large {
  padding: 22px 36px;
  font-size: 16px;
}

.wk2026-btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ────────────────────────────────────────────────────────────
   HERO — two-column scoreboard layout
──────────────────────────────────────────────────────────── */
.wk2026-hero {
  position: relative;
  padding: 80px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}

.wk2026-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--wk-bg) 0%, #0d0d0d 100%);
}
.wk2026-hero-bg::before {
  /* Subtle pitch-line grid — sports vibe without being literal */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.wk2026-hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.wk2026-hero-orb-1 {
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 61, 90, 0.35), transparent 70%);
  animation: wk-orb-drift 18s ease-in-out infinite;
}
.wk2026-hero-orb-2 {
  bottom: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.18), transparent 70%);
  animation: wk-orb-drift 22s ease-in-out infinite reverse;
}
@keyframes wk-orb-drift {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(40px, -30px); }
  66%      { transform: translate(-20px, 40px); }
}

.wk2026-hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.wk2026-hero-left { display: flex; flex-direction: column; gap: 28px; }

.wk2026-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: start;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--wk-line-strong);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--wk-fg);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.wk2026-hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f582b3;
  box-shadow: 0 0 12px #f582b3;
  animation: wk-pulse 2s ease-in-out infinite;
}
@keyframes wk-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.wk2026-hero-h1 {
  font-family: var(--wk-font-display);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--wk-fg);
}
.wk2026-hero-h1-mark {
  display: block;
  color: #f582b3;
}

.wk2026-hero-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--wk-fg-dim);
  max-width: 480px;
  margin: 0;
}

.wk2026-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wk2026-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}
.wk2026-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wk2026-hero-meta-item strong {
  font-family: var(--wk-font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--wk-fg);
}
.wk2026-hero-meta-item span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--wk-fg-muted);
  text-transform: uppercase;
}
.wk2026-hero-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--wk-line-strong);
}

/* ── Scoreboard card (right column) ── */
.wk2026-hero-right {
  position: relative;
}

.wk2026-scoreboard {
  position: relative;
  background: linear-gradient(165deg, #161616 0%, #0a0a0a 100%);
  border: 1px solid var(--wk-line-strong);
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.03) inset;
}
.wk2026-scoreboard::before {
  /* Top-left highlight stroke — premium card feel */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,61,90,0.6), transparent);
}
.wk2026-scoreboard::after {
  /* Subtle scan-line for the "live broadcast" feel */
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
}

.wk2026-scoreboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.wk2026-scoreboard-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f582b3;
}
.wk2026-scoreboard-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f582b3;
  box-shadow: 0 0 12px #f582b3;
  animation: wk-pulse 1.4s ease-in-out infinite;
}
.wk2026-scoreboard-stage {
  color: var(--wk-fg-muted);
}

.wk2026-scoreboard-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 24px 0 24px;
}
.wk2026-scoreboard-team {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.wk2026-scoreboard-flag {
  font-size: 56px;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}
.wk2026-scoreboard-name {
  font-family: var(--wk-font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.1;
  width: 100%;
  word-break: break-word;
}
.wk2026-scoreboard-vs {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f582b3;
  color: var(--wk-fg);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px -4px rgba(245, 130, 179, 0.5);
}

.wk2026-scoreboard-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wk-line-strong), transparent);
  margin: 0;
}

.wk2026-scoreboard-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0 4px;
}
.wk2026-scoreboard-when {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wk2026-scoreboard-when-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--wk-fg-muted);
  text-transform: uppercase;
}
.wk2026-scoreboard-when-time {
  font-family: var(--wk-font-display);
  font-size: 32px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
  line-height: 1;
}
.wk2026-scoreboard-when-date {
  font-size: 12px;
  color: var(--wk-fg-dim);
  margin-top: 2px;
}

.wk2026-countdown {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 4px;
}
.wk2026-countdown-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  min-width: 36px;
}
.wk2026-countdown-num {
  font-family: var(--wk-font-display);
  font-size: 26px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
  line-height: 1;
  color: var(--wk-fg);
}
.wk2026-countdown-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--wk-fg-muted);
  text-transform: uppercase;
  margin-top: 6px;
}
.wk2026-countdown-sep {
  font-family: var(--wk-font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--wk-fg-muted);
  line-height: 1;
  padding-bottom: 14px;
}

.wk2026 .wk2026-scoreboard-cta,
.wk2026 button.wk2026-scoreboard-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
  padding: 14px 20px !important;
  background: #f582b3 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
  box-shadow: 0 0 14px 4px rgba(245, 130, 179, 0.55) !important;
  filter: none !important;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}
.wk2026 .wk2026-scoreboard-cta:hover,
.wk2026 button.wk2026-scoreboard-cta:hover {
  background: #e66ea5 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 0 20px 6px rgba(245, 130, 179, 0.75) !important;
}

.wk2026-hero-empty {
  border: 2px dashed var(--wk-line);
  border-radius: 28px;
  padding: 64px 32px;
  text-align: center;
  color: var(--wk-fg-dim);
}
.wk2026-hero-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

/* ────────────────────────────────────────────────────────────
   SECTIONS
──────────────────────────────────────────────────────────── */
.wk2026-why,
.wk2026-schedule,
.wk2026-faq,
.wk2026-cta {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.wk2026-section-head {
  margin-bottom: 64px;
  max-width: 800px;
}

.wk2026-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--wk-fg-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.wk2026-section-title {
  font-family: var(--wk-font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.wk2026-section-title em {
  font-style: italic;
  color: var(--wk-fg-dim);
  font-weight: 800;
  display: block;
}

.wk2026-section-sub {
  font-size: 17px;
  color: var(--wk-fg-dim);
  margin: 0;
  max-width: 600px;
}

/* ── Why grid ── */
.wk2026-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.wk2026-why-card {
  padding: 32px 28px;
  border: 1px solid var(--wk-line);
  border-radius: var(--wk-radius);
  background: var(--wk-bg-2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.wk2026-why-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--wk-accent) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.wk2026-why-card:hover {
  transform: translateY(-4px);
  border-color: var(--wk-line-strong);
}
.wk2026-why-card:hover::after {
  opacity: 0.2;
}

.wk2026-why-card-accent {
  background: linear-gradient(135deg, var(--wk-accent) 0%, var(--wk-accent-2) 100%);
  border-color: transparent;
}
.wk2026-why-card-accent .wk2026-why-num {
  color: rgba(255,255,255,0.4);
}

.wk2026-why-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wk-fg-muted);
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
}

.wk2026-why-card h3 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
  line-height: 1.2;
}
.wk2026-why-card p {
  font-size: 15px;
  color: var(--wk-fg-dim);
  margin: 0;
  line-height: 1.55;
}
.wk2026-why-card-accent p {
  color: rgba(255,255,255,0.9);
}

/* ── Schedule list ── */
.wk2026-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wk2026-day {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--wk-line);
}
.wk2026-day:last-child {
  border-bottom: 1px solid var(--wk-line);
}

.wk2026-day-marker {
  display: flex;
  align-items: baseline;
  gap: 16px;
  position: sticky;
  top: 32px;
  align-self: start;
}

.wk2026-day-num {
  font-family: var(--wk-font-display);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--wk-fg);
}

.wk2026-day-info { display: flex; flex-direction: column; }
.wk2026-day-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.wk2026-day-month {
  font-size: 12px;
  color: var(--wk-fg-muted);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.wk2026-day-matches {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wk2026-match {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--wk-line);
  border-radius: var(--wk-radius);
  background: var(--wk-bg-2);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
  position: relative;
}
.wk2026-match-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.wk2026-match:hover {
  border-color: var(--wk-line-strong);
  transform: translateX(4px);
}

.wk2026-match-nl {
  background: linear-gradient(135deg, rgba(255,107,53,0.12) 0%, var(--wk-bg-2) 70%);
  border-color: rgba(255,107,53,0.3);
}
.wk2026-match-nl:hover {
  border-color: var(--wk-accent-2);
  background: linear-gradient(135deg, rgba(255,107,53,0.2) 0%, var(--wk-bg-2) 80%);
}

.wk2026-match-past {
  opacity: 0.4;
}
.wk2026-match-past .wk2026-match-cta { display: none; }

.wk2026-match-time {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wk2026-match-time-num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.wk2026-match-soon,
.wk2026-match-nl-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 7px;
  border-radius: 4px;
  width: fit-content;
}
.wk2026-match-soon {
  background: var(--wk-accent);
  color: var(--wk-fg);
  animation: wk-pulse 2s ease-in-out infinite;
}
.wk2026-match-nl-badge {
  background: var(--wk-accent-2);
  color: var(--wk-fg);
}

.wk2026-match-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--wk-fg-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.wk2026-match-teams {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-wrap: wrap;
}
.wk2026-team {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wk2026-team-flag {
  font-size: 28px;
  line-height: 1;
}
.wk2026-vs {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wk-fg-muted);
}

.wk2026-match-note {
  font-size: 12px;
  color: var(--wk-accent);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── SingSing brand button (#f582b3 + soft pink glow, matches Elementor kit) ── */
.wk2026 .wk2026-match-cta,
.wk2026 button.wk2026-match-cta {
  background: #f582b3 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 20px !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
  box-shadow: 0 0 14px 4px rgba(245, 130, 179, 0.55) !important;
  filter: none !important;
  text-decoration: none !important;
  background-image: none !important;
  overflow: visible !important;
  line-height: 1 !important;
  white-space: nowrap;
  justify-self: end;
  align-self: center;
}
.wk2026 .wk2026-match-cta::before,
.wk2026 .wk2026-match-cta::after {
  content: none !important;
  display: none !important;
}
.wk2026 .wk2026-match-cta::after {
  content: '→' !important;
  display: inline !important;
  margin-left: 6px !important;
  color: inherit !important;
  font-weight: 800;
  text-decoration: none !important;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}
.wk2026 .wk2026-match-cta .wk2026-match-cta-text,
.wk2026 .wk2026-match-cta > span {
  color: inherit !important;
  background: transparent !important;
  text-decoration: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font: inherit !important;
  display: inline !important;
}
.wk2026 .wk2026-match-cta:hover,
.wk2026 button.wk2026-match-cta:hover {
  background: #e66ea5 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 0 20px 6px rgba(245, 130, 179, 0.75) !important;
}

.wk2026-empty {
  text-align: center;
  padding: 80px 24px;
  border: 2px dashed var(--wk-line);
  border-radius: var(--wk-radius);
  color: var(--wk-fg-dim);
}

/* ── FAQ ── */
.wk2026-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--wk-line);
}
.wk2026-faq-item {
  border-bottom: 1px solid var(--wk-line);
  padding: 24px 0;
}
.wk2026-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  gap: 24px;
}
.wk2026-faq-item summary::-webkit-details-marker { display: none; }
.wk2026-faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--wk-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.wk2026-faq-item[open] .wk2026-faq-icon {
  transform: rotate(45deg);
}
.wk2026-faq-a {
  margin-top: 16px;
  font-size: 16px;
  color: var(--wk-fg-dim);
  line-height: 1.6;
  max-width: 720px;
}

/* ── Footer CTA ── */
.wk2026-cta {
  text-align: center;
  padding: 120px 24px;
}
.wk2026-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--wk-accent) 0%, var(--wk-accent-2) 100%);
  position: relative;
  overflow: hidden;
}
.wk2026-cta-inner::before {
  content: '26';
  position: absolute;
  bottom: -80px;
  right: -40px;
  font-size: 360px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  letter-spacing: -10px;
  pointer-events: none;
  font-style: italic;
}
.wk2026-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.wk2026-cta-title {
  font-family: var(--wk-font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}
.wk2026-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
}
/* Footer CTA section already has gradient background — keep button dark
   for proper contrast (pink on pink-orange gradient would be unreadable). */
.wk2026 .wk2026-cta .wk2026-btn-primary {
  background: #0a0a0a !important;
  color: #ffffff !important;
  box-shadow: none !important;
  position: relative;
  z-index: 1;
}
.wk2026 .wk2026-cta .wk2026-btn-primary:hover {
  background: #ffffff !important;
  color: #0a0a0a !important;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.4) !important;
}

/* ────────────────────────────────────────────────────────────
   MODAL
──────────────────────────────────────────────────────────── */
.wk2026-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: wk-modal-in 0.3s ease;
}
.wk2026-modal[hidden] { display: none; }

@keyframes wk-modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wk2026-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wk2026-modal-panel {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: var(--wk-bg);
  border: 1px solid var(--wk-line-strong);
  border-radius: 28px;
  padding: 48px 32px;
  animation: wk-panel-in 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes wk-panel-in {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.wk2026-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--wk-bg-2);
  color: var(--wk-fg);
  border: 1px solid var(--wk-line);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.wk2026-modal-close:hover {
  background: var(--wk-accent);
  border-color: var(--wk-accent);
}

.wk2026-modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--wk-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wk2026-modal-title {
  font-family: var(--wk-font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.wk2026-modal-title em {
  font-size: 16px;
  font-weight: 600;
  color: var(--wk-fg-muted);
  font-style: normal;
  display: inline-block;
  margin: 0 6px;
  vertical-align: middle;
}

.wk2026-modal-when {
  font-size: 14px;
  color: var(--wk-fg-dim);
  margin-bottom: 28px;
}

/* form */
.wk2026-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wk2026-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wk2026-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wk2026-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wk-fg-dim);
  text-transform: uppercase;
}
.wk2026-field input {
  background: var(--wk-bg-2);
  border: 1.5px solid var(--wk-line);
  color: var(--wk-fg);
  border-radius: var(--wk-radius-sm);
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
.wk2026-field input:focus {
  outline: none;
  border-color: var(--wk-accent);
}
.wk2026-field input.wk2026-error {
  border-color: var(--wk-accent);
  background: rgba(255,61,90,0.06);
}
.wk2026-field-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
}

.wk2026-form-fineprint {
  font-size: 12px;
  color: var(--wk-fg-muted);
  margin: 4px 0 0;
  text-align: center;
}
.wk2026-form-error {
  margin: 4px 0 0;
  padding: 12px 16px;
  background: rgba(255,61,90,0.12);
  border: 1px solid rgba(255,61,90,0.3);
  border-radius: var(--wk-radius-sm);
  color: var(--wk-accent);
  font-size: 13px;
  font-weight: 600;
}

.wk2026-modal-success { display: none; text-align: center; padding: 16px 0; }
.wk2026-modal-inner[data-state="success"] .wk2026-modal-form { display: none; }
.wk2026-modal-inner[data-state="success"] .wk2026-modal-success { display: block; }

.wk2026-success-icon {
  font-size: 64px;
  background: linear-gradient(135deg, var(--wk-accent) 0%, var(--wk-accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  animation: wk-success-pop 0.5s cubic-bezier(0.2, 1.5, 0.3, 1);
}
@keyframes wk-success-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.wk2026-success-title {
  font-family: var(--wk-font-display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 12px;
}
.wk2026-success-msg {
  color: var(--wk-fg-dim);
  margin: 0 0 28px;
  line-height: 1.55;
}

/* ── Confetti container (added by JS) ── */
.wk2026-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 10000;
}
.wk2026-confetti-piece {
  position: absolute;
  width: 10px;
  height: 14px;
  top: -20px;
  animation: wk-confetti-fall linear forwards;
}
@keyframes wk-confetti-fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wk2026-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wk2026-hero-right { order: -1; max-width: 540px; margin: 0 auto; width: 100%; }
}

@media (max-width: 900px) {
  .wk2026-day {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }
  .wk2026-day-marker {
    position: static;
    border-bottom: 1px solid var(--wk-line);
    padding-bottom: 12px;
  }
  .wk2026-day-num { font-size: 48px; }

  .wk2026-match {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }
  .wk2026 .wk2026-match-cta {
    justify-self: stretch;
    justify-content: center;
    width: 100%;
  }
  .wk2026-match-teams { font-size: 18px; }
  .wk2026-match-time-num { font-size: 24px; }

  .wk2026-why,
  .wk2026-schedule,
  .wk2026-faq,
  .wk2026-cta { padding: 60px 20px; }

  .wk2026-cta-inner { padding: 48px 24px; }

  .wk2026-hero-meta { gap: 16px; }
  .wk2026-hero-meta-item strong { font-size: 26px; }
}

/* ── Mobile hero & scoreboard tuning ── */
@media (max-width: 700px) {
  .wk2026-hero {
    padding: 48px 16px 56px;
    overflow-x: clip;
  }
  .wk2026-hero-grid { gap: 32px; }

  /* Hero headline — break naturally, smaller on mobile */
  .wk2026-hero-h1 {
    font-size: clamp(32px, 9vw, 44px) !important;
    line-height: 1;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .wk2026-hero-h1-mark {
    font-size: 1.05em;
    margin-top: 4px;
  }

  .wk2026-hero-lead { font-size: 15px; }

  .wk2026-hero-cta { width: 100%; }
  .wk2026-hero-cta .wk2026-btn { flex: 1; justify-content: center; padding: 16px 20px; font-size: 12px; }

  .wk2026-hero-meta { gap: 14px; flex-wrap: wrap; }
  .wk2026-hero-meta-item strong { font-size: 22px; }
  .wk2026-hero-meta-item span { font-size: 10px; letter-spacing: 1px; }
  .wk2026-hero-meta-divider { height: 28px; }

  /* Scoreboard sizing */
  .wk2026-hero-right { max-width: 100%; }
  .wk2026-scoreboard {
    padding: 20px 18px;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
  }
  .wk2026-scoreboard-top { font-size: 9px; letter-spacing: 1.5px; gap: 8px; }
  .wk2026-scoreboard-stage { text-align: right; }

  .wk2026-scoreboard-teams {
    grid-template-columns: 1fr 44px 1fr;
    gap: 8px;
    margin: 18px 0;
  }
  .wk2026-scoreboard-team { gap: 8px; min-width: 0; }
  .wk2026-scoreboard-flag { font-size: 38px; }
  .wk2026-scoreboard-name {
    font-size: clamp(11px, 3.4vw, 15px);
    letter-spacing: -0.3px;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .wk2026-scoreboard-vs {
    width: 44px; height: 44px; font-size: 12px;
  }

  .wk2026-scoreboard-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 0 4px;
  }
  .wk2026-scoreboard-when-time { font-size: 26px; }
  .wk2026-scoreboard-when-date { font-size: 11px; }

  .wk2026-countdown { justify-content: flex-start; gap: 2px; }
  .wk2026-countdown-num { font-size: 20px; }
  .wk2026-countdown-block { min-width: 28px; }
  .wk2026-countdown-sep { font-size: 18px; padding-bottom: 12px; }

  /* Shorten the long scoreboard CTA text on small screens */
  .wk2026-scoreboard-cta {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 14px 16px;
  }
  .wk2026-scoreboard-cta-full { display: none; }
  .wk2026-scoreboard-cta-short { display: inline; }
}

@media (min-width: 701px) {
  .wk2026-scoreboard-cta-short { display: none; }
}

@media (max-width: 600px) {
  .wk2026-modal-panel { padding: 36px 20px; }
  .wk2026-field-row { grid-template-columns: 1fr 100px; }
}

/* ────────────────────────────────────────────────────────────
   REDUCED MOTION
──────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .wk2026 *,
  .wk2026 *::before,
  .wk2026 *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
