*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { user-select: none; -webkit-user-select: none; }

:root {
  --geel: #F5E642;
  --zwart: #111010;
  --wit: #F7F4EE;
  --rood: #E8341A;
}

html, body {
  height: 100%;
  background: var(--zwart);
  color: var(--wit);
  font-family: 'Crimson Pro', serif;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10;
  opacity: 0.35;
}

.scene {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.highlight-bar {
  background: var(--geel);
  padding: 0.15em 0.4em;
  display: inline-block;
  transform: rotate(-1.2deg) skewX(-2deg);
  margin-bottom: 0.5rem;
}

.main-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 22vw, 14rem);
  line-height: 0.88;
  color: var(--zwart);
  letter-spacing: -0.01em;
  animation: slam 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.1s;
}

@keyframes slam {
  0%   { transform: scale(2.5) rotate(-4deg); opacity: 0; }
  60%  { transform: scale(0.97) rotate(0.3deg); opacity: 1; }
  80%  { transform: scale(1.02); }
  100% { transform: scale(1) rotate(0); }
}

.subtitle {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 3.5vw, 2rem);
  color: var(--wit);
  opacity: 0;
  animation: fade-up 0.6s ease forwards;
  animation-delay: 0.55s;
  margin-top: 1.2rem;
  max-width: 480px;
  line-height: 1.5;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 0.85; transform: translateY(0); }
}

.tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  letter-spacing: 0.18em;
  color: var(--rood);
  margin-top: 2.5rem;
  opacity: 0;
  animation: fade-up 0.5s ease forwards;
  animation-delay: 1s;
  text-transform: uppercase;
}

.tagline span {
  border-bottom: 2px solid var(--rood);
  padding-bottom: 1px;
}

.corner {
  position: fixed;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(247,244,238,0.18);
  text-transform: uppercase;
}
.corner-tl { top: 1.5rem; left: 1.5rem; }
.corner-br { bottom: 1.5rem; right: 1.5rem; }

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--rood);
  border-radius: 50%;
  margin: 0 0.3em;
  animation: blink 1.8s ease-in-out infinite;
  animation-delay: 1.2s;
  opacity: 0;
}

@keyframes blink {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

.stripe {
  position: fixed;
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  border: 18px solid var(--geel);
  border-radius: 50%;
  opacity: 0.06;
  transform: rotate(12deg);
}

.stripe2 {
  position: fixed;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 12px solid var(--rood);
  border-radius: 50%;
  opacity: 0.08;
}

.easter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(247,244,238,0.15);
  letter-spacing: 0.05em;
  transition: color 0.3s;
  cursor: default;
  white-space: nowrap;
}
.easter:hover { color: rgba(247,244,238,0.5); }

.flash {
  position: fixed;
  inset: 0;
  background: var(--geel);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.flash.go {
  animation: flash-anim 0.4s ease forwards;
}

@keyframes flash-anim {
  0%   { opacity: 0.6; }
  100% { opacity: 0; }
}

.reaction {
  position: fixed;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 6vw, 3rem);
  color: var(--geel);
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  white-space: nowrap;
}
.reaction.pop {
  animation: reaction-anim 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes reaction-anim {
  0%   { opacity: 1; transform: translateY(0) scale(0.8); }
  40%  { opacity: 1; transform: translateY(-30px) scale(1.1); }
  100% { opacity: 0; transform: translateY(-80px) scale(0.9); }
}

