*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html, body {
  height: 100%;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,0,0,.08), transparent 60%);
  pointer-events: none;
}
main { position: relative; z-index: 1; max-width: 32rem }
img.logo {
  width: 16rem;
  height: auto;
  margin-bottom: 2rem;
  /* Logo ist echtes RGBA-PNG: weisse Letters auf transparenter Flaeche.
   * Kein Filter-Trick noetig. Drop-shadow gibt subtilen Glow. */
  filter: drop-shadow(0 0 32px rgba(255,255,255,.1));
}
h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: .18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.dot {
  display: inline-block;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #f00;
  margin: 0 .35rem .15rem;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .3 }
  50%      { opacity: 1 }
}
p.tag {
  font-size: .95rem;
  letter-spacing: .32em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
p.body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #bbb;
  margin-bottom: 2.5rem;
}
.stream {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.6rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color .2s, background .2s;
}
.stream:hover,
.stream:focus-visible {
  border-color: #fff;
  background: rgba(255,255,255,.06);
  outline: none;
}
.stream::before {
  content: "";
  display: inline-block;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #f00;
  box-shadow: 0 0 8px #f00;
  animation: pulse 1.6s ease-in-out infinite;
}
footer {
  position: fixed;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  font-size: .72rem;
  color: #444;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 480px) {
  body { padding: 1.25rem }
  img.logo { width: 8rem; margin-bottom: 2rem }
  p.tag { margin-bottom: 2rem }
}
