/* =====================================================
   WC2026 DESIGN SYSTEM — Global Styles
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Bebas+Neue&display=swap');

/* ─── CSS Variables ─── */
:root {
  --bg-base:        #07090f;
  --bg-surface:     #0d1117;
  --bg-card:        #111620;
  --bg-card-2:      #161c28;
  --border:         #1e2535;
  --border-hover:   #2e3a50;

  --accent:         #ff6200;
  --accent-dark:    #d95200;
  --accent-light:   rgba(255,98,0,.12);
  --accent-glow:    0 0 40px rgba(255,98,0,.18);

  --blue:           #3b82f6;
  --blue-light:     rgba(59,130,246,.12);
  --green:          #22c55e;
  --green-light:    rgba(34,197,94,.1);
  --gold:           #f59e0b;

  --text-primary:   #edf0f5;
  --text-secondary: #8e97ac;
  --text-muted:     #4e596e;

  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:   'Bebas Neue', Impact, sans-serif;

  --radius-sm:      8px;
  --radius:         14px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  --trans:          0.2s ease;
  --trans-slow:     0.4s ease;

  --container:      1280px;
  --shadow-card:    0 4px 24px rgba(0,0,0,.4);
  --shadow-hover:   0 12px 40px rgba(0,0,0,.5);
}

/* ─── Reset / Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── Container ─── */
.wc-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) { .wc-container { padding: 0 16px; } }

/* ─── Section titles ─── */
.wc-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.wc-section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.wc-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: .01em;
}

.wc-section-title span { color: var(--accent); }

.wc-section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 560px;
}

/* ─── Buttons ─── */
.wc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: var(--trans);
  border: none;
  white-space: nowrap;
}

.wc-btn--primary {
  background: var(--accent);
  color: #fff;
}
.wc-btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,98,0,.35);
}

.wc-btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
}
.wc-btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.wc-btn--ghost {
  background: rgba(255,255,255,.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.wc-btn--ghost:hover {
  background: rgba(255,255,255,.1);
}

.wc-btn--lg { padding: 16px 36px; font-size: 15px; border-radius: var(--radius-lg); }
.wc-btn--sm { padding: 9px 18px; font-size: 13px; border-radius: var(--radius-sm); }

/* ─── Scroll Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── Hero Section ─── */
.wc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-base);
}

.wc-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroPan 20s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.04) translateX(0); }
  to   { transform: scale(1.06) translateX(-1%); }
}

.wc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,9,15,.3) 0%,
    rgba(7,9,15,.5) 40%,
    rgba(7,9,15,.85) 75%,
    rgba(7,9,15,1) 100%
  );
}

.wc-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 80px;
}

.wc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-light);
  border: 1px solid rgba(255,98,0,.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 100px);
  line-height: .95;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: 24px;
}
.wc-hero__title span { color: var(--accent); }

.wc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 24px;
  margin-bottom: 36px;
  font-size: 15px;
  color: rgba(255,255,255,.65);
}
.wc-hero__meta strong { color: #fff; font-weight: 600; }

.wc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

/* Hero Countdown */
.wc-hero__countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  width: fit-content;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}
.cd-num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.cd-sep {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--border-hover);
  padding: 0 4px;
  align-self: center;
  padding-bottom: 16px;
}

/* ─── Announcement Bar ─── */
.wc-topbar {
  background: linear-gradient(90deg, #0a0e18, #0f1525, #0a0e18);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
}
.wc-topbar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  flex-wrap: wrap;
}
.wc-topbar__inner strong { color: var(--accent); }
.wc-topbar__inner a {
  color: var(--blue);
  font-weight: 600;
  margin-left: 4px;
}

/* ─── Stats Bar ─── */
.wc-stats {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.wc-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.wc-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.wc-stats__item:last-child { border-right: none; }

.wc-stats__num {
  font-family: var(--font-display);
  font-size: 38px;
  color: #fff;
  line-height: 1;
}
.wc-stats__num span { color: var(--accent); }
.wc-stats__text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .wc-stats__grid { grid-template-columns: repeat(3, 1fr); gap: 16px 0; }
  .wc-stats__item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px; }
  .wc-stats__item:nth-child(3), .wc-stats__item:last-child { border-bottom: none; }
}

/* ─── Quick Nav Strip ─── */
.wc-quicknav {
  padding: 20px 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.wc-quicknav::-webkit-scrollbar { display: none; }
.wc-quicknav__list {
  display: flex;
  gap: 8px;
  padding: 0 24px;
  width: max-content;
}
.wc-quicknav__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: var(--trans);
}
.wc-quicknav__item:hover, .wc-quicknav__item.active {
  background: var(--accent-light);
  border-color: rgba(255,98,0,.35);
  color: var(--accent);
}
.wc-quicknav__item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Sections ─── */
.wc-section { padding: 80px 0; }
.wc-section--dark { background: var(--bg-surface); }
.wc-section--darker { background: var(--bg-base); }

/* ─── Match Cards ─── */
.wc-matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.wc-match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--trans);
  text-decoration: none;
  color: inherit;
}
.wc-match-card:hover {
  border-color: var(--accent);
  box-shadow: var(--accent-glow);
  transform: translateY(-2px);
}

.wc-match-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wc-match-card__stage {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 100px;
}
.wc-match-card__date {
  font-size: 12px;
  color: var(--text-muted);
}

.wc-match-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.wc-match-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.wc-match-card__flag {
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.wc-match-card__team-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}
.wc-match-card__vs {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.wc-match-card__venue {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.wc-match-card__venue svg { width: 12px; height: 12px; flex-shrink: 0; }

.wc-match-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.wc-match-card__price {
  font-size: 13px;
  color: var(--text-secondary);
}
.wc-match-card__price strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}

/* ─── Groups Grid ─── */
.wc-groups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .wc-groups-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .wc-groups-grid { grid-template-columns: repeat(2, 1fr); } }

.wc-group-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-decoration: none;
  transition: var(--trans);
  display: block;
}
.wc-group-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,98,0,.1);
}
.wc-group-card__letter {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1;
}
.wc-group-card__team {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 12px;
  color: var(--text-secondary);
}
.wc-group-card__team img {
  width: 20px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
}
.wc-group-card__team--host { color: var(--accent); font-weight: 600; }

/* ─── Cities Grid ─── */
.wc-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .wc-cities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .wc-cities-grid { grid-template-columns: repeat(2, 1fr); } }

.wc-city-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  text-decoration: none;
  display: block;
  background: linear-gradient(135deg, #1a2340 0%, #0d1117 100%);
}
.wc-city-card--large { grid-column: span 2; aspect-ratio: 16/9; }

.wc-city-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.wc-city-card:hover .wc-city-card__img { transform: scale(1.06); }

.wc-city-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,9,15,.9) 0%, rgba(7,9,15,.3) 60%, transparent 100%);
}

.wc-city-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
}
.wc-city-card__country {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 4px;
}
.wc-city-card__country img {
  width: 16px;
  height: 11px;
  object-fit: cover;
  border-radius: 2px;
}
.wc-city-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  line-height: 1.1;
}
.wc-city-card__matches {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}
.wc-city-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wc-city-card__badge--final {
  background: rgba(255,98,0,.9);
  color: #fff;
}
.wc-city-card__badge--opening {
  background: rgba(34,197,94,.9);
  color: #fff;
}

/* ─── Services Cards ─── */
.wc-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .wc-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .wc-services-grid { grid-template-columns: 1fr; } }

.wc-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.wc-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--accent));
  opacity: 0;
  transition: var(--trans);
}
.wc-service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.wc-service-card:hover::before { opacity: 1; }

.wc-service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--icon-bg, var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color, var(--accent));
}
.wc-service-card__icon svg { width: 26px; height: 26px; }

.wc-service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}
.wc-service-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.wc-service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cta-color, var(--accent));
}
.wc-service-card__cta svg { width: 14px; height: 14px; }

/* ─── Final Promo ─── */
.wc-final-promo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.wc-final-promo__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wc-final-promo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,9,15,.92) 40%, rgba(7,9,15,.4) 100%);
}
.wc-final-promo__content {
  position: relative;
  z-index: 1;
  padding: 48px 56px;
  max-width: 600px;
}
@media (max-width: 768px) {
  .wc-final-promo__content { padding: 32px 24px; }
}
.wc-final-promo__tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
}
.wc-final-promo__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}
.wc-final-promo__text {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ─── Trust Signals ─── */
.wc-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .wc-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

.wc-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.wc-trust-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.wc-trust-item__icon svg { width: 24px; height: 24px; }
.wc-trust-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.wc-trust-item__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Section Header Row ─── */
.wc-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}
.wc-section-header a {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.wc-section-header a:hover { text-decoration: underline; }

/* ─── Newsletter ─── */
.wc-newsletter {
  background: linear-gradient(135deg, #0d1525 0%, #0a0e18 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.wc-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.wc-newsletter__text h3 {
  font-family: var(--font-display);
  font-size: 36px;
  color: #fff;
  margin-bottom: 8px;
}
.wc-newsletter__text p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 400px;
}
.wc-newsletter__form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 480px;
  min-width: 280px;
}
.wc-newsletter__input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  outline: none;
  transition: var(--trans);
}
.wc-newsletter__input::placeholder { color: var(--text-muted); }
.wc-newsletter__input:focus { border-color: var(--accent); }

/* ─── Section divider ─── */
.wc-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── Popular matches (API-driven event cards) ─── */
.block-Club-Gallery { background: var(--bg-base); padding: 80px 0; }
.block-Club-Gallery .container-fluid { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.block-Club-Gallery .text-wrap { margin-bottom: 16px; }
.block-Club-Gallery .text-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text-primary);
}
.orange-text { color: var(--accent); }

.filters-by-category { margin-bottom: 28px; }
.filters-list { display: flex; flex-wrap: wrap; gap: 8px; }
.filters-list .btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
}
.filters-list .btn.selected,
.filters-list .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.event-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

/* ─── event-card (unified) ─── */
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,98,0,.1);
}
.event-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.event-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.event-card:hover .event-card__img img { transform: scale(1.04); }

.event-card__fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(7,9,15,.6);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.event-card__fav:hover { background: rgba(255,98,0,.8); }

.event-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 14px 16px 8px;
  line-height: 1.35;
}
.event-card__meta {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.event-card__row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
}
.event-card__row .icon { color: var(--text-muted); width: 12px; flex-shrink: 0; }
.event-card__cta { padding: 14px 16px; }
.event-card__btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: var(--trans);
}
.event-card__btn:hover { background: var(--accent-dark); }

/* ─── Upcoming matches block ─── */
.block-schedule { background: var(--bg-surface); padding: 80px 0; }
.schedule-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.schedule-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-primary);
  margin-bottom: 20px;
}
.league-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.league-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.view-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ─── Venue strip ─── */
.venue-strip { padding: 80px 0; background: var(--bg-base); }
.venue-scroll { overflow-x: auto; display: flex; gap: 14px; padding: 0 24px 12px; scrollbar-width: none; }
.venue-scroll::-webkit-scrollbar { display: none; }
.venue-pill {
  flex: 0 0 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  transition: var(--trans);
  display: block;
}
.venue-pill:hover { border-color: var(--accent); }
.venue-pill__city { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.venue-pill__name { font-size: 12px; color: var(--text-muted); }
.venue-pill__cap { font-size: 12px; color: var(--text-secondary); margin-top: 6px; }
.venue-pill__badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.venue-pill__badge--final { background: var(--accent-light); color: var(--accent); border: 1px solid rgba(255,98,0,.3); }
.venue-pill__badge--opening { background: var(--green-light); color: var(--green); border: 1px solid rgba(34,197,94,.25); }

/* ─── Partners ─── */
.block-partners { background: var(--bg-surface); padding: 48px 0; border-top: 1px solid var(--border); }
.partners-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.partner-link { display: flex; align-items: center; justify-content: center; padding: 12px; }
.partner-link img { max-height: 36px; width: auto; opacity: .55; filter: grayscale(1); transition: var(--trans); }
.partner-link:hover img { opacity: 1; filter: none; }

/* ─── Subscribe ─── */
.block-subscribe { background: var(--bg-base); padding: 72px 0; }
.subscribe-wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.subscribe-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.subscribe-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}
.subscribe-text p { font-size: 14px; color: var(--text-secondary); max-width: 380px; }
.subscribe-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 460px;
}
.subscribe-form input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  outline: none;
}
.subscribe-form input:focus { border-color: var(--accent); }
.subscribe-form input::placeholder { color: var(--text-muted); }
.subscribe-form button {
  padding: 13px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: var(--trans);
  white-space: nowrap;
  font-family: var(--font-body);
}
.subscribe-form button:hover { background: var(--accent-dark); }

/* ─── Footer ─── */
.page-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-wrap .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.footer-main {
  display: grid;
  grid-template-columns: 200px auto auto 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (max-width: 1024px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px)  { .footer-main { grid-template-columns: 1fr; } }

.footer-logo img { height: 48px; width: auto; }
.footer-info p, .footer-call p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.footer-info .orange-text { color: var(--accent); font-weight: 600; font-size: 14px; }
.email-link { color: var(--blue); font-size: 12px; }
.footer-number { font-family: var(--font-display); font-size: 24px; color: var(--text-primary); }
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 600px) { .footer-columns { grid-template-columns: repeat(2, 1fr); } }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-secondary); }
.footer-bottom a:hover { color: var(--accent); }

/* ─── Header overrides for new design ─── */
header.main-head {
  background: rgba(7,9,15,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-bottom: 0;
}
.header-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow: hidden;
}
.logo-wrap img { height: 48px; }

.header-search {
  flex: 1;
  max-width: 360px;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  margin-right: 0;
  transition: var(--trans);
}
.header-search:focus-within {
  border-color: var(--accent);
}
.header-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 14px;
  padding: 10px 0;
  font-family: var(--font-body);
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search button {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 0 0 0 8px;
}
.header-search button:hover { color: var(--accent); }

.nav-line {
  margin: 0 !important;
  width: auto !important;
  border-top: none !important;
  padding-top: 0 !important;
  display: flex !important;
  flex-shrink: 0;
}
.nav-line ul.menu,
header.main-head .menu {
  display: flex !important;
  gap: 4px !important;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.nav-line ul.menu > li > a {
  display: block;
  padding: 8px 12px;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--text-secondary) !important;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  white-space: nowrap;
  text-transform: none !important;
}
.nav-line ul.menu > li > a:hover,
.nav-line ul.menu > li.active > a { color: var(--text-primary) !important; }

/* Dropdown */
.nav-item { position: relative; }
.dropdown-menu {
  display: none !important;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  z-index: 999;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-item:hover .dropdown-menu {
  display: block !important;
  animation: dropIn .18s ease;
}
.nav-item:hover .dropdown-menu.wc-mega {
  display: grid !important;
}

/* WC mega menu */
.wc-mega { min-width: 680px; grid-template-columns: 1fr 1fr 1fr; }
.wc-mega__col { padding: 24px 22px; border-right: 1px solid var(--border); }
.wc-mega__col:last-child { border-right: none; }
.wc-mega__col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.wc-mega__col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--trans);
}
.wc-mega__col ul li a:hover { color: var(--text-primary); }
.wc-mega__col ul li a img.nav-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Auth buttons */
.auth-section { display: flex; align-items: center; gap: 8px; }
.auth-btn {
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--trans);
  white-space: nowrap;
}
.auth-btn:hover { background: var(--accent-dark); }
.auth-btn-outline {
  padding: 7px 15px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--trans);
  white-space: nowrap;
}
.auth-btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ─── Mobile bottom tabs ─── */
.mb-tabs {
  display: none;
}
@media (max-width: 768px) {
  .mb-tabs {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: rgba(13,17,23,.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    z-index: 1100;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}
.mb-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 10px;
  text-decoration: none;
  transition: color var(--trans);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}
.mb-tab:hover, .mb-tab.active { color: var(--accent); }
.mb-tab--primary {
  position: relative;
  color: var(--text-secondary);
}
.mb-badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 18px);
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.mb-badge[data-zero-hide]:empty,
.mb-badge[data-zero-hide][data-count="0"] { display: none; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .nav-line { display: none !important; }
}

@media (max-width: 768px) {
  .wc-hero__title { font-size: 48px; }
  .wc-hero__actions { flex-direction: column; }
  .wc-hero__countdown { flex-wrap: wrap; justify-content: center; }
  .cd-num { font-size: 32px; }
  .wc-section { padding: 56px 0; }
  .wc-newsletter__inner { flex-direction: column; }
  .wc-newsletter__form { max-width: 100%; width: 100%; }
  .subscribe-content { flex-direction: column; }
  .subscribe-form { max-width: 100%; width: 100%; }
  .wc-final-promo { min-height: 280px; }
}

/* ─── Utility ─── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.font-display { font-family: var(--font-display); }
.hidden { display: none !important; }

/* ─── Premium design upgrades ─── */

/* Glass card */
.wc-glass {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
}

/* Glow hover on cards */
.wc-city-card:hover {
  box-shadow: 0 0 40px rgba(255,98,0,.18), 0 20px 60px rgba(0,0,0,.5);
}
.wc-group-card:hover {
  box-shadow: 0 0 24px rgba(255,98,0,.14);
}

/* City card gradient — richer fallback */
.wc-city-card {
  background: linear-gradient(135deg, #1c2a45 0%, #0d1117 60%, #1a0d00 100%);
}
.wc-city-card__overlay {
  background: linear-gradient(to top, rgba(7,9,15,.95) 0%, rgba(7,9,15,.5) 50%, rgba(7,9,15,.15) 100%);
}

/* Stats glowing numbers */
.wc-stats__num {
  text-shadow: 0 0 40px rgba(255,98,0,.4);
}

/* Hero badge glow */
.wc-hero__badge {
  box-shadow: 0 0 20px rgba(255,98,0,.25);
}

/* Section accent line */
.wc-section-label::before {
  box-shadow: 0 0 8px var(--accent);
}

/* Auth buttons compact */
.auth-section { gap: 6px; flex-shrink: 0; }
.auth-btn, .auth-btn-outline { padding: 7px 14px; font-size: 12px; }
.cart-link { flex-shrink: 0; }

/* ─── Match cards (static schedule) ─── */
.wc-matches-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1100px) { .wc-matches-scroll { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .wc-matches-scroll { grid-template-columns: 1fr; } }

.wc-match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.wc-match-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--trans);
}
.wc-match-card:hover {
  border-color: rgba(255,98,0,.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 20px rgba(255,98,0,.08);
}
.wc-match-card:hover::after { opacity: 1; }

.wc-match-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wc-match-card__stage {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.wc-match-card__date {
  font-size: 11px;
  color: var(--text-muted);
}

.wc-match-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.wc-match-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.wc-match-card__team img {
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.wc-match-card__team span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.2;
}
.wc-match-card__vs {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  padding: 0 4px;
}

.wc-match-card__venue {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.wc-match-card__venue svg { flex-shrink: 0; }

.wc-match-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.wc-match-card__price {
  font-size: 12px;
  color: var(--text-secondary);
}
.wc-match-card__price strong {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 700;
}
.wc-match-card__btn {
  padding: 6px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--trans);
}
.wc-match-card:hover .wc-match-card__btn { background: var(--accent-dark); }

.wc-match-card--featured {
  border-color: rgba(255,98,0,.3);
  background: linear-gradient(135deg, rgba(255,98,0,.06) 0%, var(--bg-card) 60%);
}

/* ─── Hero visual upgrade ─── */
.wc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.wc-hero__bg {
  background-image: url('https://images.unsplash.com/photo-1522778119026-d647f0596c20?auto=format&fit=crop&w=1920&q=85');
}
.wc-hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(7,9,15,.92) 0%,
    rgba(7,9,15,.75) 40%,
    rgba(7,9,15,.55) 70%,
    rgba(255,98,0,.05) 100%
  );
}
/* Gradient side glow on hero */
.wc-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,98,0,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.wc-hero__content { position: relative; z-index: 2; }
