* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  height: 100vh;
  background: radial-gradient(circle at center, #1a0000, #000000);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden;
}

/* Container */
.container {
  text-align: center;
  position: relative;
}

/* Logo */
.logo {
  font-size: 5rem;
  letter-spacing: 8px;
  color: #ff1a1a;
  text-shadow:
    0 0 10px #ff1a1a,
    0 0 20px #ff0000,
    0 0 40px #ff0000;
}

/* Tagline */
.tagline {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #ccc;
  opacity: 0.8;
}

/* Line */
.line {
  width: 80px;
  height: 3px;
  background: #ff1a1a;
  margin: 20px auto;
  box-shadow: 0 0 10px #ff0000;
}

/* Coming Soon */
.coming {
  font-size: 1.5rem;
  letter-spacing: 5px;
  color: white;
  animation: pulse 2s infinite;
}

/* Glow Effekt im Hintergrund */
.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: #ff0000;
  filter: blur(120px);
  opacity: 0.2;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Animation */
@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}