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

:root {
  --bg-dark: #0a0a0b;
  --card-bg: rgba(15, 15, 17, 0.32);
  --text-light: #f5f5f5;
  --text-muted: #b8b8b8;
  --accent: #ffffff;
  --pill-bg: rgba(255, 255, 255, 0.08);
  --pill-border: rgba(255, 255, 255, 0.16);
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Foto-Karussell im Hintergrund */
.bg-carousel {
  position: absolute;
  inset: 0;
}

.bg-slide {
  position: absolute;
  inset: 0;
  display: flex;
}

.bg-video {
  flex: 1;
  height: 100%;
  object-fit: cover;
}

/* Unter 900px nur eine Spalte (volle Breite), damit's auf dem Handy nicht
   in drei schmale Streifen zerschnitten wird. */
@media (max-width: 899px) {
  .bg-video:nth-child(2),
  .bg-video:nth-child(3) {
    display: none;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.42) 100%);
  z-index: 1;
}

.play-pause {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-pause:hover {
  background: rgba(255,255,255,0.2);
}

/* Zentrierte Karte */
.center-wrap {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 80px;
}

.card {
  width: min(420px, 100%);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
}

.card h1 {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 8px;
  margin-bottom: 4px;
}

.real-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 6px;
}

.tagline {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.follow-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 26px;
}

.socials a {
  color: var(--text-light);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.socials a:hover {
  opacity: 1;
}

.contact-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bg-dark);
  background: var(--accent);
  padding: 10px 24px;
  border-radius: 24px;
  text-decoration: none;
}

.contact-btn:hover {
  opacity: 0.85;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 24px 16px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 16px;
}

.footer-links a:hover {
  color: var(--text-light);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .card { padding: 28px 22px; }
  .card h1 { font-size: 32px; letter-spacing: 4px; }
  .center-wrap { padding: 80px 16px 70px; }
  .footer { padding: 12px 16px 14px; justify-content: center; text-align: center; }
  .footer-links a { margin: 0 8px; }
}
