* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e0faff;
  background-color: #0c0c0c;
  overflow: hidden;
}

/* Hintergrund */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  z-index: -2;
}

/* Verstärkter Kameraeffekt */
.camera-overlay::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0.12) 2px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 10;
  animation: scanlines 0.8s linear infinite;
  opacity: 0.5;
}

@keyframes scanlines {
  0% { background-position: 0 0; }
  100% { background-position: 0 4px; }
}

/* REC Anzeige – größer und auffälliger */
.rec-indicator {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #ff3b3b;
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.6);
}

.rec-indicator .dot {
  width: 16px;
  height: 16px;
  background: red;
  border-radius: 50%;
  animation: blinkDot 1s steps(1) infinite;
}

@keyframes blinkDot {
  50% { opacity: 0; }
}

/* Logo und Titel */
.header {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

.logo {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.4));
}

.header-title {
  font-size: 2rem;
  font-weight: bold;
  color: #c2f5ff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

/* Teamliste */
.team-card {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background-color: rgba(0, 10, 20, 0.6);
  padding: 20px;
  border-radius: 16px;
  width: 280px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.1);
  z-index: 10;
}

.team-card h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #a8ecff;
  text-shadow: 0 0 4px rgba(0, 255, 255, 0.2);
}

.team-member {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #d8faff;
}

.team-member .role {
  font-size: 1.1rem;
}

.team-member .info {
  display: flex;
  flex-direction: column;
}

.team-member .name {
  font-weight: bold;
}

.team-member .title {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Tippbox */
.tip-box {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background-color: rgba(0, 10, 20, 0.6);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1rem;
  max-width: 300px;
  color: #bdefff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  z-index: 10;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .team-card, .tip-box {
    width: 90%;
    left: 5%;
    right: 5%;
    bottom: 20px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    width: 60px;
  }
}
