:root {
  --bg: #05070d;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f2f3f7;
  --muted: #9aa0b2;
  --accent: #3dc2ff;
  --accent-2: #2f6bff;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { color-scheme: dark; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Achtergrond */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.5; }
.orb-a { width: 46vw; height: 46vw; top: -16vw; left: -10vw; background: radial-gradient(circle, #1f8fff, transparent 70%); animation: drift 18s ease-in-out infinite alternate; }
.orb-b { width: 40vw; height: 40vw; bottom: -14vw; right: -8vw; background: radial-gradient(circle, #00d4ff, transparent 70%); opacity: 0.35; animation: drift 22s ease-in-out infinite alternate-reverse; }
.grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%);
  opacity: 0.35;
}
@keyframes drift { to { transform: translate(6vw, 4vw) scale(1.1); } }

/* Header */
.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(16px, 4vw, 48px);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; font-family: var(--font-display); font-weight: 500; letter-spacing: 0.01em; }
.brand b { font-weight: 700; }

.brand-logo { height: 40px; width: auto; }
.hero-logo { display: block; width: clamp(120px, 22vw, 200px); height: auto; margin: 0 auto 8px; filter: drop-shadow(0 0 40px rgba(47, 140, 255, 0.45)); }

/* Layout */
main { flex: 1; display: grid; place-items: center; padding: 24px clamp(16px, 4vw, 48px) 64px; }
.hero, .reveal { width: 100%; max-width: 1100px; text-align: center; animation: rise 0.8s ease both; }
.reveal { max-width: 1400px; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 999px;
  background: var(--surface); color: var(--muted);
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(61, 194, 255, 0.6); animation: ping 1.8s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 10px rgba(61, 194, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 194, 255, 0); } }

h1, h2 { font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.02em; }
h1 { margin: 0 0 32px; font-size: clamp(2.4rem, 7vw, 5rem); }
h2 { margin: 20px 0 28px; font-size: clamp(1.8rem, 4.5vw, 3.2rem); }
.grad { background: linear-gradient(100deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { max-width: 560px; margin: 0 auto 40px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.15rem); }

/* Countdown */
.timer { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(8px, 2vw, 20px); max-width: 760px; margin: 0 auto; }
.tile {
  padding: clamp(14px, 3vw, 28px) 8px;
  border: 1px solid var(--border); border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  backdrop-filter: blur(8px);
}
.num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 8vw, 4.2rem); line-height: 1; font-variant-numeric: tabular-nums; }
.lbl { display: block; margin-top: 8px; color: var(--muted); font-size: clamp(0.65rem, 1.6vw, 0.8rem); text-transform: uppercase; letter-spacing: 0.14em; }
.when { margin-top: 18px; color: var(--muted); font-size: 0.9rem; }
.stream-announce { margin-top: 6px; color: var(--accent); font-weight: 600; }

/* Knoppen */
.cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 12px;
  font: 600 0.95rem var(--font-body); text-decoration: none; color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: #04101f; box-shadow: 0 10px 30px -10px rgba(47, 140, 255, 0.8); }
.btn-ghost { border: 1px solid var(--border); background: var(--surface); padding: 10px 20px; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); }
.reveal .btn-ghost { padding: 13px 26px; }

/* Teasers */
.teasers { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 64px; text-align: left; }
.teaser { padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); }
.teaser h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 6px; }
.teaser p { color: var(--muted); font-size: 0.92rem; }

/* Video */
.player {
  position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden;
  border: 1px solid var(--border); border-radius: clamp(14px, 2vw, 26px); background: #000;
  box-shadow: 0 40px 120px -30px rgba(47, 140, 255, 0.45), 0 0 0 1px rgba(255,255,255,0.03);
}
.player iframe, .player video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player .soon { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-family: var(--font-display); font-size: clamp(1.1rem, 3vw, 1.8rem); }

/* Footer */
.foot { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; padding: 20px clamp(16px, 4vw, 48px); border-top: 1px solid var(--border); color: var(--muted); font-size: 0.8rem; }
.dim { opacity: 0.6; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
