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

  :root {
    --oranje: #e47154;
    --oranje-dark: #c45a3e;
    --oranje-licht: #fdf0ec;
    --blauw: #007bff;
    --blauw-dark: #0062cc;
    --blauw-licht: #e6f2ff;
    --zwart: #111111;
    --grijs: #f5f5f3;
    --grijs-mid: #e0e0de;
    --tekst: #1a1a1a;
    --tekst-zacht: #5a5a5a;
    --wit: #ffffff;
    --radius: 10px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--wit);
    color: var(--tekst);
    min-height: 100vh;
  }

  /* ── HEADER ── */
  header {
    background: var(--zwart);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--oranje);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .logo img {
    height: 48px;
    width: auto;
    display: block;
  }

  .logo-tekst { color: white; }
  .logo-tekst .naam {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: white;
  }
  .logo-tekst .sub {
    font-size: 0.68rem;
    color: #aaa;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
  }
  nav a:hover { color: white; background: rgba(255,255,255,0.08); }

  /* ── HERO ── */
  .hero {
    background-image: url(https://asterix-avo.be/wp-content/uploads/2024/07/53684132903_94c1cb7746_b-e1721332307280.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 2rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

  .hero-label {
    display: inline-block;
    background: var(--oranje);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 1.25rem;
  }

  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .hero h1 span { color: var(--oranje); }

  .hero p {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 2rem;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--oranje);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
  }
  .hero-cta:hover { background: var(--oranje-dark); transform: translateY(-1px); }
  .hero-cta svg { width: 18px; height: 18px; }

  /* ── SECTION GEMEENSCHAPPELIJK ── */
  section { padding: 4rem 2rem; }
  .container { max-width: 900px; margin: 0 auto; }

  .sectie-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--oranje);
    margin-bottom: 0.4rem;
  }

  .sectie-titel {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--zwart);
  }

  /* ── WEDSTRIJDEN ── */
  #wedstrijden { background: var(--grijs); }

  .wedstrijd-lijst { display: flex; flex-direction: column; gap: 16px; }

  .wedstrijd {
    background: white;
    border: 1.5px solid var(--grijs-mid);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem 1.25rem 1.75rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
  }
  .wedstrijd::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--oranje);
    border-radius: 4px 0 0 4px;
  }
  .wedstrijd:hover { border-color: var(--oranje); box-shadow: 0 2px 16px rgba(228,113,84,0.12); }

  .wedstrijd-teams {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--zwart);
    margin-bottom: 6px;
  }
  .wedstrijd-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
  }
  .wedstrijd-meta span {
    font-size: 0.82rem;
    color: var(--tekst-zacht);
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .wedstrijd-meta svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.6; }

  .badge-competitie {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--oranje-licht);
    color: var(--oranje-dark);
    white-space: nowrap;
  }

  .wedstrijd-acties {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .wedstrijd-prijs {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--zwart);
    text-align: right;
  }
  .wedstrijd-prijs span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--tekst-zacht);
    display: block;
    font-family: 'Barlow', sans-serif;
  }

  .btn-ticket {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blauw);
    color: white;
    border: none;
    border-radius: 7px;
    padding: 10px 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .btn-ticket:hover { background: var(--blauw-dark); transform: translateY(-1px); }
  .btn-ticket svg { width: 15px; height: 15px; }

  /* ── COUNTDOWN ── */
  .countdown-wrap {
    margin-top: 10px;
  }

  .countdown-label {
    font-size: 0.7rem;
    color: var(--tekst-zacht);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .countdown-label svg { width: 12px; height: 12px; opacity: 0.5; }

  .countdown {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .countdown-blok {
    background: var(--zwart);
    color: white;
    border-radius: 5px;
    padding: 5px 8px;
    text-align: center;
    min-width: 38px;
  }
  .countdown-blok .getal {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    display: block;
  }
  .countdown-blok .eenheid {
    font-size: 0.55rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #aaa;
    display: block;
    margin-top: 2px;
  }

  .countdown-sep {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--tekst-zacht);
    line-height: 1;
    margin-bottom: 8px;
  }

  .voorbij-tekst {
    font-size: 0.78rem;
    color: var(--oranje);
    font-weight: 600;
  }

  /* ── API WEDSTRIJD (eerste / volgende) ── */
  .wedstrijd-api-wrap {
    margin-bottom: 16px;
  }

  .api-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blauw);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .api-label::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--blauw);
    border-radius: 50%;
  }

  .wedstrijd.eerstvolgende {
    border-color: var(--blauw);
    border-width: 2px;
  }
  .wedstrijd.eerstvolgende::before { background: var(--blauw); }
  .wedstrijd.eerstvolgende:hover { border-color: var(--blauw-dark); box-shadow: 0 2px 20px rgba(0,123,255,0.15); }

  /* skeleton loader */
  .skeleton {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
    border-radius: 4px;
    display: inline-block;
  }
  @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

  .api-fout {
    background: #fff5f5;
    border: 1.5px solid #fdd;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    color: #c0392b;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* ── ALLE ACTIVITEITEN (API) ── */
  #alle-activiteiten { background: var(--wit); }

  .meer-wedstrijd {
    background: var(--grijs);
    border: 1.5px solid var(--grijs-mid);
    border-radius: var(--radius);
    padding: 1rem 1.5rem 1rem 1.75rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .meer-wedstrijd::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--grijs-mid);
    border-radius: 4px 0 0 4px;
  }
  .meer-wedstrijd:hover { border-color: var(--oranje); }
  .meer-wedstrijd:hover::before { background: var(--oranje); }

  .meer-teams {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--zwart);
    margin-bottom: 4px;
  }
  .meer-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  .meer-meta span {
    font-size: 0.78rem;
    color: var(--tekst-zacht);
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .meer-meta svg { width: 13px; height: 13px; opacity: 0.5; flex-shrink: 0; }
  .meer-prijs {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--zwart);
    white-space: nowrap;
  }
  .btn-ticket-sm {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--blauw);
    color: white;
    border-radius: 6px;
    padding: 7px 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .btn-ticket-sm:hover { background: var(--blauw-dark); transform: translateY(-1px); }
  .meer-acties { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }

  /* ── FUN FACTS ── */
  .about-funfact {
    background-image: url('https://asterix-avo.be/wp-content/uploads/2024/07/53683042657_c43f00a2ff_b-e1721332591876.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 0;
  }
  .about-funfact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
  }
  .wpfunfact {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .funfact-item {
    flex: 1 1 220px;
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .funfact-item:last-child { border-right: none; }
  .fun-fact-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .fun-fact-text h2 .counter { color: var(--oranje); }
  .fun-fact-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 0.75rem;
  }
  .fun-fact-text h6 {
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    color: #eac700;
    line-height: 1.6;
    letter-spacing: 3px;
    min-height: 2.8em;
  }
  @media (max-width: 600px) {
    .funfact-item { border-right: none; flex: 1 1 100%; }
  }

  /* ── SPONSORS CARROUSEL ── */
  .sponsors-sectie {
    background: var(--grijs);
    padding: 3rem 2rem;
    text-align: center;
  }
  .sponsors-sectie .sectie-label { text-align: center; }
  .sponsors-sectie .sectie-titel { text-align: center; }
  .owl-carousel .owl-item img {
    height: 70px;
    width: auto !important;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: 0.8;
    transition: filter 0.3s, opacity 0.3s;
    margin: 0 auto;
  }
  .owl-carousel .owl-item img:hover { filter: grayscale(0%); opacity: 1; }
  .owl-dots { margin-top: 1.5rem; }
  .owl-dot span {
    width: 8px; height: 8px;
    background: var(--grijs-mid) !important;
    border-radius: 50%;
    display: block;
  }
  .owl-dot.active span { background: var(--oranje) !important; }
  .owl-nav button {
    font-size: 1.4rem !important;
    color: var(--tekst-zacht) !important;
    background: none !important;
  }

  /* ── INFO STRIP ── */
  .info-strip {
    background: var(--zwart);
    color: white;
    padding: 2.5rem 2rem;
  }

  .info-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }

  .info-item { display: flex; gap: 14px; align-items: flex-start; }
  .info-icon {
    width: 40px; height: 40px;
    background: rgba(228,113,84,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .info-icon svg { width: 20px; height: 20px; stroke: var(--oranje); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .info-tekst h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }
  .info-tekst p { font-size: 0.85rem; color: #aaa; line-height: 1.5; }
  .info-tekst a { color: var(--oranje); text-decoration: none; }
  .info-tekst a:hover { text-decoration: underline; }

  /* ── FOOTER ── */
  footer {
    background: #0a0a0a;
    color: #666;
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 0.8rem;
    border-top: 1px solid #222;
  }
  footer a { color: var(--oranje); text-decoration: none; }
  footer a:hover { text-decoration: underline; }

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    .wedstrijd { grid-template-columns: 1fr; }
    .wedstrijd-acties { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    nav { display: none; }
  }