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

:root {
  --geel: #FFD700;
  --zwart: #0a0a0a;
}

body {
  background: var(--zwart);
  color: var(--geel);
  font-family: 'Roboto Condensed', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Van_Arnhem_wapen.svg/472px-Van_Arnhem_wapen.svg.png') center/55vh no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* ── POPUP ── */
#popup {
  position: fixed;
  inset: 0;
  background: var(--zwart);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
}

#popup img {
  width: min(320px, 75vw);
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.5));
  transition: transform 0.2s, filter 0.2s;
}

#popup:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 55px rgba(255,215,0,0.95));
}

#enter-label {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--geel);
  letter-spacing: 0.4em;
  margin-bottom: 32px;
  animation: blink 1s step-start infinite;
}

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

/* ── MAIN ── */
#main {
  display: none;
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 60px;
  width: 100%;
  min-height: 100vh;
  gap: 24px;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--geel);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(255,215,0,0.35);
  margin-bottom: 48px;
  text-align: center;
}

/* ── PLAYER OUTER ── */
#player-outer {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

#arnhem-wapen {
  position: fixed;
  left: 2vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(120px, 18vw, 240px);
  opacity: 0;
  transition: opacity 5s ease-in;
  z-index: 2;
}

#arnhem-wapen.zichtbaar {
  opacity: 0.85;
}

/* ── GLASSMORPHISM PLAYER ── */
#player-wrap {
  background: rgba(255, 215, 0, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 40px rgba(255,215,0,0.06), inset 0 1px 0 rgba(255,215,0,0.15);
}

#track-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--geel);
  text-transform: uppercase;
  text-align: center;
}

#disclaimer {
  font-size: 0.78rem;
  color: rgba(255,215,0,0.5);
  text-align: center;
  font-style: italic;
  line-height: 1.4;
}

audio {
  width: 100%;
  margin-top: 8px;
}

/* ── LOGO HOEK ── */
#logo-hoek {
  position: fixed;
  top: 16px;
  right: 20px;
  width: clamp(80px, 12vw, 140px);
  opacity: 0;
  transition: opacity 30s ease-in;
  z-index: 2;
  pointer-events: none;
}

#logo-hoek.zichtbaar {
  opacity: 0.9;
}

/* ── ZWEVENDE LOGO'S ── */
.zweef-logo {
  position: fixed;
  width: clamp(60px, 8vw, 110px);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 4s ease-in-out;
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.2));
}

.zweef-logo.zichtbaar {
  opacity: 0.18;
}

/* ── TEKST ── */
#tekst-wrap {
  position: relative;
  min-height: 80px;
  width: 100%;
  max-width: 640px;
  text-align: center;
}

#tekst1, #tekst2 {
  font-family: 'Roboto Condensed', monospace;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--geel);
  line-height: 1.6;
  min-height: 2.5em;
  transition: opacity 30s ease-out;
  white-space: pre-line;
}

#tekst2 {
  opacity: 0;
  transition: opacity 20s ease-in;
}

/* ── FOOTER ── */
#footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: #fff;
  padding: 6px 0 2px 0;
  opacity: 0.8;
  z-index: 10;
}

#footer a {
  color: #fff;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}
