:root {
    --bg: #050505;
    --surface: rgba(255,255,255,0.04);
    --surface-2: rgba(255,255,255,0.07);
    --border: rgba(255,255,255,0.12);
    --text: #f5f5f5;
    --muted: #b9b9b9;
    --red: #e10613;
    --red-2: #ff3341;
    --blue: #7ab8ff;
    --shadow: 0 20px 50px rgba(0,0,0,0.45);
    --radius: 22px;
    --max: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
    radial-gradient(circle at 15% 20%, rgba(225, 6, 19, 0.16), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(122, 184, 255, 0.12), transparent 25%),
    radial-gradient(circle at 50% 80%, rgba(225, 6, 19, 0.12), transparent 30%),
    #050505;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.09;
    background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 100% 3px, 3px 100%;
    mix-blend-mode: soft-light;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.3) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.2) 0 1px, transparent 1px);
    background-size: 180px 180px, 220px 220px;
    animation: noiseFloat 12s linear infinite;
}

@keyframes noiseFloat {
    0% { transform: translate(0,0); }
    50% { transform: translate(-8px, 6px); }
    100% { transform: translate(0,0); }
}

.wrap {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(5,5,5,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: white;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 14px;
    display: grid;
    place-items: center;
    background:
    linear-gradient(135deg, rgba(225,6,19,0.25), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.04);
    box-shadow: 0 0 24px rgba(225,6,19,0.16);
}

.brand-mark svg {
    width: 28px;
    height: 28px;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-family: "Permanent Marker", cursive;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: var(--red-2);
}

.brand-text span {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.92rem;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: 0.25s ease;
}

.nav a:hover {
    color: white;
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
}

.nav .cta {
    background: linear-gradient(135deg, var(--red), #7d0008);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(225,6,19,0.22);
}

.btn-nav-albums {
    text-decoration: none;
    color: var(--bg);
    background: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: 0.25s ease;
}

.btn-nav-albums:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(255,255,255,0.14);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    padding: 72px 0 40px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.eyebrow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 16px rgba(225,6,19,0.85);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.65; }
}

h1 {
    font-family: "Permanent Marker", cursive;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 0.92;
    color: var(--red-2);
    text-transform: uppercase;
    text-shadow:
    0 0 18px rgba(225, 6, 19, 0.28),
    0 0 50px rgba(225, 6, 19, 0.16);
    transform: rotate(-2deg);
    margin-bottom: 18px;
}

.hero-text p {
    max-width: 58ch;
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.8;
}

.hero-text p + p {
    margin-top: 14px;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: 1px solid rgba(255,255,255,0.12);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--red), #7e0009);
    box-shadow: 0 14px 34px rgba(225, 6, 19, 0.24);
}

.btn-secondary {
    color: white;
    background: rgba(255,255,255,0.05);
}

.cover-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.12);
    background: #0f0f10;
    transform: rotate(2deg);
}

.cover-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    filter: contrast(1.06) saturate(0.98);
}

.cover-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.02)),
    linear-gradient(to right, rgba(225,6,19,0.08), transparent 30%);
    pointer-events: none;
}

.scribble {
    position: absolute;
    font-family: "Permanent Marker", cursive;
    color: var(--red-2);
    opacity: 0.95;
    pointer-events: none;
    text-shadow: 0 0 12px rgba(225,6,19,0.25);
}

.scribble.one {
    top: 16px;
    right: 20px;
    font-size: 1.6rem;
    transform: rotate(9deg);
}

.scribble.two {
    bottom: 20px;
    left: 16px;
    font-size: 1.2rem;
    transform: rotate(-10deg);
}

.floating-ui {
    position: absolute;
    right: -12px;
    top: 12%;
    display: grid;
    gap: 10px;
    z-index: 3;
}

.ui-bubble {
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 12px 26px rgba(0,0,0,0.28);
    animation: floaty 4s ease-in-out infinite;
}

.ui-bubble:nth-child(2) { animation-delay: .7s; }
.ui-bubble:nth-child(3) { animation-delay: 1.3s; }

@keyframes floaty {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section {
    padding: 34px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.panel {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius);
    padding: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.panel::after {
    content: "";
    position: absolute;
    inset: auto -40px -50px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225,6,19,0.15), transparent 68%);
    pointer-events: none;
}

.panel h2 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.panel p {
    color: var(--muted);
    line-height: 1.8;
}

.quote {
    font-family: "Permanent Marker", cursive;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    line-height: 1.15;
    color: #fff;
    margin-top: 12px;
    max-width: 18ch;
}

.quote .strike {
    color: var(--red-2);
    text-decoration: line-through;
    text-decoration-thickness: 3px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    color: #e9e9e9;
    font-size: 0.9rem;
}

.facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.fact {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
}

.fact small {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    font-size: 0.75rem;
}

.fact strong {
    font-size: 1.08rem;
    line-height: 1.4;
    display: block;
}

.ticker {
    margin: 48px 0 8px;
    overflow: hidden;
    border-block: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 18s linear infinite;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    white-space: nowrap;
    color: #f2f2f2;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.86rem;
}

.ticker-track span b {
    color: var(--red-2);
    font-weight: 800;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.release {
    padding: 72px 0 84px;
    text-align: center;
    position: relative;
}

.release-box {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 26px;
    border-radius: 28px;
    background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.release-box::before,
.release-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.22;
    pointer-events: none;
}

.release-box::before {
    top: -60px;
    left: -40px;
    background: radial-gradient(circle, var(--red), transparent 65%);
}

.release-box::after {
    bottom: -60px;
    right: -40px;
    background: radial-gradient(circle, var(--blue), transparent 65%);
}

.release h2 {
    font-family: "Permanent Marker", cursive;
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: 1;
    color: var(--red-2);
    transform: rotate(-1deg);
}

.release p {
    margin: 18px auto 0;
    max-width: 52ch;
    color: var(--muted);
    line-height: 1.8;
}

.release-date {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

footer {
    padding: 0 0 34px;
}

.footer-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-line strong {
    color: white;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .grid-2 {
    grid-template-columns: 1fr;
    }

    .floating-ui {
    right: 10px;
    top: auto;
    bottom: 18px;
    }

    .facts {
    grid-template-columns: 1fr;
    }

    .cover-card {
    max-width: 620px;
    margin: 0 auto;
    }
}

@media (max-width: 720px) {
    .topbar-inner {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
    }

    .nav-toggle {
    display: flex;
    }

    .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    order: 3;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 12px;
    }

    .nav.is-open {
    display: flex;
    }

    .nav a {
    font-size: 0.86rem;
    padding: 12px 14px;
    text-align: center;
    }

    .hero {
    padding-top: 42px;
    }

    .panel,
    .release-box {
    padding: 20px;
    }

    .quote {
    max-width: 100%;
    }
}

/* ── Streaming Section ─────────────────────────── */
.streaming-label {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.streaming-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.stream-logo {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--muted);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.stream-logo svg {
  width: 26px;
  height: 26px;
}

.stream-logo:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
}

.stream-logo:active {
  transform: translateY(0);
}


/* ── Audio Player ──────────────────────────────── */
.audio-player {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  max-width: 520px;
  margin-inline: auto;
  margin-top: 24px;
}

.play-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #7e0009);
  border: none;
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(225,6,19,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 32px rgba(225,6,19,0.55);
}

.play-btn:active {
  transform: scale(0.96);
}

.player-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.player-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.04em;
}

.player-bar-wrap {
  cursor: pointer;
  padding: 6px 0;
}

.player-bar-bg {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}

.player-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  transition: width 0.1s linear;
}

.player-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 8px rgba(225,6,19,0.5);
  transition: left 0.1s linear;
  pointer-events: none;
}

.player-time {
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: right;
}


/* ── Tracklist ─────────────────────────────────────────── */
.tracklist {
  width: 100%;
  margin: 32px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

.tracklist-title {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.3rem);
  color: #e5322d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tracklist-items {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.track-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 9px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.18s ease;
  border-radius: 4px;
}

.track-item:hover {
  background: rgba(229, 50, 45, 0.07);
}

.track-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  min-width: 22px;
  letter-spacing: 0.06em;
}

.track-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  flex: 1;
  letter-spacing: 0.01em;
}

.track-version {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  margin-left: 4px;
}

.track-explicit {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(229, 50, 45, 0.22);
  color: #e5322d;
  border: 1px solid rgba(229, 50, 45, 0.35);
  border-radius: 3px;
  padding: 1px 5px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* ── Per-Track Play-Button & Songtext ─────────────────────── */
.track-play-btn {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.track-play-btn:hover {
  border-color: rgba(229,50,45,0.5);
  background: rgba(229,50,45,0.14);
}

.track-play-btn svg { width: 13px; height: 13px; }
.track-play-btn .icon-pause { display: none; }

/* Tracks ohne Audio: unsichtbarer Platzhalter statt fehlendem Button,
   damit Tracknummer/Titel bei allen Zeilen exakt gleich ausgerichtet sind. */
.track-play-btn.is-disabled {
  visibility: hidden;
  pointer-events: none;
}
.track-item.is-playing .track-play-btn .icon-play { display: none; }
.track-item.is-playing .track-play-btn .icon-pause { display: block; }
.track-item.is-playing .track-play-btn {
  border-color: #e5322d;
  background: rgba(229,50,45,0.22);
}

.track-progress {
  flex: 0 0 100%;
  order: 5;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  margin-top: 6px;
  display: none;
}

.track-item.is-playing .track-progress { display: block; }

.track-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--red-2));
}

.track-time {
  flex: 0 0 100%;
  order: 6;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
}

.track-lyrics-toggle {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px 2px;
}

.track-lyrics-toggle:hover { color: #e5322d; }

.track-lyrics {
  flex: 0 0 100%;
  order: 7;
  display: none;
  white-space: pre-wrap;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 8px;
}

.track-lyrics.is-open { display: block; }


/* ── Impressum ─────────────────────────────────────────── */
.impressum-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 40px);
}

.impressum-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

.impressum-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: #e5322d;
    border-radius: 50%;
    display: inline-block;
}

.impressum-headline {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #e5322d;
    line-height: 1.1;
    margin-bottom: 12px;
}

.impressum-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 52px;
    letter-spacing: 0.02em;
}

.impressum-block {
    margin-bottom: 40px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
}

.impressum-block:first-of-type {
    border-top: none;
    padding-top: 0;
}

.impressum-block h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.impressum-block p,
.impressum-block address {
    font-style: normal;
    font-size: 0.92rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.75);
}

.impressum-block a {
    color: #e5322d;
    text-decoration: none;
    border-bottom: 1px solid rgba(229,50,45,0.3);
    transition: border-color 0.18s ease, color 0.18s ease;
}

.impressum-block a:hover {
    color: #ff5a55;
    border-color: rgba(229,50,45,0.7);
}

.impressum-block .note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
    margin-top: 10px;
    line-height: 1.6;
}

.impressum-block .highlight-box {
    background: rgba(229,50,45,0.06);
    border: 1px solid rgba(229,50,45,0.18);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-top: 14px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    margin-bottom: 40px;
    transition: color 0.18s ease;
}

.back-link:hover { color: #e5322d; }
.back-link:hover svg { transform: translateX(-3px); }
.back-link svg { transition: transform 0.18s ease; }


/* ── Footer Navigation ─────────────────────────────────────────── */
.footer-nav {
  display: flex;
  gap: 18px;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--text);
}

/* Abgesetzte Footer-Boxen ("Folgen & hören" + Content-Hinweis) — jeweils
   ein eigener Kasten, oberhalb der Kontakt-/Impressum-Zeile. */
.footer-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 16px;
}

.footer-social-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* Text-Fallback-Links (Plattform ohne hinterlegtes Logo) */
.footer-social-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-links a:hover {
  color: var(--text);
  border-color: rgba(229,50,45,0.4);
  background: rgba(229,50,45,0.08);
}

/* Icon-Links (Musik-/Social-Logos) als runde Buttons */
.footer-social-link.has-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
}

.footer-social-link.has-icon svg {
  width: 18px;
  height: 18px;
}

.footer-social-link.has-icon:hover {
  color: #fff;
  border-color: rgba(229,50,45,0.5);
  background: rgba(229,50,45,0.12);
}

.footer-content-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.footer-content-note-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-note-icon {
  display: inline-flex;
  color: rgba(255,255,255,0.55);
}

.content-note-icon svg {
  width: 16px;
  height: 16px;
}


/* ── Contact Page ──────────────────────────────────────── */
.contact-wrap { max-width:760px; margin:0 auto; padding:clamp(48px,8vw,96px) clamp(20px,4vw,40px); }
.contact-eyebrow { display:flex; align-items:center; gap:8px; font-size:.75rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:20px; }
.contact-eyebrow-dot { width:6px; height:6px; background:#e5322d; border-radius:50%; display:inline-block; }
.contact-headline { font-family:'Permanent Marker',cursive; font-size:clamp(2rem,5vw,3.5rem); color:#e5322d; line-height:1.1; margin-bottom:12px; }
.contact-sub { font-size:.95rem; color:rgba(255,255,255,.7); line-height:1.8; margin-bottom:46px; max-width:56ch; }
.back-link { display:inline-flex; align-items:center; gap:8px; font-size:.8rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.35); text-decoration:none; margin-bottom:40px; transition:color .18s ease; }
.back-link:hover { color:#e5322d; }
.back-link svg { transition:transform .18s ease; }
.back-link:hover svg { transform:translateX(-3px); }
.contact-panel { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:18px; padding:clamp(20px,4vw,34px); box-shadow:0 20px 60px rgba(0,0,0,.18); }
.contact-grid { display:grid; gap:18px; }
.form-row { display:grid; gap:18px; grid-template-columns:1fr 1fr; }
.field { display:flex; flex-direction:column; gap:8px; }
.field label { font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.45); }
.field input, .field textarea { width:100%; border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.04); color:rgba(255,255,255,.9); border-radius:10px; padding:14px 16px; font:inherit; transition:border-color .18s ease,background .18s ease,box-shadow .18s ease; }
.field input::placeholder, .field textarea::placeholder { color:rgba(255,255,255,.28); }
.field input:focus, .field textarea:focus { outline:none; border-color:rgba(229,50,45,.55); background:rgba(255,255,255,.06); box-shadow:0 0 0 3px rgba(229,50,45,.12); }
.field textarea { min-height:180px; resize:vertical; }
.hp-field { position:absolute!important; left:-9999px!important; opacity:0!important; pointer-events:none!important; height:0!important; width:0!important; overflow:hidden!important; }
.form-actions { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-top:8px; }
.contact-note { font-size:.82rem; line-height:1.7; color:rgba(255,255,255,.4); max-width:44ch; }
.contact-status { font-size:.9rem; padding:12px 16px; border-radius:8px; margin-bottom:18px; }
.contact-status.success { color:#77d18a; background:rgba(119,209,138,.08); border:1px solid rgba(119,209,138,.2); }
.contact-status.error { color:#ff7b75; background:rgba(255,123,117,.08); border:1px solid rgba(255,123,117,.2); }
@media(max-width:700px){ .form-row { grid-template-columns:1fr; } .form-actions .btn { width:100%; justify-content:center; } }


/* ── Generische Seiten (CMS-Seiten, Alben-Übersicht) ─────────────────── */
.page-wrap { max-width: 900px; margin: 0 auto; padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 40px); }
.page-eyebrow { display: flex; align-items: center; gap: 8px; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.page-eyebrow-dot { width: 6px; height: 6px; background: #e5322d; border-radius: 50%; display: inline-block; }
.page-headline { font-family: 'Permanent Marker', cursive; font-size: clamp(2rem, 5vw, 3.5rem); color: #e5322d; line-height: 1.1; margin-bottom: 12px; }
.page-sub { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 36px; max-width: 60ch; }

.page-content { color: rgba(255,255,255,.82); line-height: 1.85; font-size: .98rem; }
.page-content p { margin-bottom: 16px; }
.page-content h2 { font-family: 'Permanent Marker', cursive; color: #e5322d; font-size: 1.5rem; margin: 30px 0 14px; }
.page-content h3, .page-content h4 { color: #fff; font-size: 1.15rem; margin: 24px 0 12px; letter-spacing: .02em; }
.page-content ul, .page-content ol { margin: 0 0 16px 22px; }
.page-content li { margin-bottom: 8px; }
.page-content a { color: #e5322d; text-decoration: none; border-bottom: 1px solid rgba(229,50,45,.3); }
.page-content a:hover { color: #ff5a55; border-color: rgba(229,50,45,.7); }
.page-content blockquote { border-left: 3px solid rgba(229,50,45,.5); padding-left: 16px; color: rgba(255,255,255,.6); margin: 16px 0; }
.page-content img { max-width: 100%; border-radius: 14px; margin: 16px 0; }
.page-content strong { color: #fff; }

/* ── Alben-Übersicht ───────────────────────────────────────────────── */
.albums-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; margin-top: 8px; }
.album-card { display: block; text-decoration: none; color: inherit; border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.09); box-shadow: var(--shadow); transition: transform .2s ease, border-color .2s ease; }
.album-card:hover { transform: translateY(-4px); border-color: rgba(229,50,45,.4); }
.album-card-cover { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.album-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.album-card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.album-card-body strong { font-size: 1.02rem; color: #fff; }
.album-card-body span { font-size: .82rem; color: var(--muted); }

.status-pill { position: absolute; top: 12px; left: 12px; padding: 6px 12px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(8px); }
.status-pill.is-coming { background: rgba(225,6,19,0.28); border: 1px solid rgba(225,6,19,0.5); color: #ffdcdc; }
.status-pill.is-released { background: rgba(119,209,138,0.22); border: 1px solid rgba(119,209,138,0.45); color: #d3ffdb; }

/* ── Album-Detailseite ─────────────────────────────────────────────── */
.album-detail { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.album-detail-cover { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.12); }
.album-detail-cover img { width: 100%; height: auto; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.album-detail-info { min-width: 0; }
@media (max-width: 820px) {
  .album-detail { grid-template-columns: 1fr; }
  .album-detail-cover { max-width: 320px; margin: 0 auto; }
}
