* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  line-height: 1.6;
  padding: 0 15px;
}

/* Header */
header {
  padding: 30px 20px 20px;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content h1 {
  font-size: 2rem;
  color: transparent;
  background: linear-gradient(90deg, #ffcc00, #ff33cc, #00e6e6, #ffcc00);
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: party-gradient 5s linear infinite;
  margin-bottom: 5px;
}

@keyframes party-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.header-content p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 15px;
}

nav a {
  text-decoration: none;
  color: #4fc3f7;
  margin: 0 12px;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #81d4fa;
}


/* Infoboxen */
.quick-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
  margin: 40px 0 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown {
  text-align: center;
  margin: 30px 0;
}

.countdown h2 {
  color: #4fc3f7;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

#timer {
  font-size: 1.6rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 25px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


.info-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 16px;       /* Weniger oben/unten! */
  border-radius: 10px;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.info-box h3 {
  color: #4fc3f7;
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.info-box p {
  font-size: 1rem;
  color: #eee;
}

.info-box a {
  color: #4fc3f7;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* Info-Abschnitt */
.info {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.info h2 {
  color: #4fc3f7;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.info p {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.info ul {
  list-style: disc inside;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 20px;
}

.info li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Karte */
.image-container {
  text-align: center;
  margin-top: 20px;
}

.map-image {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.bildlegende {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
}

footer a {
  color: #4fc3f7;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  nav a {
    display: block;
    margin: 5px 0;
  }
}

.info.small p,
.info.small li {
  font-size: 1.1rem;
}

.info.small h2 {
  font-size: 1.3rem;
}

.info.small ul {
  margin-bottom: 20px;
}

strong {
  font-weight: 700 !important;
}

.info-box a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

.info-box a:hover {
  color: #4fc3f7;
  text-decoration: underline;
}
.black {
  color: #000 !important;
}

header {
  position: relative;
  overflow: hidden;
}

/* Konfetti-Container */
header::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; height: 100px;
  pointer-events: none;
  z-index: 2;
  /* Das Konfetti wird per innerHTML mit CSS-Trick erzeugt */
  display: block;
  width: 100%;
  height: 0;
  /* Kein sichtbarer Balken, nur zum Halten der Animationen */
}

/* Konfetti - einzelne bunte Kreise als absolute Elemente */
.confetti-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0.8;
  animation: confetti-fall 2.8s linear infinite;
}

.confetti-dot.dot1 { left: 8%;  background: #ffcc00; animation-delay: 0s; }
.confetti-dot.dot2 { left: 20%; background: #ff33cc; animation-delay: .5s; }
.confetti-dot.dot3 { left: 33%; background: #00e6e6; animation-delay: 1s; }
.confetti-dot.dot4 { left: 50%; background: #ff6666; animation-delay: 1.5s; }
.confetti-dot.dot5 { left: 65%; background: #66ff66; animation-delay: .8s; }
.confetti-dot.dot6 { left: 78%; background: #3399ff; animation-delay: 1.2s; }
.confetti-dot.dot7 { left: 91%; background: #ff9933; animation-delay: 0.3s; }

@keyframes confetti-fall {
  0% {
    top: -20px;
    opacity: 0.9;
    transform: scale(1) rotate(0deg);
  }
  80% {
    opacity: 0.9;
    transform: scale(1.1) rotate(40deg);
  }
  100% {
    top: 110px;
    opacity: 0;
    transform: scale(0.9) rotate(80deg);
  }
}

.info ul,
.info.small ul {
  list-style: disc inside;
  margin-left: 0;
  padding-left: 2em;   /* <-- Hier den Wert nach Geschmack erhöhen! */
  margin-bottom: 20px;
}
.info-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 35px 0 20px 0;
}
.ablauf-card {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.13);
  padding: 18px 18px 12px 18px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 260px;
  text-align: left; 
}
.ablauf-card h2 {
  color: #4fc3f7;
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.ablauf-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}
.ablauf-card li {
  font-size: 1rem;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .info-cards { flex-direction: column; gap: 14px; }
  .ablauf-card { max-width: 97vw; min-width: 0; }
}
.special-link {
  color: #ffe066;        /* Zum Beispiel ein kräftiges Gelb, du kannst auch #ff6600 oder jede beliebige Farbe nehmen */
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.2s;
}
.special-link:hover {
  color: #ff33cc;        /* Oder eine auffällige Hoverfarbe */
}
h3 a:hover {
  text-decoration: underline;
  color: #ffe066;
}
.blinking {
  animation: blinking 1s steps(2, start) infinite;
  color: #ff3333;
}

@keyframes blinking {
  to {
    visibility: hidden;
  }
}
.red {
  color: #ff3333;
}