:root {
  --bg: #0d0a0a;
  --accent: #fc9797;
  --accent-strong: #f5402b;
  --card: rgba(255, 255, 255, 0.07);
  --card-hover: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.14);
  --text: #f7f4f2;
  --muted: rgba(247, 244, 242, 0.62);
  --radius: 16px;
  --maxw: 520px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  min-height: 100svh;
  background: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  padding: clamp(58px, 9vw, 76px) 18px clamp(28px, 6vw, 56px);
  position: relative;
  overflow-x: hidden;
}

/* Unscharfer Foto-Hintergrund (vorgeblurt) + Verdunklung */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: url("assets/bg.webp") center / cover no-repeat;
  transform: scale(1.1);
  animation: bgDrift 12s ease-in-out infinite alternate;
  will-change: transform;
}
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(245, 64, 43, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(13, 10, 10, 0.55), rgba(13, 10, 10, 0.9));
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

/* Profil */
.profile { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  box-shadow: 0 0 0 6px rgba(245, 64, 43, 0.12), 0 18px 40px rgba(0, 0, 0, 0.5);
  animation: floatLogo 2.3s ease-in-out infinite alternate;
  will-change: transform;
}
.tagline { font-size: 1.05rem; font-weight: 600; line-height: 1.4; letter-spacing: 0.2px; }
.tagline span { display: inline-block; margin-top: 4px; font-weight: 500; color: var(--muted); font-size: 0.92rem; }
.tagline .flag { height: 0.8em; width: auto; vertical-align: -0.08em; margin: 0 1px; }

/* Player */
.players { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.player { width: 100%; }

.facade {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font: inherit;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.facade:hover,
.facade:focus-visible {
  background: var(--card-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  outline: none;
}
.facade:focus-visible { box-shadow: 0 0 0 3px var(--accent); }
.facade img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.facade .meta { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.facade .title { font-weight: 700; font-size: 1rem; line-height: 1.25; }
.facade .sub { font-size: 0.8rem; color: var(--muted); }
.facade .play {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #fff;
  box-shadow: 0 6px 16px rgba(245, 64, 43, 0.4);
}

/* Eingebetteter Spotify-Player nach Klick */
.player iframe {
  width: 100%;
  border: 0;
  border-radius: 14px;
  display: block;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

/* Social-Icons */
.socials { display: flex; gap: 14px; }
.socials a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.socials a:hover,
.socials a:focus-visible { background: var(--accent); color: #1a0f0f; transform: translateY(-2px); outline: none; }
.socials a:focus-visible { box-shadow: 0 0 0 3px rgba(252, 151, 151, 0.6); }

/* Footer */
.foot { text-align: center; font-size: 0.8rem; color: var(--muted); display: flex; flex-direction: column; gap: 8px; align-items: center; }
.foot-links { display: flex; align-items: center; gap: 4px; }
.foot a { color: var(--muted); text-decoration: none; padding: 4px 6px; }
.foot a:hover { color: var(--text); text-decoration: underline; }
.foot span { margin: 0 4px; }
.foot .copy { opacity: 0.7; font-size: 0.74rem; }

/* Mobile */
@media (max-width: 420px) {
  .facade .title { font-size: 0.94rem; }
  .avatar { width: 96px; height: 96px; }
}

@keyframes floatLogo {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}
@keyframes bgDrift {
  from { transform: scale(1.12) translate(-2.2%, -1.6%); }
  to   { transform: scale(1.2) translate(2.2%, 1.8%); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .avatar, .bg { animation: none !important; }
  .bg { transform: scale(1.1); }
}

/* Legal-Seiten (Impressum / Datenschutz) */
.legal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(13, 10, 10, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 5vw, 40px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.legal h1 { font-size: 1.6rem; margin-bottom: 18px; }
.legal h2 { font-size: 1.1rem; margin: 26px 0 8px; color: var(--accent); }
.legal p, .legal li { color: var(--muted); line-height: 1.6; font-size: 0.95rem; }
.legal ul { padding-left: 20px; margin: 6px 0; }
.legal a { color: var(--accent); }
.legal .back { display: inline-block; margin-bottom: 18px; color: var(--text); text-decoration: none; font-weight: 600; }
.legal .back:hover { text-decoration: underline; }
.legal .ph { color: var(--accent-strong); font-weight: 600; }

/* Sprachumschalter (fix oben rechts, Desktop + Mobil) */
.lang-switch {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 50;
  display: flex;
  gap: 2px;
  padding: 4px;
  background: rgba(13, 10, 10, 0.6);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lang-switch button {
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  min-height: 40px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active { background: var(--accent); color: #1a0f0f; }
.lang-switch button:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--accent); }

/* Follow-CTA (Spotify-Grün) */
.follow-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px 18px;
  border-radius: 999px;
  background: #1db954;
  color: #06120a;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(29, 185, 84, 0.3);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}
.follow-cta:hover,
.follow-cta:focus-visible { transform: translateY(-2px); filter: brightness(1.05); outline: none; }
.follow-cta:focus-visible { box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.5); }

/* Track-Einreichung (WhatsApp) */
.submit { width: 100%; text-align: center; display: flex; flex-direction: column; gap: 10px; }
.submit h2 { font-size: 1.02rem; font-weight: 700; }
.submit-hint { font-size: 0.85rem; color: var(--muted); line-height: 1.45; }
.track-form { display: flex; flex-direction: column; gap: 8px; }
.track-form input {
  width: 100%;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}
.track-form input::placeholder { color: rgba(247, 244, 242, 0.45); }
.track-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(252, 151, 151, 0.22); }
.wa-btn {
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  color: #06120a;
  background: #25d366;
  border: 0;
  border-radius: 12px;
  padding: 13px 16px;
  min-height: 46px;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.wa-btn:hover,
.wa-btn:focus-visible { transform: translateY(-2px); filter: brightness(1.04); outline: none; }
.wa-btn:focus-visible { box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.5); }

/* Legal: Disclaimer-Banner + Trenner */
.legal hr { border: none; border-top: 1px solid var(--border); margin: 34px 0; }
.disclaimer {
  background: rgba(245, 64, 43, 0.12);
  border: 1px solid rgba(245, 64, 43, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 22px;
}
