:root {
  --neon-pink: #ff0080;
  --neon-blue: #00e0ff;
  --bg-dark: #05020e;
  --glow-pink: rgba(255, 0, 128, 0.7);
  --glow-blue: rgba(0, 224, 255, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-dark);
  color: white;
  font-family: 'Arial', sans-serif;
  height: 100vh;
  overflow: hidden;
  position: relative; /* für footer-Positionierung */
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 200px;
  animation: glow 2s ease-in-out infinite alternate;
}

h1 {
  margin-top: 20px;
  font-size: 3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
}

#countdown {
  display: flex;
  margin-top: 30px;
  gap: 20px;
}

.time-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-segment span {
  display: block;
}

.time-segment #days,
.time-segment #hours,
.time-segment #minutes,
.time-segment #seconds {
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow:
    0 0 8px var(--glow-pink),
    0 0 16px var(--glow-pink),
    0 0 24px var(--glow-blue),
    0 0 32px var(--glow-blue);
}

.label {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #aaa;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 6px var(--glow-pink)) drop-shadow(0 0 12px var(--glow-blue));
  }
  to {
    filter: drop-shadow(0 0 20px var(--glow-pink)) drop-shadow(0 0 40px var(--glow-blue));
  }
}

/* Slogan */
.slogan {
  margin: 15px 0 30px;
  font-size: 1.2rem;
  color: #aaa;
}

/* Icons als große Buttons */
.contact-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 1rem;
}

.contact-item i {
  font-size: 3rem;          /* große Icons */
  margin-bottom: 8px;
  transition: transform 0.3s;
}

.contact-item:hover i {
  transform: scale(1.1);
}

.contact-item span {
  font-size: 0.9rem;
  color: #aaa;
}


#qr-code {
  margin: 2rem 0;
}

.container h1 {
 margin-top: 20px;
  font-size: 3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
}

.slogan {
  color: #aaa;
  font-size: 1.2rem;
  margin-top: .5em;
}

/* Icons im Footer usw. bleiben wie gehabt */


/* footer */
.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer nav a {
  color: #aaa;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}

.footer nav a:hover {
  color: var(--neon-pink);
}
