@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #222, #444);
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 2rem 0; /* minimaler Abstand oben/unten */
}

.container {
  text-align: center;
  max-width: 600px;
  width: 90%;
  padding: 1rem; /* minimaler Innenabstand */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 100px;
  margin-bottom: 0.2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem;
}

#lottie-container {
  width: 100%;
  max-height: 60vh; /* maximal 60% der Viewport-Höhe */
  margin: 0.5rem 0; /* minimaler Abstand oben/unten */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

h1 {
  font-size: 2rem;
  margin: 0.2rem 0;
}

p {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0.2rem 0;
}

.countdown {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.2rem 0;
}

.contact a {
  color: #00bfff;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.2rem;
}

.contact a:hover {
  text-decoration: underline;
}

/* Responsive Anpassung */
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  .countdown { font-size: 1rem; }
  #lottie-container { max-height: 50vh; } /* kleinere Animation mobil */
}
