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

body {
  background: #000000;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Inter", system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Weißer Rauch nur an den Seiten */
.smoke-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.smoke-wisp {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.6) 20%, 
    rgba(255, 255, 255, 0.3) 40%, 
    rgba(255, 255, 255, 0.1) 60%, 
    transparent 80%);
  filter: blur(60px);
  opacity: 0;
}

.smoke-wisp-1 {
  width: 200px;
  height: 300px;
  left: 15%;
  bottom: -200px;
  animation: smokeRise1 8s linear infinite;
  animation-delay: 0s;
}

.smoke-wisp-2 {
  width: 150px;
  height: 250px;
  left: 25%;
  bottom: -200px;
  animation: smokeRise2 10s linear infinite;
  animation-delay: 2s;
}

.smoke-wisp-3 {
  width: 180px;
  height: 280px;
  left: 75%;
  bottom: -200px;
  animation: smokeRise3 9s linear infinite;
  animation-delay: 4s;
}

.smoke-wisp-4 {
  width: 160px;
  height: 260px;
  left: 80%;
  bottom: -200px;
  animation: smokeRise4 11s linear infinite;
  animation-delay: 1s;
}

.smoke-wisp-5 {
  width: 140px;
  height: 220px;
  left: 20%;
  bottom: -200px;
  animation: smokeRise5 7s linear infinite;
  animation-delay: 5s;
}

.smoke-wisp-6 {
  width: 170px;
  height: 240px;
  left: 70%;
  bottom: -200px;
  animation: smokeRise6 12s linear infinite;
  animation-delay: 3s;
}

@keyframes smokeRise1 {
  0% { 
    transform: translateY(0) translateX(0) scale(0.3) rotate(0deg); 
    opacity: 0; 
  }
  5% { 
    opacity: 0.8; 
    transform: translateY(10px) translateX(15px) scale(0.4) rotate(2deg);
  }
  15% { 
    opacity: 0.9; 
    transform: translateY(30px) translateX(25px) scale(0.6) rotate(-1deg);
  }
  30% { 
    opacity: 0.8; 
    transform: translateY(80px) translateX(35px) scale(0.8) rotate(3deg);
  }
  50% { 
    opacity: 0.7; 
    transform: translateY(150px) translateX(40px) scale(1.0) rotate(-2deg);
  }
  70% { 
    opacity: 0.6; 
    transform: translateY(220px) translateX(45px) scale(1.1) rotate(4deg);
  }
  85% { 
    opacity: 0.4; 
    transform: translateY(280px) translateX(50px) scale(1.2) rotate(-1deg);
  }
  100% { 
    transform: translateY(-120vh) translateX(60px) scale(1.5) rotate(5deg); 
    opacity: 0; 
  }
}

@keyframes smokeRise2 {
  0% { 
    transform: translateY(0) translateX(0) scale(0.2) rotate(0deg); 
    opacity: 0; 
  }
  8% { 
    opacity: 0.7; 
    transform: translateY(15px) translateX(20px) scale(0.3) rotate(-1deg);
  }
  20% { 
    opacity: 0.8; 
    transform: translateY(40px) translateX(30px) scale(0.5) rotate(2deg);
  }
  35% { 
    opacity: 0.7; 
    transform: translateY(90px) translateX(35px) scale(0.7) rotate(-1deg);
  }
  55% { 
    opacity: 0.6; 
    transform: translateY(160px) translateX(40px) scale(0.9) rotate(3deg);
  }
  75% { 
    opacity: 0.4; 
    transform: translateY(240px) translateX(45px) scale(1.0) rotate(-2deg);
  }
  100% { 
    transform: translateY(-120vh) translateX(50px) scale(1.3) rotate(-3deg); 
    opacity: 0; 
  }
}

@keyframes smokeRise3 {
  0% { 
    transform: translateY(0) translateX(0) scale(0.4) rotate(0deg); 
    opacity: 0; 
  }
  6% { 
    opacity: 0.9; 
    transform: translateY(20px) translateX(-20px) scale(0.5) rotate(-2deg);
  }
  18% { 
    opacity: 1; 
    transform: translateY(50px) translateX(-30px) scale(0.7) rotate(1deg);
  }
  32% { 
    opacity: 0.8; 
    transform: translateY(100px) translateX(-35px) scale(0.9) rotate(-1deg);
  }
  48% { 
    opacity: 0.7; 
    transform: translateY(170px) translateX(-40px) scale(1.1) rotate(2deg);
  }
  68% { 
    opacity: 0.5; 
    transform: translateY(250px) translateX(-45px) scale(1.2) rotate(-3deg);
  }
  100% { 
    transform: translateY(-120vh) translateX(-50px) scale(1.6) rotate(-8deg); 
    opacity: 0; 
  }
}

@keyframes smokeRise4 {
  0% { 
    transform: translateY(0) translateX(0) scale(0.5) rotate(0deg); 
    opacity: 0; 
  }
  10% { 
    opacity: 0.8; 
  }
  90% { 
    opacity: 0.6; 
  }
  100% { 
    transform: translateY(-120vh) translateX(30px) scale(1.1) rotate(6deg); 
    opacity: 0; 
  }
}

@keyframes smokeRise5 {
  0% { 
    transform: translateY(0) translateX(0) scale(0.4) rotate(0deg); 
    opacity: 0; 
  }
  10% { 
    opacity: 0.7; 
  }
  90% { 
    opacity: 0.5; 
  }
  100% { 
    transform: translateY(-120vh) translateX(10px) scale(1.0) rotate(2deg); 
    opacity: 0; 
  }
}

@keyframes smokeRise6 {
  0% { 
    transform: translateY(0) translateX(0) scale(0.5) rotate(0deg); 
    opacity: 0; 
  }
  10% { 
    opacity: 0.8; 
  }
  90% { 
    opacity: 0.6; 
  }
  100% { 
    transform: translateY(-120vh) translateX(-20px) scale(1.2) rotate(-5deg); 
    opacity: 0; 
  }
}

.container {
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 10;
}

/* Banner Text */
.banner {
  margin-bottom: 80px;
  margin-top: 20px;
  animation: fadeIn 1.5s ease-in;
}

.banner p {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.9;
}

/* Logo Container mit Puls-Animation */
.logo-container {
  margin: 40px auto 80px;
  animation: fadeIn 2s ease-in;
}

.logo {
  width: 600px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(66, 133, 244, 0.5));
}


/* Countdown Container */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 40px auto;
  animation: fadeIn 2.5s ease-in;
}

.countdown-segment {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 15px 20px;
  min-width: 60px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
              inset 0 1px 1px 0 rgba(255, 255, 255, 0.1);
}

.countdown-segment span {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  display: block;
}

.countdown-dot {
  padding: 0 5px;
}

.countdown-dot span {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

/* Flacker Animation */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.5);
  }
  20%, 24%, 55% {
    opacity: 0.4;
    text-shadow: none;
  }
}

.flicker {
  animation: flicker 3s linear infinite;
}

.flicker.delay-1 {
  animation-delay: 0.3s;
}

.flicker.delay-2 {
  animation-delay: 0.6s;
}

.flicker.delay-3 {
  animation-delay: 0.9s;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner p {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .logo {
    width: 300px;
  }

  .countdown {
    gap: 4px;
  }

  .countdown-segment {
    padding: 12px 15px;
    min-width: 50px;
  }

  .countdown-segment span,
  .countdown-dot span {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .banner p {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .logo {
    width: 250px;
  }

  .countdown {
    gap: 3px;
  }

  .countdown-segment {
    padding: 10px 12px;
    min-width: 45px;
  }

  .countdown-segment span,
  .countdown-dot span {
    font-size: 18px;
  }
}