/* ===========================================
   WINDROSE GIANTS ANTWERP — Stylesheet
   Modern & sporty, red & black theme
=========================================== */

:root {
  --red: #E10600;
  --red-dark: #B30500;
  --red-light: #FF2D1A;
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --gray-dark: #2A2A2A;
  --gray: #6B6B6B;
  --gray-light: #E5E5E5;
  --off-white: #F7F7F7;
  --white: #FFFFFF;
  --gold: #D4AF37;
  /* Zilveraccenten — vervangen het oude geel/goud op accentplekken
     (uitslag-balk WIN-state, themawedstrijd-pill, ticket-CTA-gradient).
     Bewust géén geel: dat is de signaalkleur van Filou Oostende. */
  --silver: #D4D7DA;
  --silver-bright: #E5E7E9;
  --silver-dim: #A8AEB4;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 10px 30px rgba(225, 6, 0, 0.35);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition);
  cursor: pointer;
}

a:hover { color: var(--red-dark); }

/* Zorg dat alle interactieve elementen een handje tonen bij hover */
a[href],
button,
[role="button"],
[type="button"],
[type="submit"],
[type="reset"],
label[for],
summary,
select {
  cursor: pointer;
}

a[href]:disabled,
button:disabled,
[role="button"][aria-disabled="true"],
.is-disabled {
  cursor: not-allowed;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================================
   TOP SHOP BAR (above header)
=========================================== */
.top-shop-bar {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.top-shop-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.55rem 2rem;
  flex-wrap: wrap;
}

.top-shop-left {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-shop-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.top-shop-logo img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.top-shop-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--red);
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: all var(--transition);
  cursor: pointer;
}

/* Hover → Decathlon-blauw */
.btn-shop:hover,
.btn-shop:focus-visible {
  background: #0082C3;        /* Decathlon-brand blauw */
  color: var(--white);
  border-color: #0082C3;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 130, 195, 0.35);
}
.btn-shop:hover svg,
.btn-shop:focus-visible svg { stroke: var(--white); }

.top-shop-right {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.top-shop-right .lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Jeugdcontact in de footer — opvallend rood zodat ouders/spelers het meteen zien */
.footer-jeugd-contact a {
  color: var(--red) !important;
  font-weight: 600;
}
.footer-jeugd-contact a:hover,
.footer-jeugd-contact a:focus-visible {
  color: var(--red-light) !important;
  text-decoration: underline;
}

/* Competitielogo's tussen webshop en taalkeuze */
.top-shop-comps {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.comp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  padding: 3px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
}
.comp-link:hover,
.comp-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border-color: var(--white);
  outline: none;
}
.comp-link img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 720px) {
  .top-shop-comps { gap: 0.3rem; }
  .comp-link { width: 30px; height: 24px; padding: 2px; }
}

.top-shop-right .lang-btn {
  width: 26px;
  height: 20px;
  opacity: 0.75;
}

.top-shop-right .lang-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.top-shop-right .lang-btn.active {
  opacity: 1;
  border-color: var(--white);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.top-search {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition);
}

.top-search:hover { border-color: var(--white); }

.top-search-input {
  width: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  transition: width 0.3s ease, padding 0.3s ease;
}

.top-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.top-search.open .top-search-input {
  width: 180px;
  padding: 0.35rem 0.6rem 0.35rem 0.75rem;
}

.top-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.top-search-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.top-search-input.shake {
  animation: inputShake 0.35s ease;
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

@media (max-width: 600px) {
  .top-shop-inner {
    gap: 0.6rem;
    padding: 0.5rem 1rem;
  }
  .top-shop-text {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
  .btn-shop {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }
  .top-search.open .top-search-input {
    width: 120px;
    font-size: 0.8rem;
  }
  .top-search-btn {
    width: 28px;
    height: 28px;
  }
  .top-shop-right {
    gap: 0.5rem;
  }
  .top-shop-right .lang-btn {
    width: 22px;
    height: 18px;
  }
}

/* ===========================================
   HEADER / NAV
=========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

/* Legacy placeholder styles (kept for fallback) */
.logo-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 50%;
  font-weight: 900;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-red);
}

.logo-text small {
  display: block;
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.15em;
  font-weight: 400;
}

@media (max-width: 640px) {
  .logo-img { height: 44px; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* ===== Dropdown submenu onder een nav-item =====
   Gebruik: wrap het parent-item in <div class="nav-item has-dropdown">
   met een <div class="nav-dropdown"> die submenu-links bevat. */
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Parent-link met dropdown krijgt expliciet pointer-cursor */
.nav-item.has-dropdown > a {
  cursor: pointer;
}

/* Onzichtbare "hover-bridge" onder de parent-link — net iets breder dan de link
   zelf, maar smal genoeg om niet te overlappen met naburige nav-items. De wijdere
   afdekking gebeurt door .nav-dropdown::before (op de dropdown zelf). */
.nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 12px;
  pointer-events: auto;
  cursor: pointer;
}

/* Wanneer JS .is-open zet (hover-intent), gedraagt het submenu zich als bij :hover */
.nav-item.has-dropdown.is-open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity var(--transition), transform var(--transition), visibility 0s linear 0s;
}
.nav-item.has-dropdown.is-open > a::before {
  transform: rotate(-135deg) translate(-2px, -2px);
}

/* Kleine chevron-pijl naast de parent-link */
.nav-item.has-dropdown > a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-right: 0.5rem;
  opacity: 0.75;
  transition: transform var(--transition);
  vertical-align: middle;
}
.nav-item.has-dropdown:hover > a::before,
.nav-item.has-dropdown:focus-within > a::before {
  transform: rotate(-135deg) translate(-2px, -2px);
}

/* Het drop-menu zelf */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  background: var(--black);
  border: 1px solid rgba(225, 6, 0, 0.4);
  border-top: 3px solid var(--red);
  border-radius: 0 0 6px 6px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility 0s linear var(--transition);
  z-index: 20;
  cursor: pointer;
}
/* Tweede onzichtbare bridge — bovenaan de dropdown zelf (volledige breedte
   van de dropdown). Dekt elke restruimte tussen parent-link en menu af, ook
   als de dropdown breder is dan de bridge op de parent. */
.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 10px;
  pointer-events: auto;
  cursor: pointer;
}
.nav-item.has-dropdown:hover > .nav-dropdown,
.nav-item.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity var(--transition), transform var(--transition), visibility 0s linear 0s;
}

/* Submenu-links: geen underline-animatie, volledige regel-hover */
.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
  text-transform: uppercase;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: rgba(225, 6, 0, 0.15);
  color: var(--red);
}

/* Speciale highlight voor "Kalender Play-offs" in de Team WGA-dropdown —
   bronze-goud zodat hij opvalt en de climax van het seizoen communiceert.
   We gebruiken !important + een verhoogde specificiteit zodat zowel de
   ":hover"-state van .main-nav als de mobile-overrides hier niet meer
   doorheen kunnen breken. */
.main-nav .nav-dropdown a[href="kalender-play-offs.html"],
.main-nav .nav-dropdown a[href="kalender-play-offs.html"]:link,
.main-nav .nav-dropdown a[href="kalender-play-offs.html"]:visited,
.main-nav .nav-dropdown a[href="kalender-play-offs.html"]:focus,
.main-nav .nav-dropdown a[href="kalender-play-offs.html"]:hover,
.main-nav .nav-dropdown a[href="kalender-play-offs.html"].active {
  color: #CD7F32 !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-shadow: 0 0 12px rgba(205, 127, 50, 0.35);
}
.main-nav .nav-dropdown a[href="kalender-play-offs.html"]:hover,
.main-nav .nav-dropdown a[href="kalender-play-offs.html"]:focus,
.main-nav .nav-dropdown a[href="kalender-play-offs.html"].active {
  background: rgba(205, 127, 50, 0.18) !important;
  color: #E5A263 !important;
}

/* Belt-and-braces: explicit class on the link in HTML.
   Highest specificity rule that beats any later override. */
html body .main-nav a.nav-bronze,
html body .main-nav a.nav-bronze:link,
html body .main-nav a.nav-bronze:visited,
html body .main-nav a.nav-bronze:focus,
html body .main-nav a.nav-bronze:hover,
html body .main-nav a.nav-bronze.active {
  color: #CD7F32 !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-shadow: 0 0 12px rgba(205, 127, 50, 0.35) !important;
}
html body .main-nav a.nav-bronze:hover,
html body .main-nav a.nav-bronze:focus,
html body .main-nav a.nav-bronze.active {
  color: #E5A263 !important;
  background: rgba(205, 127, 50, 0.18) !important;
}

/* ===========================================
   PLAY-OFFS — Bronze CTA card (eerste thuiswedstrijd)
=========================================== */
.po-first-card {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.25rem 2.5rem;
  background:
    linear-gradient(135deg, rgba(205, 127, 50, 0.08) 0%, rgba(205, 127, 50, 0.02) 100%),
    var(--white);
  border: 1.5px solid rgba(205, 127, 50, 0.35);
  border-left: 6px solid #CD7F32;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(205, 127, 50, 0.18);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.po-first-date {
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #CD7F32 0%, #B5722D 100%);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(205, 127, 50, 0.35);
  min-width: 110px;
}

.po-first-date-day {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.po-first-date-month {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  opacity: 0.92;
}
.po-first-date-weekday {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  opacity: 0.85;
}

.po-first-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #CD7F32;
  margin-bottom: 0.5rem;
}

.po-first-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.4rem;
  color: var(--charcoal);
}

.po-first-loc {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}
.po-first-loc svg {
  vertical-align: -3px;
  margin-right: 0.3rem;
  color: #CD7F32;
}

.btn-bronze {
  background: linear-gradient(135deg, #CD7F32 0%, #B5722D 100%);
  color: var(--white) !important;
  border-color: #CD7F32;
  box-shadow: 0 6px 16px rgba(205, 127, 50, 0.35);
}
.btn-bronze:hover,
.btn-bronze:focus-visible {
  background: linear-gradient(135deg, #E5A263 0%, #CD7F32 100%);
  border-color: #E5A263;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(205, 127, 50, 0.45);
}

@media (max-width: 760px) {
  .po-first-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.75rem;
    text-align: center;
  }
  .po-first-date { justify-self: center; }
  .po-first-loc { justify-content: center; }
}

/* ===== VBL klassement & uitslagen kaart op teampagina's ===== */
.vbl-card-section { padding: 1.5rem 0 0.5rem; }
.vbl-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
  padding: 1.4rem 1.8rem;
  background: linear-gradient(135deg, rgba(225,6,0,0.10) 0%, rgba(225,6,0,0.02) 100%);
  border: 1px solid rgba(225,6,0,0.25);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vbl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(225,6,0,0.15);
}
.vbl-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 64px;
}
.vbl-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 720px) {
  .vbl-card-icon { width: 110px; height: 48px; }
}
.vbl-card-body { flex: 1; min-width: 0; }
.vbl-card-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}
.vbl-card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.35rem;
}
.vbl-card-body p {
  margin: 0;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.45;
}
.vbl-card-cta {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .vbl-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding: 1.25rem;
  }
  .vbl-card-cta { align-self: stretch; text-align: center; }
}

/* ===== Niveau-3 submenu (bv. Jeugd → Teams → individuele ploegen) ===== */
.nav-subitem {
  position: relative;
  display: block;
}
/* Pijltje rechts om aan te geven dat er een sub-submenu is */
.nav-subitem.has-subdropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  cursor: pointer;
}
.nav-subitem.has-subdropdown > a::before {
  content: '›';
  position: static;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  order: 2;
  transform: none;
  transition: color var(--transition), transform var(--transition);
}
.nav-subitem.has-subdropdown:hover > a::before,
.nav-subitem.has-subdropdown:focus-within > a::before {
  color: var(--red);
  transform: translateX(2px);
}
/* Het sub-submenu zelf — schuift uit naar rechts (of naar links als hij
   rechts uit beeld zou vallen, via .flip-left class gezet door top-bar.js). */
.nav-subdropdown {
  position: absolute;
  top: -0.5rem;
  left: 100%;
  min-width: 160px;
  background: var(--black);
  border: 1px solid rgba(225, 6, 0, 0.4);
  border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 6px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 21;
  cursor: pointer;
}
/* Flip naar links wanneer rechts geen plaats meer is (JS detect) */
.nav-subdropdown.flip-left {
  left: auto;
  right: 100%;
  border-left: 1px solid rgba(225, 6, 0, 0.4);
  border-right: 3px solid var(--red);
  border-radius: 6px 0 6px 6px;
  transform: translateX(-8px);
}
.nav-subitem.has-subdropdown:hover > .nav-subdropdown.flip-left,
.nav-subitem.has-subdropdown:focus-within > .nav-subdropdown.flip-left {
  transform: translateX(0);
}
/* Bridge tussen sub-item (Teams / Lage Borden / ...) en zijn rechter sub-dropdown.
   Voorkomt dat het sub-menu sluit als de muis kort over de naadse rand glijdt. */
.nav-subdropdown::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 12px;
  pointer-events: auto;
  cursor: pointer;
}
.nav-subitem.has-subdropdown:hover > .nav-subdropdown,
.nav-subitem.has-subdropdown:focus-within > .nav-subdropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.nav-subdropdown a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
  text-transform: uppercase;
}
.nav-subdropdown a:hover,
.nav-subdropdown a.active {
  background: rgba(225, 6, 0, 0.15);
  color: var(--red);
}

/* Language switcher with flags */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-btn {
  width: 32px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  background: none;
  transition: all var(--transition);
  opacity: 0.55;
}

.lang-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.lang-btn.active {
  opacity: 1;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.3);
}

.lang-btn svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===========================================
   HERO
=========================================== */
.hero {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  text-align: center;
  /* Override van de globale `section { padding: 5rem 0 }` zodat de
     slideshow meteen tegen de countdown-balk aansluit. De interne
     spacing voor de CTA-titel/knoppen zit al op .hero-content. */
  padding: 0;
}

/* De oude rode gloed + rasterpatroon is uitgeschakeld — de slideshow vult nu de hele hero */
.hero::before,
.hero::after { content: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 2rem 4.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(225, 6, 0, 0.15);
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--red-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.hero-logo {
  width: clamp(220px, 32vw, 380px);
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(225, 6, 0, 0.35));
  animation: hero-logo-float 4s ease-in-out infinite;
}

@keyframes hero-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================
   HERO SLIDESHOW — bovenaan de hero
   Aspect 16:9 (klassieke widescreen) — minder vierkant dan voorheen
   maar genoeg verticale ruimte zodat foto's grotendeels zichtbaar blijven.
   Cap op 560px zorgt dat de hero niet té dominant wordt op groot scherm.
========================================================== */
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  min-height: 320px;
  overflow: hidden;
  background: #0A0A0A;
  z-index: 0;
}
@media (max-width: 720px) {
  .hero-slideshow {
    aspect-ratio: 4 / 3;
    max-height: 380px;
    min-height: 260px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Per-foto crop-bias zodat bij smallere/hogere verhoudingen het juiste deel
   van de foto zichtbaar blijft (in plaats van de standaard center-crop). */
.hero-slide img[src*="hero-1.jpg"] { object-position: center 45%; }   /* Lotto Cup-borden — beide moeten leesbaar blijven */
.hero-slide img[src*="hero-2.jpg"] { object-position: center 70%; }   /* Windrose vrachtwagen — staat in onderste helft */
.hero-slide img[src*="hero-3.jpg"] { object-position: center center; } /* Lotto Arena overzicht — gecentreerd */
.hero-slide img[src*="hero-4.jpg"] { object-position: center 60%; }   /* Cheergirls — onderste helft */
.hero-slide img[src*="hero-5.jpg"] { object-position: center 55%; }   /* Team met trofee — slim onder midden */
.hero-slide img[src*="hero-6.jpg"] { object-position: center 50%; }   /* Fanclub — gecentreerd, pas indien nodig aan */

/* Play-offs bracket — infographic met tekst, dus volledig tonen ipv croppen */
.hero-slide-bracket { background: #0A0A0A; }
.hero-slide-bracket img { object-fit: contain !important; }

/* De logo-slide krijgt speciaal gedrag: logo gecentreerd ipv foto die het hele kader vult */
.hero-slide[data-kind="logo"] {
  background:
    radial-gradient(circle at 50% 50%, rgba(225, 6, 0, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, #1a0000 0%, #0A0A0A 100%);
}

.hero-slide-logo {
  width: clamp(260px, 34vw, 440px) !important;
  height: auto !important;
  max-height: 65% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 20px 40px rgba(225, 6, 0, 0.45));
  animation: hero-logo-float 4s ease-in-out infinite;
}

/* Lotto Arena-logo is veel breder dan het vierkante Giants-logo → groter kader */
.hero-slide-logo-lotto {
  width: clamp(360px, 55vw, 780px) !important;
  max-height: 55% !important;
  filter: drop-shadow(0 18px 36px rgba(255, 255, 255, 0.18))
          drop-shadow(0 6px 18px rgba(225, 6, 0, 0.35));
}

/* Klikbare slide-afbeelding (bv. Lotto Arena → lotto-arena.html) */
.hero-slide-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  cursor: pointer;
}
.hero-slide-link:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 6px;
  border-radius: 6px;
}

/* Zachte cinematografische vignette op de foto's (niet meer voor leesbaarheid — tekst staat nu eronder) */
.hero-slide[data-kind="photo"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* Pijlen */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.hero-slideshow:hover .hero-arrow,
.hero-slideshow:focus-within .hero-arrow {
  opacity: 1;
}

.hero-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev { left: 2rem; }
.hero-arrow-next { right: 2rem; }

/* Op touch-toestellen is er geen hover — dus pijlen altijd tonen */
@media (hover: none) {
  .hero-arrow { opacity: 1; }
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dot.is-active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.2);
}

.hero-dot:hover { background: var(--white); }

@media (max-width: 720px) {
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow-prev { left: 0.5rem; }
  .hero-arrow-next { right: 0.5rem; }
  .hero-dots { bottom: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide-logo { animation: none; }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  display: block;
  color: var(--red);
  font-size: 0.85em;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.basketball-deco {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff6a3d 0%, #c6371b 50%, #7a1f0d 100%);
  opacity: 0.15;
  filter: blur(2px);
  z-index: 1;
  pointer-events: none; /* mag klikken op onderliggende CTA-knoppen niet blokkeren */
}

.basketball-deco.left { top: -100px; left: -150px; }
.basketball-deco.right { bottom: -150px; right: -100px; }

/* ===========================================
   BUTTONS
=========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-facebook {
  background: #1877F2;
  color: var(--white) !important;
  border-color: #1877F2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-facebook:hover,
.btn-facebook:focus-visible {
  background: #145dc1;
  border-color: #145dc1;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.35);
}

/* btn-outline = standaard donker-op-licht (zichtbaar op witte/bg-light secties).
   Op donkere secties (page-header, bg-dark, sponsor-hero, hero) wordt hij
   automatisch wit-op-donker — zie overrides hieronder. */
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.page-header .btn-outline,
.bg-dark .btn-outline,
.sponsor-hero .btn-outline,
.hero .btn-outline {
  color: var(--white);
  border-color: var(--white);
}
.page-header .btn-outline:hover,
.bg-dark .btn-outline:hover,
.sponsor-hero .btn-outline:hover,
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-dark:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Header search icon button */
.nav-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.nav-search-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: scale(1.05);
}

.nav-search-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* ===========================================
   SEARCH OVERLAY
=========================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8vh 1.5rem 2rem;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.search-modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2rem 2rem 1.5rem;
  animation: slideDown 0.25s ease;
  border-top: 4px solid var(--red);
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.search-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--gray);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: all var(--transition);
}

.search-close:hover {
  background: var(--gray-light);
  color: var(--black);
}

.search-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-light);
  border-radius: 6px;
  transition: border-color var(--transition);
}

.search-input-wrap:focus-within {
  border-color: var(--red);
}

.search-icon {
  position: absolute;
  left: 0.9rem;
  color: var(--gray);
  pointer-events: none;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.9rem 1rem 0.9rem 2.75rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--black);
  border-radius: 6px;
}

.search-hint {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.search-results {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  max-height: 50vh;
  overflow-y: auto;
}

.search-result {
  border-top: 1px solid var(--gray-light);
}

.search-result:first-child {
  border-top: none;
}

.search-result a {
  display: block;
  padding: 0.9rem 0.5rem;
  color: var(--black);
  text-decoration: none;
  border-radius: 4px;
  transition: background var(--transition);
}

.search-result a:hover {
  background: var(--off-white);
  color: var(--black);
}

.search-result .sr-title {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.search-result .sr-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
}

.search-result mark {
  background: rgba(225, 6, 0, 0.15);
  color: var(--red-dark);
  padding: 0 2px;
  border-radius: 2px;
}

.search-empty {
  padding: 1.25rem 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 600px) {
  .search-overlay { padding-top: 4vh; }
  .search-modal { padding: 1.5rem 1.25rem 1rem; }
  .search-title { font-size: 1.1rem; }
}

/* ===========================================
   SECTIONS
=========================================== */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .eyebrow {
  display: block;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 1rem auto 0;
}

/* ===========================================
   PAGE HEADER (non-home pages)
=========================================== */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--black) 0%, #1A0000 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(225, 6, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 6, 0, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.page-header > * { position: relative; z-index: 1; }

.page-header-logo {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
}
@media (max-width: 720px) {
  .page-header-logo { max-width: 220px; margin-bottom: 1rem; }
}

.page-header .eyebrow {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 0.5rem;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
  font-size: 1.15rem;
}

/* ===========================================
   FEATURES / HIGHLIGHTS GRID
=========================================== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-light);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-visual {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(225, 6, 0, 0.3) 0%, transparent 70%);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.5rem;
  color: var(--black);
}

.card-body p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
}

/* ===========================================
   COUNTDOWN BAR (eerstvolgende wedstrijd)
=========================================== */
.countdown-section {
  position: relative;
  padding: 1.5rem 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(179,5,0,0.92) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04) 0 12px,
      transparent 12px 24px
    );
  color: var(--white);
  border-bottom: 3px solid var(--red);
  overflow: hidden;
}

.countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 50%, rgba(255, 45, 26, 0.35), transparent 45%);
  pointer-events: none;
}

.countdown-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 2rem;
}

.countdown-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.countdown-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  font-weight: 600;
}

.countdown-match {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.cd-vs {
  color: var(--red-light);
  font-size: 0.9em;
  opacity: 0.9;
}

.countdown-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Inter', sans-serif;
}

.cd-dot { color: rgba(255,255,255,0.4); }

/* Themawedstrijd / notitie uit de Sheet — zilveren pil (was eerder goud) */
.cd-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.7rem;
  padding: 0.42rem 1rem 0.42rem 0.7rem;
  background: linear-gradient(135deg, rgba(212,215,218,0.22), rgba(212,215,218,0.08));
  border: 1px solid rgba(212,215,218,0.55);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #fff;
  box-shadow: 0 2px 12px rgba(212,215,218,0.18);
  animation: cd-note-glow 3s ease-in-out infinite;
  text-align: center;
}
@keyframes cd-note-glow {
  0%, 100% { box-shadow: 0 2px 12px rgba(212,215,218,0.18); }
  50%      { box-shadow: 0 2px 20px rgba(212,215,218,0.40); }
}
.cd-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--silver);
  color: #1a0000;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  animation: cd-note-spin 3.5s linear infinite;
}
@keyframes cd-note-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.cd-note-label {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-bright);
  font-size: 0.72rem;
  flex-shrink: 0;
}
/* Scrollende loop met één enkele tekst, gecentreerd in zijn kader */
.cd-note-marquee {
  position: relative;
  overflow: hidden;
  width: 320px;
  max-width: 100%;
  /* Heel smalle fade — zorgt voor een zachte rand zonder de tekst onleesbaar te maken */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.cd-note-text {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  animation: cd-note-loop 22s linear infinite;
  will-change: transform;
}
.cd-note-marquee:hover .cd-note-text { animation-play-state: paused; }
@keyframes cd-note-loop {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cd-note-icon, .cd-note { animation: none; }
  .cd-note-text {
    animation: none;
    padding-left: 0;
    white-space: normal;
  }
  .cd-note-marquee {
    width: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

@media (max-width: 768px) {
  .cd-note { margin-left: auto; margin-right: auto; }
  .cd-note-marquee { width: 240px; }
}
@media (max-width: 480px) {
  .cd-note-marquee { width: 200px; }
  .cd-note-text   { font-size: 0.85rem; }
}

.cd-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.cd-badge-home {
  background: var(--white);
  color: var(--red);
}

.cd-badge-away {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.countdown-timer {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.55rem 0.4rem 0.35rem;
  backdrop-filter: blur(3px);
}

.cd-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.cd-unit-label {
  margin-top: 0.3rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.cd-sep {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--red-light);
  align-self: center;
  padding-top: 0;
  animation: cdPulse 1s ease-in-out infinite;
}

@keyframes cdPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.countdown-cta {
  white-space: nowrap;
  /* Zilver→rode ticket-look (vervangt het oude geel→rood) — opvallender
     dan de gewone btn-primary, en duidelijk niét Filou-Oostende-geel. */
  background: linear-gradient(135deg, #E5E7E9 0%, #B8BCC0 45%, #E10600 100%);
  color: #0A0A0A;
  border: 2px solid #0A0A0A;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
  box-shadow: 0 8px 18px rgba(225, 6, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.countdown-cta:hover,
.countdown-cta:focus-visible {
  background: linear-gradient(135deg, #F0F2F4 0%, #C8CCD0 45%, #FF1A00 100%);
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(225, 6, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  filter: none;
}
.countdown-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(225, 6, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.countdown-section.cd-live .cd-unit {
  animation: cdLive 1.2s ease-in-out infinite;
  border-color: var(--red-light);
}

@keyframes cdLive {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 26, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(255, 45, 26, 0); }
}

@media (max-width: 900px) {
  .countdown-wrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }
  /* countdown-info is een verticale flex; zonder align-items: center stretchen
     de kinderen naar links. Hier centreren we elke regel. */
  .countdown-info { align-items: center; }
  /* Match-namen onder elkaar: HOME / VS / AWAY — leesbaarder dan wrappen */
  .countdown-match {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
  }
  .countdown-meta { justify-content: center; flex-wrap: wrap; }
  .countdown-timer { justify-content: center; }
  .countdown-cta { justify-self: center; max-width: 100%; }
  .cd-note { justify-content: center; max-width: 100%; }
  .cd-note-marquee { max-width: 100%; }
}

@media (max-width: 480px) {
  .cd-unit { min-width: 48px; padding: 0.45rem 0.3rem 0.3rem; }
  .cd-sep { display: none; }
  .countdown-timer { gap: 0.45rem; }
  /* Op smalle schermen de meta verticaal stapelen — geen "Mons.Aren..." cut-off meer */
  .countdown-meta {
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.82rem;
  }
  /* Verberg de · scheidingstekens wanneer items onder elkaar staan */
  .countdown-meta .cd-dot { display: none; }
}

/* ===========================================
   STATS
=========================================== */
.stats {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

/* ===========================================
   PLAYERS
=========================================== */
.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.player-card .player-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #3a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--red);
  transition: transform var(--transition);
  overflow: hidden;
}

/* Echte foto (indien aanwezig) bedekt de volledige kaart;
   de initialen blijven als fallback staan als het plaatje niet laadt
   (onerror="this.remove()" op de <img>). */
.player-card .player-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition);
  display: block;
}

.player-card:hover .player-img,
.player-card:hover .player-img img {
  transform: scale(1.05);
}

.player-card .player-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 60%);
  color: var(--white);
}

/* Rugnummer — linksboven op de kaart, wit zonder achtergrond.
   Zit als direct kind van .player-card, dus positioneert zich t.o.v. de kaart.
   De text-shadow zorgt dat het cijfer leesbaar blijft boven zowel donkere
   als drukke delen van de foto. */
.player-card > .player-number {
  position: absolute;
  top: 0.6rem;
  left: 0.9rem;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55),
               0 0 2px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* Behoud het oude .player-number-gedrag voor gevallen waar het nog
   in .player-info zou zitten (niet langer het geval op de team-pagina,
   maar defensief voor eventuele andere plaatsen). */
.player-info .player-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.player-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.player-position {
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===========================================
   FIXTURES / MATCHES
=========================================== */
.fixtures-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================
   Teams per leeftijdscategorie (op de "Jeugd"-pagina)
   Eén blok per categorie met links de leeftijdstag en rechts
   de clubnaam + de ploegen die in die categorie spelen.
   ========================================================== */
.category-teams {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.cat-teams-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 5px solid var(--red);
  border-radius: 6px;
  padding: 1.1rem 1.5rem;
  transition: all var(--transition);
}

.cat-teams-row:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.cat-teams-age {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--red);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.cat-teams-body h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cat-teams-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  margin: 0;
  padding: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

/* Pill-vormige link per ploeg.
   In rust: lichte rode gloed + zachte rode rand.
   Bij hover: gevuld rood vlak + lichte "lift" — zelfde taal als de overige
   CTA-knopen elders op de site. */
.team-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.85rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(225, 6, 0, 0.08);
  border: 1px solid rgba(225, 6, 0, 0.3);
  border-radius: 999px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.team-link:hover,
.team-link:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(225, 6, 0, 0.25);
  outline: none;
}

/* ===== Nuttige links (praktische info) ===== */
.useful-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.useful-links-group {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 4px solid var(--red);
  border-radius: 6px;
  padding: 1.6rem 1.9rem;
}
.useful-links-group h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
  color: var(--red);
}
.useful-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.useful-links-list li + li {
  border-top: 1px solid var(--gray-light);
}
.useful-links-list a {
  display: flex;
  align-items: center;
  padding: 0.7rem 0;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition), padding-left var(--transition);
}
.useful-links-list a::after {
  content: '→';
  margin-left: auto;
  color: var(--red);
  font-weight: 700;
  transition: transform var(--transition);
}
.useful-links-list a:hover,
.useful-links-list a:focus-visible {
  color: var(--red);
  padding-left: 0.25rem;
  outline: none;
}
.useful-links-list a:hover::after,
.useful-links-list a:focus-visible::after {
  transform: translateX(4px);
}

/* Grouped item with a non-link label and a nested sub-list */
.useful-links-group-item {
  padding: 0.8rem 0;
}
.useful-links-label {
  display: block;
  font-weight: 600;
  color: var(--black);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.useful-links-sublist {
  list-style: none;
  padding: 0 0 0 0.9rem;
  margin: 0.25rem 0 0;
  border-left: 2px solid rgba(225, 6, 0, 0.25);
}
.useful-links-sublist li + li {
  border-top: 1px solid var(--gray-light);
}
.useful-links-sublist a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.25rem;
  font-size: 0.9rem;
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}
.useful-links-sublist a::after {
  content: '→';
  margin-left: auto;
  color: var(--red);
  font-weight: 700;
  transition: transform var(--transition);
}
.useful-links-sublist a:hover,
.useful-links-sublist a:focus-visible {
  color: var(--red);
  padding-left: 0.55rem;
  outline: none;
}
.useful-links-sublist a:hover::after,
.useful-links-sublist a:focus-visible::after {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .useful-links-grid { grid-template-columns: 1fr; }
}

/* Placeholder-stijl zolang er nog geen ploegen zijn ingevuld */
.cat-teams-list:empty::before,
.cat-teams-list.is-placeholder {
  color: var(--gray);
  font-style: italic;
}

@media (max-width: 768px) {
  .cat-teams-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
  }
  .cat-teams-age {
    text-align: left;
    font-size: 1.3rem;
  }
}

.fixture {
  position: relative;
  display: grid;
  /* Symmetrische lay-out: het datumblok (links) en het info-blok (rechts)
     zijn even breed, zodat de VS-pil exact op het midden van de kaart
     uitkomt tussen thuis- en uitploeg. */
  grid-template-columns: 150px 1fr auto 1fr 150px;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 5px solid var(--red);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  transition: all var(--transition);
  overflow: hidden;
}

/* Thuiswedstrijd: rode accentrand + subtiele rode achtergrondgloed */
.fixture[data-loc="home"] {
  border-left-color: var(--red);
  background:
    linear-gradient(90deg, rgba(225, 6, 0, 0.06) 0%, rgba(225, 6, 0, 0) 35%),
    var(--white);
}

/* Uitwedstrijd: zwarte accentrand, schone witte achtergrond */
.fixture[data-loc="away"] {
  border-left-color: var(--black);
  background: var(--white);
}

/* Voorbije wedstrijden iets gedempter */
.fixture.is-past {
  opacity: 0.92;
}
.fixture.is-past[data-loc="home"] {
  border-left-color: var(--red-dark);
}
.fixture.is-past[data-loc="away"] {
  border-left-color: var(--gray-dark);
}

.fixture:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

/* Home/Away badge, rechtsboven op de kaart */
/* THUIS/UIT pil zit nu bovenin het datumblok (niet meer absoluut
   in de rechterbovenhoek) zodat het start-uur rechts niet meer
   afgedekt wordt. */
.fixture-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  padding: 0.18rem 0.55rem;
  border-radius: 3px;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.fixture-badge-home {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(225, 6, 0, 0.35);
}

.fixture-badge-away {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}

.fixture-date {
  text-align: center;
}

.fixture-competition {
  display: inline-block;
  margin-top: 0.45rem;
  padding: 0.15rem 0.55rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  line-height: 1.4;
  white-space: nowrap;
}

/* Themawedstrijd-pill onder elke kaart — toont de note uit Excel
   (bv. "Circus Daily Ladies Night", "Indien nodig"). Zilveren accent
   in dezelfde stijl als de countdown-balk op de homepage. */
.fixture-note {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  padding: 0.32rem 0.85rem 0.32rem 0.55rem;
  background: linear-gradient(135deg, rgba(168, 174, 180, 0.18), rgba(168, 174, 180, 0.06));
  border: 1px solid rgba(168, 174, 180, 0.55);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--black);
  justify-self: start;
  max-width: 100%;
}
.fixture-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--silver);
  color: #1a0000;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}
.fixture-note-text {
  letter-spacing: 0.02em;
}

.fixture-weekday {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--black);
  margin-bottom: 0.1rem;
  line-height: 1;
}

.fixture-day {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.fixture-month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

.fixture-year {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--black);
  margin-top: 0.05rem;
  line-height: 1;
}

/* Teamcel = logo + naam naast elkaar */
.fixture-team {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  min-width: 0;
}

/* Thuisploeg: logo + naam blijven links staan (logo tegen de VS-kant
   van het datumblok). */
.fixture-team.home {
  justify-content: flex-start;
  text-align: left;
}

/* Uitploeg: naam + logo schuiven naar rechts, zodat beide ploegen
   symmetrisch rond de VS-pil zitten. */
.fixture-team.away {
  justify-content: flex-end;
  text-align: right;
}

.fixture-team-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* Het Giants-team krijgt steeds de rode highlight */
.fixture-team.is-giants .fixture-team-name {
  color: var(--red);
  font-weight: 700;
}

/* Klein team-logo (36x36) — zwarte cirkel met initialen als fallback
   (zwart i.p.v. rood zodat de witte BNXT-silhouetten beter zichtbaar zijn) */
.fixture-team-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fixture-team-logo.is-giants-logo {
  background: var(--white);
  border: 1.5px solid var(--red);
  color: var(--red);
}

.fixture-team-initials {
  position: relative;
  z-index: 1;
}

/* Als er een logo-afbeelding succesvol is ingeladen, moeten de
   initialen niet door het logo heen schijnen. De <img> wordt door
   onerror="this.remove()" verwijderd als hij niet laadt, waarna
   :has(img) vanzelf niet meer matcht en de initialen terug
   zichtbaar worden als fallback. */
.fixture-team-logo:has(img) .fixture-team-initials {
  display: none;
}

/* Als er wel een logo-bestand bestaat, legt het zich over de initialen */
.fixture-team-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  background: var(--white);
  z-index: 2;
}

/* BNXT White-variant: wit silhouet moet op de zwarte cirkel komen,
   dus géén witte achtergrond achter het PNG. */
.fixture-team-logo.is-bnxt-logo img {
  background: transparent;
  padding: 5px;
}

/* Giants-logo heeft al een witte cirkel achter zich, dus de
   witte afbeelding-achtergrond zou een harde vierkante rand tonen.
   Maak hem daarom ook transparant. */
.fixture-team-logo.is-giants-logo img {
  background: transparent;
  padding: 3px;
}

/* VS-pil tussen de teams */
.fixture-vs {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--red);
  font-size: 0.9rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--red);
  border-radius: 3px;
  background: var(--white);
}

.fixture[data-loc="away"] .fixture-vs {
  color: var(--black);
  border-color: var(--black);
}

/* Score-weergave (voor voorbije wedstrijden) */
.fixture-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  background: var(--black);
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.fixture-score-sep { opacity: 0.55; }

.fixture-info {
  text-align: right;
  font-size: 0.85rem;
  color: var(--gray);
  max-width: 180px;
}

.fixture-info strong {
  display: block;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

/* Win/Loss pillen */
.fixture-wl {
  display: inline-block;
  padding: 0.1rem 0.55rem;
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.fixture-wl.is-win {
  background: var(--red);
  color: var(--white);
}
.fixture-wl.is-loss {
  background: var(--gray-light);
  color: var(--gray-dark);
}

/* ===========================================
   SPONSOR SECTION
=========================================== */
.sponsor-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1A0000 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sponsor-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(225, 6, 0, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.sponsor-hero > * { position: relative; }

.sponsor-title-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.sponsor-main-logo {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, #ff6a3d 50%, #e10600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sponsor-tagline {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sponsor-logo {
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem;
  text-align: center;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.sponsor-logo:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

/* ===========================================
   FORM
=========================================== */
.form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
}

.form input,
.form textarea,
.form select {
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--transition);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--red);
}

.form textarea {
  resize: vertical;
  min-height: 140px;
}

/* ===========================================
   NEWS DETAILS / ARTICLE
=========================================== */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-body p { margin-bottom: 1.25rem; }

/* ===========================================
   TABS (fixtures filter)
=========================================== */
.tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 2px solid var(--gray-light);
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}

.tab.active,
.tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ===========================================
   FOOTER
=========================================== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.footer-brand .sponsor-line {
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray-light);
  opacity: 0.7;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--gray-light);
  opacity: 0.8;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--red);
  opacity: 1;
}

.footer-credits {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--gray-light);
  opacity: 0.6;
}
.footer-credits-icon {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 0.45rem;
  color: var(--red);
  opacity: 0.85;
}
.footer-credits a {
  color: var(--gray-light);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 2px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.footer-credits a:hover,
.footer-credits a:focus-visible {
  color: var(--red-light);
  text-decoration-color: var(--red-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-light);
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 1rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  opacity: 0.8;
  transition: all var(--transition);
}

.socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
  opacity: 1;
}

/* ---- Contact-blok in de footer ---- */
.footer-contact .footer-address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gray-light);
  opacity: 0.8;
  line-height: 1.55;
}

.footer-contact .footer-address p {
  margin: 0 0 0.75rem;
}

.footer-contact .footer-address strong {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-contact .footer-address a {
  color: var(--gray-light);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

.footer-contact .footer-address a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.footer-btw {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
  margin-top: 0.25rem !important;
}

/* ---- Hashtags onder "over Giants" ---- */
.footer-hashtags {
  margin-top: 0.75rem !important;
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 0.03em;
  font-weight: 600;
  opacity: 0.9;
}

/* ---- Legal-links onderaan ---- */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-legal a {
  color: var(--gray-light);
  opacity: 0.7;
  transition: color var(--transition), opacity var(--transition);
}

.footer-legal a:hover {
  color: var(--red);
  opacity: 1;
}

/* ===========================================
   HERO POPUP — homepage modal (bij eerste bezoek)
=========================================== */
body.has-popup-open { overflow: hidden; }

.hero-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.hero-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}
/* Het `hidden` attribuut moet altijd winnen over onze display:flex,
   anders blijft de overlay onzichtbaar over de pagina liggen en
   blokkeert hij elke klik op de inhoud eronder. */
.hero-popup[hidden] { display: none !important; }

.hero-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(3px);
  cursor: pointer;
}

.hero-popup-card {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  transform: translateY(28px) scale(0.94);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.32s ease;
  -webkit-overflow-scrolling: touch;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: stretch;
}
.hero-popup.is-visible .hero-popup-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.hero-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: background var(--transition), transform var(--transition);
}
.hero-popup-close:hover,
.hero-popup-close:focus-visible {
  background: var(--white);
  transform: scale(1.08);
  outline: none;
}

.hero-popup-img-link {
  display: block;
  background: var(--off-white);
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px 0 0 14px;
}
.hero-popup-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-popup-body {
  padding: 2rem 1.85rem 1.85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-popup-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #CD7F32;
  margin-bottom: 0.5rem;
}

.hero-popup-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
  color: var(--charcoal);
  line-height: 1.15;
}

.hero-popup-text {
  margin: 0 0 1.4rem;
  color: var(--gray);
  line-height: 1.5;
  font-size: 0.95rem;
}

.hero-popup-cta {
  display: inline-block;
}

.hero-popup-later {
  display: block;
  margin: 1rem auto 0;
  background: none;
  border: none;
  color: var(--gray);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.4rem 0.8rem;
  transition: color var(--transition);
}
.hero-popup-later:hover,
.hero-popup-later:focus-visible {
  color: var(--red);
  outline: none;
}

@media (max-width: 720px) {
  .hero-popup-card {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .hero-popup-img-link {
    border-radius: 14px 14px 0 0;
    height: auto;
  }
  .hero-popup-img {
    height: auto;
    min-height: 0;
    max-height: 55vh;
  }
  .hero-popup-body {
    padding: 1.5rem 1.5rem 1.75rem;
  }
}

@media (max-width: 540px) {
  .hero-popup { padding: 1rem; }
  .hero-popup-title { font-size: 1.3rem; }
  .hero-popup-body { padding: 1.25rem 1.25rem 1.5rem; }
  .hero-popup-img { max-height: 45vh; }
}

/* ===========================================
   FIXTURES — Lotto Arena venue-link
   (alleen op thuiswedstrijden, klikbaar naar lotto-arena.be)
=========================================== */
.fixture-venue-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(225, 6, 0, 0.3);
  transition: color var(--transition), border-color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.fixture-venue-link::after {
  content: '↗';
  display: inline-block;
  font-size: 0.85em;
  opacity: 0.7;
  transition: transform var(--transition), opacity var(--transition);
}
.fixture-venue-link:hover,
.fixture-venue-link:focus-visible {
  color: var(--red-dark, #B30500);
  border-bottom-color: var(--red);
}
.fixture-venue-link:hover::after,
.fixture-venue-link:focus-visible::after {
  transform: translate(2px, -2px);
  opacity: 1;
}

/* ===========================================
   LOTTO ARENA — Google Maps link onder adres
=========================================== */
.map-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}
.map-link:hover,
.map-link:focus-visible {
  color: var(--black);
  transform: translateX(2px);
}

/* ===========================================
   MERCHANDISE — fanshop foto + Decathlon gallery
=========================================== */
.merch-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.merch-photo {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  border: 4px solid var(--white);
}
.merch-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.merch-text h2 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.02em;
  margin: 0.25rem 0 0.75rem;
}

.merch-decathlon-logo {
  display: block;
  height: 56px;
  width: auto;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}

.merch-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.merch-gallery figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.merch-gallery figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.merch-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

@media (max-width: 860px) {
  .merch-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .merch-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .merch-gallery { grid-template-columns: 1fr; }
  .merch-decathlon-logo { height: 44px; }
}

/* ===========================================
   FANCLUB — bestuur foto
=========================================== */
.board-photo {
  max-width: 460px;
  margin: 0 auto 2.5rem;
  padding: 0;
  text-align: center;
}
.board-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--white);
}
.board-photo figcaption {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--gray);
  font-style: italic;
}

/* ===========================================
   FANCLUB — inschrijfformulier supportersbus
=========================================== */
.bus-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.bus-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.bus-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bus-form-field-full { grid-column: 1 / -1; }

.bus-form-field > span {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.bus-form-field input,
.bus-form-field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.bus-form-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--charcoal) 50%),
                    linear-gradient(135deg, var(--charcoal) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.bus-form-field input:focus,
.bus-form-field select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.12);
}

.bus-form-field input:invalid:not(:placeholder-shown),
.bus-form-field select:invalid:not(:focus) {
  /* Niet te agressief: enkel zachte hint, browser toont eigen tooltip bij submit */
}

.bus-form-actions {
  margin-top: 1.5rem;
  text-align: center;
}

.bus-form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
  font-style: italic;
}

@media (max-width: 640px) {
  .bus-form { padding: 1.5rem 1.25rem; }
  .bus-form-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   UTILITIES
=========================================== */
.text-center { text-align: center; }
.bg-dark { background: var(--black); color: var(--white); }
.bg-light { background: var(--off-white); }

/* ===========================================
   PLAYOFF PROMO TILES — under hero slideshow
   Drie tegels in NBA-stijl met bronzen accent voor de play-offs.
=========================================== */
.playoff-promo {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #fff;
}
.playoff-promo-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.playoff-promo-header .eyebrow {
  color: #d4af37;
  letter-spacing: 2px;
}
.playoff-promo-header h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin: .5rem 0 0;
  color: #fff;
}
.playoff-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.playoff-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(155deg, #1f1f1f 0%, #2c0a0a 60%, #4a1010 100%);
  border-top: 4px solid #d4af37;
  border-radius: 14px;
  overflow: hidden;
  padding: 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.playoff-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.playoff-tile::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.playoff-tile-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  margin-bottom: .85rem;
  color: #d4af37;
}
.playoff-tile-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: .35rem;
}
.playoff-tile-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 .85rem;
  color: #fff;
}
.playoff-tile-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1rem;
}
.playoff-tile-dates {
  list-style: none;
  margin: 0 0 .85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.playoff-tile-dates.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .85rem;
}
.playoff-round {
  margin-bottom: .85rem;
}
.playoff-round:last-of-type {
  margin-bottom: 1rem;
}
.playoff-round-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  color: rgba(212, 175, 55, 0.85);
  margin: 0 0 .4rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.playoff-round .playoff-tile-dates {
  margin-bottom: 0;
}
.playoff-tile-dates li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
}
.playoff-tile-dates .date-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: .15rem .45rem;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 5px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #d4af37;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.playoff-tile-dates .date-label {
  flex: 1;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.3;
}
.playoff-tile-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .8rem 1.25rem;
  background: #d4af37;
  color: #1a1a1a;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s ease, transform .15s ease;
}
.playoff-tile-cta:hover {
  background: #e6c357;
  transform: translateX(2px);
}
.playoff-tile-footnote {
  margin: auto 0 .5rem;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
.playoff-tile-footnote + .playoff-tile-cta {
  margin-top: 0;
}

/* ===========================================
   PRESS ACCREDITATION FORM
=========================================== */
.press-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
}
.press-form-section { margin-bottom: 2rem; }
.press-form-section:last-child { margin-bottom: 0; }
.press-form-section h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  background: var(--black);
  padding: .65rem 1rem;
  border-radius: 6px;
  margin: 0 0 1rem 0;
}
.press-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: .75rem;
}
.press-form-row--single { grid-template-columns: 1fr; }
.press-form-field { display: flex; flex-direction: column; }
.press-form-field label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: .35rem;
}
.press-form-field label .req { color: var(--red); margin-left: .15rem; }
.press-form-field input,
.press-form-field select,
.press-form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: .6rem .75rem;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #fafafa;
  color: var(--dark);
  transition: border-color .2s, background .2s;
}
.press-form-field input:focus,
.press-form-field select:focus,
.press-form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}
.press-form-field textarea { resize: vertical; min-height: 90px; }
.press-form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1.25rem;
}
.press-form-checkboxes label {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
}
.press-form-checkboxes input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}
.press-form-radios {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.press-form-radios label {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .75rem 1rem;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.press-form-radios label:hover { border-color: var(--red); background: #fff; }
.press-form-radios input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}
.press-form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: 1rem;
  background: #fff7e0;
  border-left: 4px solid #d4af37;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.55;
}
.press-form-gdpr input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}
.press-form-submit {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.press-form-note {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}

/* ===========================================
   RESPONSIVE
=========================================== */
@media (max-width: 980px) {
  .cheer-loc-grid { grid-template-columns: 1fr !important; }
  .cheer-loc-grid iframe { min-height: 280px !important; }

  .playoff-promo-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .playoff-tile { min-height: auto; padding: 1.75rem 1.5rem 1.5rem; }

  .po-clinched-grid { grid-template-columns: 1fr !important; }

  .press-form { padding: 1.5rem; }
  .press-form-row { grid-template-columns: 1fr; }
  .press-form-checkboxes { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }

  /* ============================================================
     MOBILE NAV — clean full-overlay side-drawer pattern.
     Lijst van rijen over volledige breedte, met chevron rechts
     die roteert wanneer een submenu open klapt. Overschrijft alle
     desktop absoluut-positioneringen (anders schieten submenu's
     uit het scherm).
  ============================================================ */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--black);
    padding: 0 0 2rem;
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    display: none;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
    z-index: 99;
  }
  .main-nav.open { display: flex; }

  /* Reset alle children tot full-width rijen */
  .nav-item,
  .nav-subitem {
    display: block !important;
    width: 100%;
    position: static !important;
  }

  /* Alle rijen in het mobiele menu (top-level + alle submenu-niveaus) */
  .main-nav a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.05rem 1.5rem;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    white-space: normal;
    line-height: 1.25;
  }

  /* Geen underline-animatie op mobiel — onderdruk alleen de groei,
     zodat de chevron-::after op has-dropdown items wél zichtbaar blijft. */
  .main-nav a:hover::after,
  .main-nav a.active::after { width: 0 !important; }

  /* Hover/active op rij i.p.v. tekst */
  .main-nav a:hover,
  .main-nav a.active {
    color: var(--red);
    background: rgba(225, 6, 0, 0.08);
  }

  /* ====== Verberg desktop-chevrons (links van de tekst) ====== */
  .nav-item.has-dropdown > a::before,
  .nav-subitem.has-subdropdown > a::before,
  .nav-item.has-dropdown::after,
  .nav-dropdown::before,
  .nav-subdropdown::before {
    display: none !important;
    content: none !important;
  }

  /* ====== Nieuwe chevron RECHTS — roteert bij .is-open ====== */
  .nav-item.has-dropdown > a,
  .nav-subitem.has-subdropdown > a {
    position: relative;
  }
  .nav-item.has-dropdown > a > .nav-chevron,
  .nav-subitem.has-subdropdown > a > .nav-chevron { display: none; }

  .nav-item.has-dropdown > a::after,
  .nav-subitem.has-subdropdown > a::after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-left: auto;
    border-right: 2px solid rgba(255, 255, 255, 0.55);
    border-bottom: 2px solid rgba(255, 255, 255, 0.55);
    transform: rotate(45deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
    flex-shrink: 0;
    background: transparent;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    height: 9px;
    pointer-events: none;
    cursor: default;
    border-top: none;
    border-left: none;
    color: inherit;
    font-size: 0;
    opacity: 1;
  }
  .nav-item.has-dropdown.is-open > a::after,
  .nav-subitem.has-subdropdown.is-open > a::after {
    transform: rotate(225deg);
    border-color: var(--red);
  }

  /* ====== Niveau 2 — submenu (.nav-dropdown) ====== */
  .nav-dropdown {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: none !important;
  }
  .nav-item.has-dropdown.is-open > .nav-dropdown { display: block; }

  /* Direct children van een submenu (links + has-subdropdown wrappers) */
  .nav-dropdown > a {
    padding-left: 2.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .nav-dropdown > .nav-subitem > a {
    padding-left: 2.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  /* ====== Niveau 3 — sub-submenu (.nav-subdropdown) ====== */
  .nav-subdropdown,
  .nav-subdropdown.flip-left {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    border-left: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: none !important;
  }
  .nav-subitem.has-subdropdown.is-open > .nav-subdropdown { display: block; }

  /* Niveau-3 rijen */
  .nav-subdropdown > a,
  .nav-subdropdown > .nav-subitem > a {
    padding-left: 3.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  /* ====== Niveau 4 — diepste sub-submenu (Lage/Hoge Borden teams) ====== */
  .nav-subdropdown .nav-subdropdown > a,
  .nav-subdropdown .nav-subdropdown > .nav-subitem > a {
    padding-left: 4.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.02);
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .fixture {
    grid-template-columns: 80px 1fr 1fr;
    gap: 0.75rem;
    /* De badge zit niet langer absoluut bovenaan, dus extra padding-top
       is niet meer nodig. */
  }

  .fixture-info,
  .fixture-vs,
  .fixture-score {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }

  .fixture-team {
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  .fixture-team-logo {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .fixture-info {
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container, .header-inner { padding-left: 1rem; padding-right: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  section { padding: 3rem 0; }
}

/* ===========================================
   CHINESE FONT ADJUST
=========================================== */
html[lang="zh"] body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

html[lang="zh"] h1,
html[lang="zh"] h2,
html[lang="zh"] h3,
html[lang="zh"] h4 {
  letter-spacing: 0.05em;
}

/* ==========================================================
   CORPORATE PARTNERS — courtside LED-strook
========================================================== */
.partners-section {
  padding: 5rem 0 5.5rem;
  background:
    radial-gradient(1200px 240px at 50% 0%, rgba(225, 6, 0, 0.08), transparent 70%),
    linear-gradient(180deg, var(--white) 0%, #F7F7F7 100%);
  position: relative;
  overflow: hidden;
}

.partners-section .partners-title {
  margin: 0.5rem 0 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

.partners-section .partners-sub {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
  line-height: 1.6;
}

/* De courtside strook: zwarte baan met rode glow-rand boven en onder, als LED-boarding */
.partners-marquee {
  position: relative;
  background: linear-gradient(180deg, #111 0%, #000 100%);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  box-shadow:
    inset 0 12px 24px rgba(225, 6, 0, 0.18),
    inset 0 -12px 24px rgba(225, 6, 0, 0.18),
    0 10px 40px rgba(0, 0, 0, 0.18);
  padding: 1.6rem 0;
  margin: 2rem 0 2.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: partners-scroll 45s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Elk logo als een individueel "bord" */
.partner-board {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  min-width: 230px;
  padding: 0.8rem 1.6rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;            /* expliciet zodat hand-cursor altijd verschijnt,
                                 ook tijdens marquee-animatie */
  text-decoration: none;
}

.partner-board img {
  max-height: 92px;
  max-width: 210px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.partner-board:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 28px rgba(225, 6, 0, 0.35), 0 0 0 2px rgba(225, 6, 0, 0.6);
}

.partners-cta {
  margin-top: 0.5rem;
  /* override van .btn-outline (wit) zodat de knop zichtbaar is op de lichte achtergrond */
  color: var(--black);
  border-color: var(--black);
  background: transparent;
}

.partners-cta:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

/* Respecteer users die reduced motion willen */
@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
  .partners-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

@media (max-width: 720px) {
  .partner-board {
    height: 94px;
    min-width: 180px;
    padding: 0.6rem 1.2rem;
  }
  .partner-board img { max-height: 72px; max-width: 170px; }
  .partners-track { gap: 1.5rem; animation-duration: 35s; }
  .partners-section { padding: 3.5rem 0 4rem; }
}

/* ==========================================================
   CORPORATE PARTNERS — vaste 4x2 grid op LED-strook
========================================================== */
.partners-grid {
  position: relative;
  background: linear-gradient(180deg, #111 0%, #000 100%);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  box-shadow:
    inset 0 12px 24px rgba(225, 6, 0, 0.18),
    inset 0 -12px 24px rgba(225, 6, 0, 0.18),
    0 10px 40px rgba(0, 0, 0, 0.18);
  padding: 2.2rem 1.5rem;
  margin: 2rem 0 2.5rem;
}

.partners-grid-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Extra groot "bord" voor Corporate partners (bovenaan de hiërarchie) */
.partner-board--lg {
  height: 170px;
  min-width: 0;
  width: 100%;
  padding: 1rem 1.8rem;
}

.partner-board--lg img {
  max-height: 130px;
  max-width: 100%;
}

@media (max-width: 900px) {
  .partners-grid-inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .partners-grid { padding: 1.6rem 1rem; }
  .partner-board--lg { height: 140px; padding: 0.8rem 1.4rem; }
  .partner-board--lg img { max-height: 105px; }
}

@media (max-width: 480px) {
  .partners-grid-inner { grid-template-columns: 1fr; }
  .partner-board--lg { height: 120px; padding: 0.6rem 1.2rem; }
  .partner-board--lg img { max-height: 90px; }
}

/* ==========================================================
   PREMIUM PARTNERS — vaste 5-koloms grid, iets kleinere cards
========================================================== */
.partners-grid--premium .partners-grid-inner {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.partner-board--md {
  height: 130px;
  min-width: 0;
  width: 100%;
  padding: 0.8rem 1.4rem;
}

.partner-board--md img {
  max-height: 95px;
  max-width: 100%;
}

@media (max-width: 1100px) {
  .partners-grid--premium .partners-grid-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .partners-grid--premium .partners-grid-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .partner-board--md { height: 110px; padding: 0.6rem 1rem; }
  .partner-board--md img { max-height: 80px; }
}

@media (max-width: 480px) {
  .partners-grid--premium .partners-grid-inner { grid-template-columns: 1fr; }
  .partner-board--md { height: 100px; padding: 0.5rem 0.9rem; }
  .partner-board--md img { max-height: 72px; }
}

/* ==========================================================
   KLASSEMENT — BNXT League tabel
========================================================== */
.standings-section {
  /* Gebruikt bg-light (off-white). Enkel interne spacing/aanpassingen hier. */
}

.standings-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  min-width: 620px;
}

.standings-table thead th {
  background: var(--black);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 0.75rem;
  text-align: center;
  border-bottom: 2px solid var(--red);
  white-space: nowrap;
}

.standings-table thead th.st-team {
  text-align: left;
  padding-left: 1.5rem;
}

.standings-table tbody td {
  padding: 0.85rem 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
  vertical-align: middle;
}

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

.standings-table tbody tr:hover {
  background: rgba(225, 6, 0, 0.03);
}

.standings-table .st-pos {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  width: 48px;
}

.standings-table .st-team {
  text-align: left;
  padding-left: 1.5rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 52px;
}

.st-team-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.standings-table .st-num {
  font-variant-numeric: tabular-nums;
  width: 58px;
}

.standings-table .st-pts {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--red);
  background: rgba(225, 6, 0, 0.05);
}

.standings-table .st-pos-diff { color: #1a8f3a; font-weight: 600; }
.standings-table .st-neg-diff { color: var(--red-dark); font-weight: 600; }

/* Giants-rij extra highlight */
.standings-table tr.standings-giants {
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.08) 0%, rgba(225, 6, 0, 0.02) 100%);
  border-left: 4px solid var(--red);
}

.standings-table tr.standings-giants td {
  font-weight: 700;
  color: var(--black);
}

.standings-table tr.standings-giants .st-pos,
.standings-table tr.standings-giants .st-pts {
  color: var(--red);
}

.standings-table tr.standings-giants:hover {
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.12) 0%, rgba(225, 6, 0, 0.04) 100%);
}

.standings-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Mobile: verberg minder kritieke kolommen */
@media (max-width: 720px) {
  .standings-table { min-width: 0; }
  .standings-table .st-hide-sm { display: none; }
  .standings-table thead th,
  .standings-table tbody td { padding: 0.7rem 0.5rem; font-size: 0.88rem; }
  .standings-table thead th.st-team,
  .standings-table .st-team { padding-left: 0.85rem; }
  .st-team-logo { width: 22px; height: 22px; }
}

/* ==========================================================
   ALLE PARTNERS — alfabetisch overzicht
========================================================== */
.partners-all {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}

.partner-item {
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-dark);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.partner-item:hover {
  color: var(--black);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(225, 6, 0, 0.14);
}

/* Wanneer een partner-item een link bevat: link onderdrukt eigen styling
   en erft de stijl van de tegel zodat de hele tegel klikbaar voelt. */
.partner-item a {
  color: inherit;
  text-decoration: none;
  display: block;
  margin: -0.9rem -1.1rem;
  padding: 0.9rem 1.1rem;
}
.partner-item:has(a):hover a,
.partner-item a:hover {
  color: var(--red);
}

@media (max-width: 720px) {
  .partners-all {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.6rem;
  }
  .partner-item {
    padding: 0.75rem 0.9rem;
    font-size: 0.88rem;
  }
}

/* ==========================================================
   LATEST RESULT HIGHLIGHT
   Getoond op de homepage tot 24 uur na het einde van de wedstrijd.
   Wordt full-bleed getoond direct onder de header, aansluitend
   op de countdown-balk eronder — samen vormen ze één donker blok.
   Geen rounded card, geen marge → naadloze overgang.
========================================================== */
.latest-result {
  position: relative;
  padding: 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.96) 0%, rgba(30,8,8,0.96) 50%, rgba(10,10,10,0.96) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 12px, transparent 12px 24px);
  border-bottom: 1px solid rgba(225, 6, 0, 0.35);
  animation: lr-slide-in 0.55s cubic-bezier(0.2, 0.9, 0.25, 1);
  overflow: hidden;
}
.latest-result::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(225,6,0,0.18), transparent 55%);
  pointer-events: none;
}
.latest-result.is-win::before {
  background: radial-gradient(circle at 85% 50%, rgba(212,215,218,0.22), transparent 55%),
              radial-gradient(circle at 15% 50%, rgba(225,6,0,0.28), transparent 55%);
}
.latest-result.is-loss::before {
  background: radial-gradient(circle at 85% 50%, rgba(255,255,255,0.08), transparent 55%);
}
@keyframes lr-slide-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lr-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.75rem;
  padding: 1rem 3rem 1rem 0;
}
.lr-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.lr-status {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  padding: 0.38rem 0.85rem;
  border-radius: 3px;
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.latest-result.is-win .lr-status {
  background: var(--silver);
  color: #1a0000;
  animation: lr-pulse-win 2.4s ease-in-out infinite;
}
.latest-result.is-loss .lr-status {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.latest-result.is-draw .lr-status {
  background: rgba(212,215,218,0.3);
  color: var(--silver-bright);
}
/* LIVE — wedstrijd is bezig, geen uitslag.  Rood, kloppend. */
.latest-result.is-live::before {
  background: radial-gradient(circle at 85% 50%, rgba(225,6,0,0.45), transparent 55%),
              radial-gradient(circle at 15% 50%, rgba(225,6,0,0.32), transparent 55%);
}
.latest-result.is-live .lr-status {
  background: #E10600;
  color: #fff;
  animation: lr-pulse-live 1.6s ease-in-out infinite;
}
.latest-result.is-live .lr-score-num {
  color: rgba(255,255,255,0.45);
}
@keyframes lr-pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225,6,0,0.65); }
  50%      { box-shadow: 0 0 0 9px rgba(225,6,0,0); }
}
/* PENDING — wedstrijd voorbij maar uitslag nog niet ingevuld.  Amber, rustig. */
.latest-result.is-pending::before {
  background: radial-gradient(circle at 85% 50%, rgba(255,184,77,0.18), transparent 55%);
}
.latest-result.is-pending .lr-status {
  background: rgba(255,184,77,0.22);
  color: #FFB84D;
}
.latest-result.is-pending .lr-score-num {
  color: rgba(255,255,255,0.4);
}
@keyframes lr-pulse-win {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,215,218,0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(212,215,218,0); }
}

.lr-fresh-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00E676;
  box-shadow: 0 0 0 0 rgba(0,230,118,0.6);
  animation: lr-blink 1.8s ease-in-out infinite;
}
@keyframes lr-blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.6); opacity: 1; }
  50%      { box-shadow: 0 0 0 5px rgba(0,230,118,0); opacity: 0.7; }
}
.lr-fresh-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.lr-match {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 1.25rem;
  justify-self: center;
}
.lr-team {
  display: flex;
  align-items: center;
  min-width: 0;
}
.lr-team-home { justify-content: flex-end; }
.lr-team-away { justify-content: flex-start; }
.lr-team-logo {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.lr-team-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lr-score {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  line-height: 1;
  padding: 0 0.8rem;
}
.lr-score-num {
  font-size: 2.4rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.latest-result.is-win .lr-score-num { color: var(--silver-bright); }
.lr-score-sep {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.lr-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  justify-self: end;
  max-width: 260px;
  text-align: right;
  justify-content: flex-end;
}
.lr-dot { color: rgba(255,255,255,0.3); }

.lr-close {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}
.lr-close:hover,
.lr-close:focus-visible {
  background: rgba(255,255,255,0.22);
  outline: none;
}

/* Responsive — stapel op kleinere schermen */
@media (max-width: 900px) {
  .lr-card {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    /* Symmetrische padding zodat de inhoud écht gecentreerd staat
       (zowel links als rechts 2.5rem voor het absolute sluit-kruisje). */
    padding: 1rem 2.5rem;
    text-align: center;
  }
  .lr-header { justify-content: center; }
  .lr-match { justify-self: center; gap: 0.8rem; }
  .lr-meta { justify-self: center; text-align: center; justify-content: center; max-width: none; }
}
@media (max-width: 520px) {
  .lr-team-logo { width: 40px; height: 40px; }
  .lr-score-num { font-size: 1.8rem; }
  .lr-score-sep { font-size: 1.2rem; }
  .lr-fresh-label { display: none; }
  .lr-meta { font-size: 0.72rem; gap: 0.35rem; }
}

/* ===========================================
   NEWS CARDS — photo visuals
=========================================== */
/* When a news card has a featured image, we still keep the gradient as a
   background fallback (for slow/blocked image loads) and fill it with the
   photo on top. The ::after radial overlay is disabled on photo cards so
   the image is fully visible. */
/* ===========================================
   HOSPITALITY — A4 flyers grid (klikbaar)
=========================================== */
.hosp-flyers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.hosp-flyer {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hosp-flyer:hover,
.hosp-flyer:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(225, 6, 0, 0.2), 0 0 0 2px rgba(225, 6, 0, 0.4);
  outline: none;
}

.hosp-flyer img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.414;  /* A4 portret */
  object-fit: contain;
  background: #fafafa;
}

/* PDF-tegel: behoud A4-aspect, met een centraal PDF-icoon i.p.v. afbeelding */
.hosp-flyer-pdf-visual {
  aspect-ratio: 1 / 1.414;
  background: linear-gradient(135deg, #fafafa 0%, #ececec 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--red);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition);
}

.hosp-flyer-pdf-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--red);
  background: rgba(225, 6, 0, 0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
}

.hosp-flyer-pdf:hover .hosp-flyer-pdf-visual,
.hosp-flyer-pdf:focus-visible .hosp-flyer-pdf-visual {
  background: linear-gradient(135deg, #fff 0%, #fef0ef 100%);
}

.hosp-flyer-caption {
  display: block;
  padding: 0.85rem 1.1rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-align: center;
  border-top: 3px solid var(--red);
}

@media (max-width: 860px) {
  .hosp-flyers { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 540px) {
  .hosp-flyers { grid-template-columns: 1fr; max-width: 360px; }
}

.card-visual-photo {
  padding: 0;
}
.card-visual-photo::after {
  display: none;
}
.card-visual-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition);
}

/* Klikbare card-visual + h3 (om de modal te openen) */
.card-visual-clickable,
.news-card-title {
  cursor: pointer;
}
.card-visual-clickable:hover img {
  transform: scale(1.04);
}
.news-card-title {
  transition: color var(--transition);
}
.news-card-title:hover {
  color: var(--red);
}
.card-visual-clickable:focus-visible,
.news-card-title:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ===========================================
   NEWS MODAL — in-page full article reader
=========================================== */
.news-read-more {
  cursor: pointer;
}

body.news-modal-open {
  overflow: hidden;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}
.news-modal.is-open {
  display: flex;
}

.news-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(2px);
  animation: newsModalFadeIn 0.18s ease-out;
}

.news-modal-panel {
  position: relative;
  width: 100%;
  max-width: 780px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation: newsModalSlideIn 0.22s ease-out;
  margin: auto;
}

@keyframes newsModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes newsModalSlideIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.news-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 10, 10, 0.65);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.news-modal-close:hover {
  background: var(--red);
  transform: scale(1.06);
}

.news-modal-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  overflow: hidden;
}
.news-modal-image.is-empty {
  display: none;
}
.news-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-modal-content {
  padding: 1.75rem 2rem 2rem;
}

.news-modal-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}

.news-modal-tag {
  display: inline-block;
  padding: 0.22rem 0.7rem;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.1em;
}

.news-modal-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  line-height: 1.18;
  color: var(--black);
  margin: 0 0 1.2rem;
}

.news-modal-body {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.65;
}
.news-modal-body .card-body-figure,
.card-body-figure {
  margin: 1.5rem 0 0;
  padding: 0;
}
.news-modal-body .card-body-figure img,
.card-body-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.news-modal-body p {
  margin: 0 0 1em;
}
.news-modal-body p:last-child {
  margin-bottom: 0;
}
.news-modal-body h2,
.news-modal-body h3,
.news-modal-body h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--black);
  margin: 1.5em 0 0.6em;
  line-height: 1.2;
}
.news-modal-body h2 { font-size: 1.35rem; }
.news-modal-body h3 { font-size: 1.15rem; }
.news-modal-body h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.news-modal-body ul,
.news-modal-body ol {
  margin: 0 0 1em 1.25rem;
  padding: 0;
}
.news-modal-body li {
  margin: 0.25em 0;
}
.news-modal-body a {
  color: var(--red);
  text-decoration: underline;
}
.news-modal-body img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border-radius: 6px;
}
.news-modal-body blockquote {
  margin: 1em 0;
  padding: 0.6em 1em;
  border-left: 3px solid var(--red);
  background: var(--light-gray, #f5f5f5);
  color: var(--charcoal);
  font-style: italic;
}

.news-modal-source {
  margin: 1.6rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--gray-light);
  font-size: 0.85rem;
}
.news-modal-source a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
.news-modal-source a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .news-modal { padding: 0; }
  .news-modal-panel { border-radius: 0; min-height: 100vh; }
  .news-modal-content { padding: 1.3rem 1.2rem 1.6rem; }
  .news-modal-title { font-size: 1.5rem; }
}

/* ===========================================
   CONTACT ROSTER — twee groepen, kaartjes per functie
=========================================== */
.contact-group {
  margin-top: 2.5rem;
}
.contact-group:first-of-type {
  margin-top: 0;
}

.contact-group-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 1.25rem;
  padding-left: 0.9rem;
  border-left: 4px solid var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
/* Verticale ruimte tussen opeenvolgende sub-rijen in één groep */
.contact-group .contact-grid + .contact-grid {
  margin-top: 1rem;
}
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  border-color: rgba(225, 6, 0, 0.35);
}

.contact-card-avatar {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.contact-card-avatar-inbox {
  background: var(--red);
}
.contact-card-avatar-vacant {
  background: #d6d6d6;
  color: #6b6b6b;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0; /* allow long emails to wrap */
}

.contact-card-role {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.3;
  margin-bottom: 0.15rem;
}

.contact-card-name {
  font-family: 'Inter', 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 0.25rem;
}
.contact-card-name-muted {
  color: var(--gray);
  font-weight: 500;
  font-style: italic;
}

.contact-card-email,
.contact-card-phone {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
  text-decoration: none;
  word-break: break-word;
  line-height: 1.35;
}
.contact-card-email:hover,
.contact-card-phone:hover {
  color: var(--red);
  text-decoration: underline;
}

.contact-card-vacant {
  background: #fafafa;
  border-style: dashed;
}
.contact-card-vacant:hover {
  transform: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  border-color: var(--gray-light);
}

.contact-roster-hint {
  margin: 2rem 0 0;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  color: var(--gray-dark);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-group-title { font-size: 1.2rem; }
  .contact-card { padding: 0.95rem 1rem; }
  .contact-card-avatar { width: 42px; height: 42px; font-size: 0.95rem; }
}

/* =====================================================
   CONTACT MAP SECTION
   ===================================================== */
.contact-map-section { padding-top: 3rem; padding-bottom: 4rem; }
.contact-map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--gray-light);
  background: #fff;
  margin-top: 1.5rem;
}
.contact-map-frame {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(1.02);
}
.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: center;
}
.contact-map-actions .btn {
  min-width: 180px;
  text-align: center;
}
@media (max-width: 640px) {
  .contact-map-frame { height: 320px; }
  .contact-map-actions .btn { min-width: 0; flex: 1 1 140px; }
}
