/* ============================================================
   OneCrew Records – Frontend Stylesheet v3
   Hell = Standard, Dunkel = optional (via [data-theme="dark"] auf <html>)
   ============================================================ */
:root {
    /* ---- Hell (Standard) ---- */
    --bg: #ffffff;
    --bg-alt: #f5f5f6;
    --bg-elevated: #ffffff;
    --text: #16161a;
    --text-muted: #6b6b74;
    --accent: #d40924;
    --accent-hover: #ef1230;
    --accent-soft: rgba(212, 9, 36, 0.08);
    --border: #e6e6e9;
    --radius: 14px;
    --radius-sm: 8px;
    --max-width: 1180px;
    --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
    --card-elevated-border: 1px solid var(--border);
}

html[data-theme="dark"] {
    --bg: #0a0a0b;
    --bg-alt: #131315;
    --bg-elevated: #18181b;
    --text: #f5f5f5;
    --text-muted: #9a9aa2;
    --accent: #d40924;
    --accent-hover: #ef1230;
    --accent-soft: rgba(212, 9, 36, 0.12);
    --border: #232326;
    --shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    transition: background-color .25s ease, color .25s ease;
}
a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; position: relative; }
.container-narrow { max-width: 720px; }

/* Cover-/Profilbilder als echte <img> statt CSS-Hintergrundbild (für Bildersuche + Barrierefreiheit) -
   der umgebende Container behält seine bisherige Größe/Form (aspect-ratio bzw. feste Breite/Höhe), das
   Bild füllt ihn per object-fit genauso aus wie zuvor der CSS-Hintergrund. */
.cover-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.artist-hero-backdrop .cover-img { object-position: center 25%; }
.blog-card-img .cover-img { object-position: top center; }

.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; list-style: none; margin: 0 0 12px; padding: 0; font-size: .85rem; color: var(--text-muted); }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li:not(:last-child)::after { content: '/'; opacity: .5; }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--text); }
.section { padding: 88px 0; }
.text-center { text-align: center; }

/* Startseite: mehrere Abschnitte folgen hier direkt aufeinander, daher kompakteres
   Innenpolster als bei Content-Seiten (FAQ, Blog etc.), damit sich die Abstände
   nicht zu großen Leerflächen zwischen den Abschnitten addieren. */
.artists-preview,
.discount-section,
.home-blog-preview,
.monetize-section { padding: 32px 0; }

/* "Alle X ansehen"-Buttons unter den Grids: Standard-Absatzabstand des Browsers
   entfernen, sonst addiert sich das zusätzlich zum Section-Padding. */
.artists-preview .text-center,
.discount-section .text-center,
.home-blog-preview .text-center { margin: 20px 0 0; }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin: 0 0 18px; }
h1 { font-size: clamp(2.2rem, 4.2vw, 3.15rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { color: var(--text-muted); }

.eyebrow {
    display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 18px; padding: 6px 14px; border: 1px solid var(--accent-soft);
    border-radius: 30px; background: var(--accent-soft);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: color-mix(in srgb, var(--bg) 85%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 24px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 44px; width: auto; }
.logo .logo-dark-img { display: none; }
html[data-theme="dark"] .logo .logo-light-img { display: none; }
html[data-theme="dark"] .logo .logo-dark-img { display: block; }
.logo-text { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.main-nav { flex-grow: 1; display: flex; justify-content: center; }
.main-nav > ul { list-style: none; display: flex; align-items: center; gap: 40px; margin: 0; padding: 0; }
.main-nav > ul > li { display: flex; align-items: center; }
.main-nav a { font-weight: 500; font-size: .94rem; color: var(--text-muted); transition: color .2s; position: relative; padding: 4px 0; }
.main-nav a::after {
    content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--accent);
    transition: width .25s ease;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.btn-nav-cta { padding: 11px 22px; font-size: .88rem; }

/* ---------- Hauptmenü: Dropdown-Unterpunkte ---------- */
.main-nav li.has-dropdown { position: relative; }
.nav-dropdown-toggle {
    background: none; border: 0; font: inherit; font-weight: 500; font-size: .94rem; color: var(--text-muted);
    cursor: pointer; display: flex; align-items: center; gap: 5px; padding: 4px 0; transition: color .2s;
}
.nav-dropdown-toggle:hover, li.has-dropdown.is-open .nav-dropdown-toggle { color: var(--text); }
.nav-caret { font-size: .7em; transition: transform .2s ease; }
li.has-dropdown.is-open .nav-caret { transform: rotate(180deg); }
.main-nav .nav-dropdown {
    list-style: none; margin: 0; padding: 8px; position: absolute; top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%); min-width: 200px; background: var(--bg-elevated); border: var(--card-elevated-border);
    border-radius: var(--radius-sm); box-shadow: var(--shadow); display: none; flex-direction: column; align-items: stretch; gap: 2px; z-index: 200;
}
.main-nav li.has-dropdown.is-open .nav-dropdown { display: flex; }
.nav-dropdown li a {
    display: block; padding: 9px 12px; border-radius: var(--radius-sm); font-size: .9rem; white-space: nowrap;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover { background: var(--bg-alt); color: var(--text); }

.theme-toggle {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-elevated);
    color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: border-color .2s, transform .2s;
}
.theme-toggle:hover { border-color: var(--accent); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

@media (max-width: 860px) {
    .header-actions .btn-nav-cta { display: none; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
    .main-nav { justify-content: flex-end; }
    .main-nav > ul {
        display: none; flex-direction: column; align-items: stretch; position: absolute; top: 82px; left: 0; right: 0;
        background: var(--bg-alt); padding: 12px 24px; border-bottom: 1px solid var(--border); gap: 2px;
        max-height: calc(100vh - 82px); overflow-y: auto;
    }
    .main-nav > ul.open { display: flex; }
    .main-nav > ul > li { display: block; }
    .main-nav > ul > li > a { display: block; padding: 13px 0; font-size: 1rem; }

    /* Dropdowns werden mobil eingebettet aufgeklappt statt als Popup-Karte */
    .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 13px 0; font-size: 1rem; }
    .main-nav .nav-dropdown {
        position: static; transform: none; display: none; box-shadow: none; border: none; background: var(--bg-elevated);
        border-radius: var(--radius-sm); margin: 0 0 8px; padding: 4px 8px; min-width: 0;
    }
    .main-nav li.has-dropdown.is-open .nav-dropdown { display: flex; }
    .nav-dropdown li a { padding: 11px 12px; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 30px; border-radius: 100px;
    font-weight: 600; font-size: .95rem; border: 1px solid transparent; cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px -8px rgba(212,9,36,0.45); }
.btn-primary:visited { color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(212,9,36,0.55); }
.btn-outline { border-color: var(--border); color: var(--text); background: var(--bg-elevated); }
.btn-outline:visited { color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
    position: relative; padding: 140px 0 110px; text-align: center; overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, var(--accent-soft), transparent 70%),
        var(--bg);
}
.hero h1 { max-width: 980px; margin-left: auto; margin-right: auto; white-space: normal; }
.hero > .container > p { max-width: 560px; margin: 0 auto 8px; font-size: 1.1rem; }
.hero-ring { position: absolute; border: 1.5px solid var(--border); border-radius: 50%; pointer-events: none; }
.hero-ring-1 { width: 520px; height: 520px; top: -260px; right: -160px; border-color: var(--accent-soft); }
.hero-ring-2 { width: 340px; height: 340px; bottom: -200px; left: -120px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-artists {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
}
.grid-artists .artist-card { width: 270px; flex-grow: 0; }

/* Startseite: wirkt wie ein Slider - eine Zeile, kein Umbruch, horizontal scrollbar,
   kleinere Karten als das große Grid. */
.grid-artists-slider {
    display: flex; flex-wrap: nowrap; gap: 16px;
    overflow-x: auto; overflow-y: hidden;
    padding-bottom: 6px; /* Platz für die Scrollleiste, damit sie nicht am Bildrand klebt */
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.grid-artists-slider .artist-card { width: 160px; flex: 0 0 auto; scroll-snap-align: start; }
.grid-artists-slider .artist-card-overlay { padding: 12px; }
.grid-artists-slider .artist-card-overlay h3 { font-size: .95rem; }

/* Artisten-Übersichtsseite: normales Grid, bewusst OHNE Slider-Verhalten - immer 4 Karten
   pro Zeile auf Desktop, mit Umbruch statt Scrollen. */
.grid-artists-compact {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.grid-artists-compact .artist-card { width: 100%; }
.grid-artists-compact .artist-card-overlay h3 { font-size: 1rem; }
@media (max-width: 860px) { .grid-artists-compact { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .grid-artists-compact { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.grid-packages { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: stretch; }

.section-intro { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section-intro h2 { margin-bottom: 12px; }

/* ---------- Artist Cards (Poster-Stil) ---------- */
.artist-card {
    display: block; border-radius: var(--radius); overflow: hidden; position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: transform .3s ease, box-shadow .3s ease;
}
.artist-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.artist-card-img {
    aspect-ratio: 4 / 5; background-size: cover; background-position: center; background-color: var(--bg-alt);
    position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.artist-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.75) 100%);
    transition: opacity .3s ease;
}
.artist-card:hover .artist-card-img { transform: scale(1.04); }
.artist-card-img { transition: transform .4s ease; }
.artist-card-overlay { position: relative; z-index: 1; padding: 20px; width: 100%; }
.artist-card-overlay h3 { color: #fff; margin: 0; font-size: 1.15rem; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.artist-genre { display: block; color: var(--accent); font-size: .82rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; padding-bottom: 18px; }

/* ---------- Artist Single: Hero mit weichgezeichnetem Foto-Hintergrund ---------- */
.artist-hero { position: relative; overflow: hidden; padding-top: 56px; }
.artist-hero-backdrop {
    position: absolute; inset: -20px; background-size: cover; background-position: center 25%;
    filter: blur(38px) brightness(.55) saturate(1.15); transform: scale(1.15); z-index: 0;
}
.artist-hero-backdrop::after { content: ''; }
.artist-hero::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, var(--bg) 96%);
}
.artist-hero-inner {
    position: relative; z-index: 2; display: flex; align-items: flex-end; gap: 32px;
    padding-bottom: 40px; flex-wrap: wrap;
}
.artist-hero-photo {
    width: 200px; height: 200px; flex-shrink: 0; background-size: cover; background-position: center;
    background-color: var(--bg-alt); border-radius: var(--radius); box-shadow: 0 20px 50px -12px rgba(0,0,0,0.55);
    border: 3px solid var(--bg);
}
.artist-hero-info { padding-bottom: 6px; }
.artist-hero-badge {
    display: inline-flex; align-items: center; gap: 4px; background: var(--accent); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.artist-hero-info h1 { color: #fff; margin: 0; font-size: clamp(2rem, 5vw, 3rem); text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.artist-hero-info .artist-genre {
    display: inline-block; color: #fff; background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
    padding: 5px 14px; border-radius: 100px; margin-top: 10px;
}
@media (max-width: 640px) {
    .artist-hero-inner { align-items: center; text-align: center; flex-direction: column; padding-bottom: 28px; }
    .artist-hero-photo { width: 150px; height: 150px; }
}

.artist-body-grid { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.artist-bio { color: var(--text); line-height: 1.75; max-width: 640px; }
.artist-links-col { display: flex; flex-direction: column; gap: 24px; }
.artist-link-card {
    background: var(--bg-elevated); border: var(--card-elevated-border); border-radius: var(--radius); padding: 20px;
}
.artist-link-card h4 { margin: 0 0 14px; font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); font-weight: 700; }
.artist-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.artist-socials a {
    color: var(--text); font-weight: 600; font-size: .82rem; padding: 8px 16px; border: 1px solid var(--border);
    border-radius: 100px; transition: all .2s;
}
.artist-socials a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.artist-share-icons { display: flex; flex-wrap: wrap; gap: 10px; }
.artist-share-icons a, .artist-share-icons button {
    display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    border-radius: 50%; background: var(--bg); border: 1px solid var(--border); color: var(--text);
    transition: all .2s; cursor: pointer; padding: 0;
}
.artist-share-icons a:hover, .artist-share-icons button:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.artist-share-icons svg { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 780px) { .artist-body-grid { grid-template-columns: 1fr; gap: 32px; } }

.artist-player-frame {
    position: relative; background: #0a0a0c; border-radius: var(--radius); padding: 3px; box-shadow: var(--shadow);
}
.artist-player-frame::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius); padding: 1.5px;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(255,255,255,.08) 55%, transparent 85%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.artist-player-frame iframe { border-radius: calc(var(--radius) - 3px); display: block; }
.artist-player-frame-mini { margin-bottom: 40px; }

.artist-tracklist { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.artist-track-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 16px; border-bottom: 1px solid var(--border); }
.artist-track-row:last-child { border-bottom: none; }
.artist-track-row:hover { background: var(--bg-alt); }
.artist-track-left { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.artist-track-play {
    flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-elevated);
    color: var(--accent); font-size: .7rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .15s;
}
.artist-track-play:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.artist-track-row.is-open .artist-track-play { background: var(--accent); color: #fff; border-color: var(--accent); }
.artist-track-cover { flex-shrink: 0; width: 44px; height: 44px; border-radius: 6px; background: var(--bg-alt) center/cover; }
.artist-track-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.artist-track-name { font-weight: 600; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.artist-track-album { font-size: .78rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.artist-track-duration { flex-shrink: 0; font-size: .82rem; color: var(--text-muted); }
.artist-track-embed { flex-basis: 100%; }
.artist-track-embed iframe { border-radius: 8px; margin-top: 10px; display: block; }

/* Auf schmalen Bildschirmen (PWA/Mobilgeräte) bricht Titel + Album-/Vorschau-Info
   in eine eigene volle Zeile um, statt abgeschnitten zu werden - Play-Button,
   Cover und Dauer/Datum bleiben in der ersten Zeile, der komplette Text darunter. */
@media (max-width: 640px) {
    .artist-track-info { flex-basis: 100%; order: 10; }
    .artist-track-name, .artist-track-album { white-space: normal; overflow: visible; text-overflow: clip; word-break: break-word; }
}

.artist-subnav {
    position: sticky; top: 82px; z-index: 90; background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.artist-subnav-inner { display: flex; gap: 8px; padding: 12px 0; flex-wrap: wrap; }
.artist-subnav a {
    padding: 7px 16px; border-radius: 100px; font-weight: 600; font-size: .84rem; color: var(--text-muted); transition: all .15s;
}
.artist-subnav a:hover { color: var(--accent); background: var(--accent-soft); }
#bio, #diskografie, #musikstream { scroll-margin-top: 140px; }

.section-eyebrow { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; margin: 0 0 6px; }

/* ---------- Packages ---------- */
.package-card {
    background: var(--bg-elevated); border: var(--card-elevated-border); border-radius: var(--radius);
    padding: 36px 32px; position: relative; display: flex; flex-direction: column;
    transition: transform .25s ease, border-color .25s ease;
}
.package-card:hover { transform: translateY(-6px); }
.package-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow); }
.package-badge {
    position: absolute; top: -13px; right: 24px; background: var(--accent); color: #fff;
    padding: 5px 14px; border-radius: 30px; font-size: .72rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
}
.package-subtitle { color: var(--text-muted); margin-top: -10px; font-size: .92rem; }
.package-price { margin: 20px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.price-amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; }
.price-period { color: var(--text-muted); font-size: .9rem; }
.package-note { font-size: .78rem; color: var(--text-muted); margin-top: 0; }
.package-artist-limit {
    font-size: .85rem; font-weight: 600; color: var(--accent); margin: 4px 0 0;
    display: flex; align-items: center; gap: 6px;
}
.package-artist-limit::before { content: '🎤'; font-size: .9em; }
.package-fee-waived {
    font-size: .85rem; font-weight: 600; color: #2f9e52; margin: 6px 0 0;
    display: flex; align-items: center; gap: 6px;
}
.package-fee-waived::before { content: '✓'; font-size: 1em; }

.free-package-card {
    border: 2px dashed var(--border); background: transparent;
}
.free-package-card:hover { transform: none; }
.free-package-badge { background: #2f9e52; }

/* ---------- Billing Toggle (Monatlich/Jährlich) ---------- */
.billing-toggle {
    display: inline-flex; gap: 4px; padding: 5px; background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: 100px; margin: 0 auto 40px; position: relative; left: 50%; transform: translateX(-50%);
}
.toggle-option {
    padding: 10px 22px; border-radius: 100px; border: none; background: transparent; color: var(--text-muted);
    font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 8px;
}
.toggle-option.active { background: var(--accent); color: #fff; }
.toggle-save-badge {
    background: rgba(255,255,255,0.2); padding: 2px 8px; border-radius: 20px; font-size: .68rem; text-transform: uppercase;
}
.toggle-option:not(.active) .toggle-save-badge { background: var(--accent-soft); color: var(--accent); }

.package-yearly-note { font-size: .8rem; color: var(--text-muted); margin: -12px 0 12px; }
.package-save-tag {
    background: var(--accent); color: #fff; padding: 2px 8px; border-radius: 20px; font-size: .72rem; font-weight: 700; margin-left: 6px;
}
.price-legal-note { text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: 32px; }
.package-description { font-size: .92rem; }
.package-features { list-style: none; padding: 0; margin: 20px 0 28px; flex-grow: 1; }
.package-features li { padding: 10px 0; border-top: 1px solid var(--border); font-size: .92rem; color: var(--text); }
.package-features li:before { content: '✓'; color: var(--accent); font-weight: 700; margin-right: 10px; }

/* ---------- Rabattcodes (öffentlich, Startseite & Preise) ---------- */
.discount-section .section-intro { max-width: 760px; }
.discount-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.discount-card {
    position: relative; background: var(--bg-elevated); border: var(--card-elevated-border);
    border-radius: var(--radius); padding: 22px 24px; display: flex; flex-direction: column; gap: 6px;
    transition: transform .25s ease, border-color .25s ease;
}
.discount-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.discount-upcoming { opacity: .7; }
.discount-badge {
    position: absolute; top: -11px; right: 20px; background: var(--text); color: var(--bg);
    padding: 4px 12px; border-radius: 30px; font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
}
.discount-card-top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.discount-code {
    font-weight: 800; letter-spacing: .05em; font-size: 1.05rem; background: var(--accent-soft); color: var(--accent);
    padding: 4px 12px; border-radius: 8px;
}
.discount-value { font-weight: 800; font-size: 1.3rem; color: #2f9e52; }
.discount-desc { font-size: .88rem; margin: 2px 0 0; }
.discount-scope { font-size: .78rem; color: var(--text-muted); }
.discount-validity { font-size: .78rem; color: var(--text-muted); }
.discount-hint { text-align: center; font-size: .8rem; color: var(--text-muted); margin: 16px 0 0; }

/* ---------- Forms ---------- */
.contact-form { background: var(--bg-elevated); border: var(--card-elevated-border); border-radius: var(--radius); padding: 36px; }
.contact-form .form-row { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 7px; font-weight: 600; font-size: .9rem; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 13px 15px; background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text); font-family: var(--font); font-size: 16px;
    transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-info { margin-top: 28px; color: var(--text-muted); text-align: center; }
.contact-info a { color: var(--accent); font-weight: 600; }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .92rem; }
.alert-success { background: rgba(63,191,96,0.1); border: 1px solid rgba(63,191,96,0.35); color: #237a3b; }
.alert-error { background: rgba(224,82,82,0.1); border: 1px solid rgba(224,82,82,0.35); color: #a3312f; }
html[data-theme="dark"] .alert-success { color: #7de399; }
html[data-theme="dark"] .alert-error { color: #f0999b; }

/* ---------- Page header (Preise, Artisten, Kontakt, Legal) ---------- */
.page-header { padding: 70px 0 20px; text-align: center; }
.page-header h1 { margin-bottom: 8px; }
.page-header p { max-width: 520px; margin: 0 auto; }

/* ---------- CTA section ---------- */
.cta-wrapper { padding: 16px 0 32px; }
.cta-section {
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-alt));
    border: var(--card-elevated-border); border-radius: 24px; padding: 64px 24px;
}
.cta-section h2 { margin-bottom: 10px; }
.cta-section p { margin-bottom: 8px; }
.cta-section .btn { margin-top: 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 64px 0 32px; margin-top: 80px; }
.footer-inner {
    display: flex; flex-wrap: wrap; gap: 32px 40px; justify-content: space-between;
    padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-brand { flex: 1 1 240px; max-width: 320px; }
.footer-nav, .footer-social-col { flex: 0 1 140px; }
.footer-logo { display: inline-block; margin-bottom: 14px; }
.footer-logo img { height: 42px; width: auto; }
.footer-logo .logo-dark-img { display: none; }
html[data-theme="dark"] .footer-logo .logo-light-img { display: none; }
html[data-theme="dark"] .footer-logo .logo-dark-img { display: block; }
.footer-brand p { margin: 0; font-size: .9rem; color: var(--text-muted); max-width: 260px; }

.footer-col-label {
    display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 16px; opacity: .7;
}
.footer-nav ul, .footer-legal-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-legal-col a { color: var(--text); font-size: .92rem; transition: color .2s; }
.footer-nav a:visited, .footer-legal-col a:visited { color: var(--text); }
.footer-nav a:hover, .footer-legal-col a:hover { color: var(--accent); }

.footer-socials { display: flex; flex-direction: column; gap: 12px; }
.footer-socials a { color: var(--text); font-size: .92rem; font-weight: 500; transition: color .2s; }
.footer-socials a:visited { color: var(--text); }
.footer-socials a:hover { color: var(--accent); }

.footer-cancel { margin: 24px 0 0; text-align: center; font-size: .9rem; }
.footer-cancel a { color: var(--text); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.footer-cancel + .footer-copy { margin-top: 8px; }
.footer-copy { color: var(--text-muted); font-size: .82rem; margin: 28px 0 0; text-align: center; }

@media (max-width: 860px) {
    .footer-brand { flex-basis: 100%; max-width: none; }
    .footer-nav, .footer-social-col { flex: 1 1 140px; }
}
@media (max-width: 480px) {
    .footer-inner { flex-direction: column; gap: 28px; }
}

.legal-section { padding-top: 24px; }
.legal-card {
    background: var(--bg-elevated); border: var(--card-elevated-border); border-radius: var(--radius);
    padding: 56px; box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.legal-content { color: var(--text-muted); }
.legal-content > *:first-child { margin-top: 0 !important; padding-top: 0 !important; }
.legal-content h2 {
    color: var(--text); font-size: 1.2rem; margin-top: 48px; margin-bottom: 20px; padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.legal-content h3 { color: var(--text); font-size: 1rem; margin-top: 24px; margin-bottom: 10px; }
.legal-content p { font-size: .96rem; line-height: 1.85; margin: 0; }
.legal-content li { font-size: .96rem; line-height: 1.85; }
.legal-content a { color: var(--accent); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .legal-card { padding: 32px 24px; }
}

/* ============================================================
   Mobile / Tablet Feinschliff
   ============================================================ */
@media (max-width: 900px) {
    .section { padding: 64px 0; }
    .hero { padding: 96px 0 72px; }
}
@media (max-width: 600px) {
    .section { padding: 48px 0; }
    .container { padding: 0 18px; }
    .hero { padding: 76px 0 56px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .header-inner { height: 68px; }
    .main-nav > ul { top: 68px; }
    .logo img { height: 34px; }
    .theme-toggle { width: 34px; height: 34px; }
    .package-card { padding: 28px 22px; }
    .artist-single-img { max-width: 320px; margin: 0 auto; }
    .cta-section { padding: 48px 20px !important; }
    .footer-brand p { max-width: none; }
    .grid-packages { grid-template-columns: 1fr; }
    .grid-artists .artist-card { width: 100%; max-width: 320px; }
}

/* ---------- FAQ / Hilfe-Center ---------- */
.faq-category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.faq-category-card {
    background: var(--bg-elevated); border: var(--card-elevated-border); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow);
}
.faq-category-icon { font-size: 2rem; margin-bottom: 10px; }
.faq-category-card h3 { margin: 0 0 6px; font-size: 1.15rem; }
.faq-category-card h3 a { color: var(--text); }
.faq-category-card h3 a:hover { color: var(--accent); }
.faq-article-list { list-style: none; padding: 0; margin: 14px 0 0; }
.faq-article-list li { padding: 8px 0; border-top: 1px solid var(--border); }
.faq-article-list li:first-child { border-top: none; }
.faq-article-list a { color: var(--text); font-weight: 500; }
.faq-article-list a:hover { color: var(--accent); }
.faq-article-list-lg li { padding: 14px 0; font-size: 1.05rem; }
.faq-more-link { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--accent); }
.faq-search-results { display: flex; flex-direction: column; gap: 12px; }
.faq-result-card {
    display: block; background: var(--bg-elevated); border: var(--card-elevated-border); border-radius: var(--radius-sm);
    padding: 16px 20px; color: var(--text);
}
.faq-result-card:hover { border-color: var(--accent); }
.faq-result-category { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; color: var(--accent); font-weight: 700; margin-bottom: 4px; }
.faq-article-content { font-size: 1.05rem; line-height: 1.8; }
.faq-article-content p { color: var(--text); margin: 0; }
.faq-article-content h2, .faq-article-content h3 { margin-top: 32px; }
.faq-article-content ul, .faq-article-content ol { color: var(--text); padding-left: 22px; }
.faq-article-content img { border-radius: var(--radius-sm); margin: 16px 0; }
/* Quill 2 speichert Aufzählungen als <ol><li data-list="bullet"> - ohne diese Regel erscheinen sie als nummerierte Liste. */
.faq-article-content li[data-list="bullet"] { list-style-type: disc; }
.faq-article-content li[data-list] > .ql-ui { display: none; }

/* ---------- Blog ---------- */
.blog-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.blog-pill {
    padding: 9px 18px; border-radius: 100px; border: 1px solid var(--border); background: var(--bg-elevated);
    color: var(--text); font-weight: 600; font-size: .85rem;
}
.blog-pill:hover { border-color: var(--accent); }
.blog-pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.blog-tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; margin: -18px 0 36px; }
.blog-tag-pill {
    padding: 4px 10px; border-radius: 100px; background: var(--bg-alt);
    color: var(--text-muted); font-weight: 600; font-size: .74rem; line-height: 1.4; transition: all .15s;
}
.blog-tag-pill:hover { color: var(--accent); background: var(--accent-soft); }
.blog-tag-pill.active { background: var(--accent); color: #fff; }

/* ---------- Blog-Hub-Header (Übersicht, Kategorie, Tag) ---------- */
.blog-hub-header { padding: 56px 0 28px; text-align: center; }
.blog-hub-header h1 { margin-bottom: 10px; }
.blog-rss-link { display: inline-block; margin-top: 14px; color: var(--text-muted); font-size: .82rem; font-weight: 600; }
.blog-rss-link:hover { color: var(--accent); }
.blog-hub-header p:not(.section-eyebrow) { color: var(--text-muted); max-width: 820px; margin: 0 auto; }

/* ---------- Zweispalten-Layout: Artikel-Liste + rechte Sidebar ---------- */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.blog-sidebar { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 24px; }
.blog-sidebar-widget {
    background: var(--bg-elevated); border: var(--card-elevated-border); border-radius: var(--radius);
    padding: 20px;
}
.blog-sidebar-widget h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 14px; color: var(--text-muted); }
.blog-sidebar .blog-tag-cloud { margin: 0; }
.blog-share-row { display: flex; flex-direction: column; gap: 8px; }
.blog-directories-badges { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.blog-share-btn {
    display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: var(--radius-sm);
    background: var(--bg-alt); color: var(--text); font-weight: 600; font-size: .82rem;
    border: none; cursor: pointer; text-align: left; width: 100%; font-family: inherit;
}
.blog-share-btn:hover { background: var(--accent-soft); color: var(--accent); }

/* ---------- Sidebar: Neueste Artikel ---------- */
.blog-sidebar-postlist { display: flex; flex-direction: column; gap: 14px; }
.blog-sidebar-post { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.blog-sidebar-post-img {
    width: 56px; height: 56px; flex-shrink: 0; border-radius: var(--radius-sm);
    background-size: cover; background-position: center; background-color: var(--bg-alt);
}
.blog-sidebar-post-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.blog-sidebar-post-title {
    font-size: .86rem; font-weight: 600; line-height: 1.3; color: var(--text);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-sidebar-post:hover .blog-sidebar-post-title { color: var(--accent); }
.blog-sidebar-post-date { font-size: .74rem; color: var(--text-muted); }

/* ---------- Sidebar: Neueste Kommentare ---------- */
.blog-sidebar-commentlist { display: flex; flex-direction: column; gap: 14px; }
.blog-sidebar-comment {
    display: flex; flex-direction: column; gap: 3px; color: var(--text);
    padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.blog-sidebar-commentlist .blog-sidebar-comment:last-child { padding-bottom: 0; border-bottom: none; }
.blog-sidebar-comment-author { font-size: .82rem; font-weight: 700; color: var(--text); }
.blog-sidebar-comment-author::before { content: "💬 "; }
.blog-sidebar-comment-excerpt { font-size: .82rem; color: var(--text-muted); line-height: 1.4; }
.blog-sidebar-comment:hover .blog-sidebar-comment-excerpt { color: var(--text); }
.blog-sidebar-comment-on { font-size: .72rem; color: var(--accent); font-weight: 600; }

@media (max-width: 860px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
}

.grid-blog { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card {
    display: flex; flex-direction: column; background: var(--bg-elevated); border: var(--card-elevated-border); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); transition: transform .25s ease;
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card-img {
    aspect-ratio: 16 / 9; background-size: cover; background-position: top center; position: relative; background-color: var(--bg-alt); flex-shrink: 0;
}
.blog-card-badge {
    position: absolute; top: 14px; right: 14px; background: var(--accent); color: #fff;
    padding: 4px 12px; border-radius: 100px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
}
.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.blog-card-body h3 {
    margin: 0 0 8px; font-size: 1.05rem; color: var(--text); line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-body p {
    color: var(--text-muted); font-size: .88rem; margin: 0 0 14px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-meta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 4px 10px; font-size: .8rem; color: var(--text-muted); margin-top: auto; }
.blog-card-read { color: var(--accent); font-weight: 700; }

@media (max-width: 700px) {
    .grid-blog { grid-template-columns: 1fr; }
}

/* Blog-Vorschau auf der Startseite: eigenes, breiteres Grid (mind. 4 Artikel
   nebeneinander) - unabhängig vom festen 2-Spalten-Grid der Blog-Listenseiten. */
.grid-blog-home { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) {
    .grid-blog-home { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .grid-blog-home { grid-template-columns: 1fr; }
}

.blog-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.blog-pagination a {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid var(--border); color: var(--text); font-weight: 600; font-size: .85rem;
}
.blog-pagination a.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.blog-article-header { padding: 48px 0 8px; }
.blog-article-header-inner { text-align: left; }
.blog-article-header-inner h1 { max-width: 800px; }
.blog-article-back {
    display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: .85rem;
    font-weight: 600; margin-bottom: 20px; width: fit-content;
}
.blog-article-back:hover { color: var(--accent); }
.blog-article-header h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); line-height: 1.25; margin: 10px 0 12px; }
.blog-article-meta { color: var(--text-muted); font-size: .9rem; }
.blog-article-image { display: block; width: 100%; height: auto; border-radius: var(--radius); margin: 16px 0 8px; }
.blog-article-content { font-size: 1.05rem; line-height: 1.75; color: var(--text); }
.blog-article-content p { margin: 0 0 20px; }
.blog-article-content h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.blog-article-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.blog-article-content ul, .blog-article-content ol { margin: 0 0 20px; padding-left: 26px; }
.blog-article-content li { margin-bottom: 6px; }
.blog-article-content img { max-width: 100%; border-radius: var(--radius-sm); margin: 8px 0; }
.blog-article-content blockquote {
    border-left: 3px solid var(--accent); margin: 20px 0; padding: 4px 0 4px 20px; color: var(--text-muted); font-style: italic;
}
.blog-article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.blog-tag-chip {
    background: var(--accent-soft); color: var(--accent); padding: 6px 14px; border-radius: 100px; font-size: .82rem; font-weight: 600;
}

.blog-comments { padding-top: 32px; border-top: 1px solid var(--border); scroll-margin-top: 96px; }
.blog-comment { padding: 16px 0; border-bottom: 1px solid var(--border); scroll-margin-top: 96px; }
.blog-comment strong { color: var(--text); }
.blog-comment-date { color: var(--text-muted); font-size: .78rem; margin-left: 10px; }
.blog-comment p { margin: 6px 0 0; color: var(--text); }
.blog-comment-form { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.blog-comment-form .form-row-pair { display: flex; gap: 12px; flex-wrap: wrap; }
.blog-comment-form input, .blog-comment-form textarea {
    flex: 1; min-width: 200px; padding: 12px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border);
    background: var(--bg-elevated); color: var(--text); font-family: inherit; font-size: 16px;
}
.blog-comment-form textarea { width: 100%; resize: vertical; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

@media (max-width: 700px) {
    .blog-comment-form .form-row-pair { flex-direction: column; }
}

/* ---------- Hero (dunkel, Startseite) ---------- */
.hero-dark {
    position: relative; background: #0a0a0f; color: #f2f2f5; padding: 90px 0 90px; overflow: hidden;
}
.hero-dark-glow {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 18% 10%, rgba(212,9,36,0.22), transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 0%, rgba(232,179,77,0.10), transparent 65%);
}
.hero-dark-top { position: relative; display: flex; align-items: stretch; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.hero-dark-copy { max-width: 640px; }
.eyebrow-dark {
    display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: #cfcfd6; margin-bottom: 22px;
}
.hero-dark-headline { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; margin-bottom: 22px; }
.hero-dark-accent { color: var(--accent); }
.hero-dark-subtext { color: #b8b8c2; font-size: 1.05rem; line-height: 1.6; max-width: 520px; margin: 0 0 32px; }
.hero-dark-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 8px; padding: 15px 26px; border-radius: 100px;
    background: var(--accent); color: #fff; font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .03em;
    box-shadow: 0 10px 26px -8px rgba(212,9,36,0.55); transition: transform .18s ease;
}
.btn-hero-primary:visited { color: #fff; }
.btn-hero-primary:hover { transform: translateY(-2px); }
.btn-hero-outline {
    display: inline-flex; align-items: center; gap: 8px; padding: 15px 26px; border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.25); color: #fff; font-weight: 700; font-size: .88rem;
    text-transform: uppercase; letter-spacing: .03em; transition: border-color .18s ease, transform .18s ease;
}
.btn-hero-outline:visited { color: #fff; }
.btn-hero-outline:hover { border-color: #fff; transform: translateY(-2px); }

.hero-register-embed {
    flex-shrink: 0; width: 100%; max-width: 380px; min-height: 480px;
    background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
    padding: 26px 24px; backdrop-filter: blur(6px); display: flex; flex-direction: column; justify-content: center;
}
.hero-register-embed h2 { color: #fff; font-size: 1.15rem; margin: 0 0 4px; text-align: center; }
.hero-register-sub { color: #9a9aa5; font-size: .8rem; text-align: center; margin: 0 0 20px; }
.hero-form-row { margin-bottom: 12px; }
.hero-form-row label { display: block; color: #cfcfd6; font-size: .78rem; font-weight: 600; margin-bottom: 6px; }
.hero-form-row input {
    width: 100%; padding: 11px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05); color: #fff; font-size: 16px; font-family: inherit;
}
.hero-form-row input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.08); }
.hero-register-submit { width: 100%; justify-content: center; margin-top: 6px; }
.hero-register-hint { text-align: center; margin-top: 16px; font-size: .78rem; color: #9a9aa5; }
.hero-register-hint a { color: #fff; font-weight: 600; }
.hero-register-hint a:visited { color: #fff; }

@media (max-width: 859px) {
    .hero-register-embed { max-width: 100%; }
}

.hero-dark-stats {
    position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    margin-top: 64px;
}
.hero-stat {
    background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.09); border-radius: 20px;
    padding: 30px 26px; position: relative; overflow: hidden;
}
.hero-stat::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: #fff; opacity: .6; }
.hero-stat:nth-child(2)::before { background: var(--accent); }
.hero-stat:nth-child(3)::before { background: #e8b34d; }
.hero-stat-number { font-size: 2.6rem; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1; }
.hero-stat-accent { color: var(--accent); }
.hero-stat-gold { color: #e8b34d; }
.hero-stat h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.hero-stat p { color: #9a9aa5; font-size: .88rem; line-height: 1.55; margin: 0; }

.hero-stores-label {
    display: block; text-align: center; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: #7d7d88; margin: 64px 0 24px;
}
.hero-stores-label-inline { text-align: left; margin: 34px 0 16px; }
.hero-stores-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hero-stores-grid-inline { justify-content: flex-start; gap: 8px; max-width: 560px; }
.hero-stores-grid-inline .hero-store-cell { padding: 9px 16px; font-size: .82rem; }
.hero-stores-grid-inline .hero-store-cell svg { width: 16px; height: 16px; }
.hero-store-cell {
    padding: 13px 22px; border-radius: 100px; background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.12); font-weight: 700; color: #e4e4ea; font-size: .92rem;
    display: flex; align-items: center; gap: 10px; transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.hero-store-cell:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); }
.hero-store-cell svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-store-more { background: var(--accent); border-color: var(--accent); color: #fff; }
.hero-store-more:hover { background: var(--accent-hover); }

/* ---------- Startseite: Monetarisierungs-Sektion ---------- */
.monetize-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.monetize-copy .eyebrow { display: block; margin-bottom: 14px; }
.monetize-headline { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.1; margin-bottom: 18px; color: var(--text); }
.monetize-accent { color: var(--accent); }
.monetize-subtext { color: var(--text-muted); font-size: 1.02rem; line-height: 1.6; max-width: 480px; margin: 0 0 28px; }
.monetize-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.monetize-mockup {
    background: #131315; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 22px;
    max-width: 420px; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.4);
}
.monetize-mockup-header {
    display: flex; align-items: center; gap: 10px; color: #d4d4dc; font-size: .82rem; font-weight: 600; margin-bottom: 20px;
}
.monetize-mockup-dots { display: flex; gap: 5px; }
.monetize-mockup-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); display: block; }
.monetize-mockup-live {
    margin-left: auto; color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .04em;
    background: rgba(212,9,36,0.12); padding: 3px 10px; border-radius: 100px;
}
.monetize-mockup-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.monetize-mockup-row-top { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: #d4d4dc; margin-bottom: 6px; }
.monetize-row-icon { flex-shrink: 0; width: 15px; height: 15px; color: var(--accent); display: flex; }
.monetize-row-icon svg { width: 100%; height: 100%; }
.monetize-row-label { flex-grow: 1; }
.monetize-row-amount { font-weight: 700; color: #fff; }
.monetize-mockup-bar { height: 4px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.monetize-mockup-bar span { display: block; height: 100%; background: var(--accent); border-radius: 4px; }
.monetize-mockup-total {
    display: flex; justify-content: space-between; align-items: center; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.monetize-mockup-total span { color: #8f8f99; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; }
.monetize-mockup-total strong { color: #fff; font-size: 1.6rem; }

.monetize-cards { display: flex; flex-direction: column; gap: 16px; }
.monetize-card {
    display: flex; gap: 16px; align-items: flex-start; background: var(--bg-elevated); border: var(--card-elevated-border);
    border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow);
}
.monetize-card-icon {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--accent-soft);
    display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.monetize-card-icon svg { width: 22px; height: 22px; }
.monetize-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.monetize-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.55; margin: 0; }

@media (max-width: 900px) {
    .monetize-grid { grid-template-columns: 1fr; gap: 36px; }
    .monetize-mockup { max-width: 100%; }
}

@media (max-width: 700px) {
    .hero-dark-stats { grid-template-columns: 1fr; gap: 28px; }
    .hero-dark-headline { font-size: 2.1rem; }
}

/* ---------- Frontend-Popup (admin-gesteuert) ---------- */
.oc-popup-overlay {
    display: none; position: fixed; inset: 0; background: rgba(10,10,15,0.72); z-index: 2000;
    align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(3px);
}
.oc-popup-overlay.active { display: flex; }
.oc-popup-box {
    position: relative; background: var(--bg-elevated); border-radius: var(--radius); max-width: 460px; width: 100%;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); overflow: hidden; animation: ocPopupIn .25s ease;
}
@keyframes ocPopupIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.oc-popup-close {
    position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; border: none;
    background: rgba(0,0,0,0.06); color: var(--text); font-size: 1rem; cursor: pointer; z-index: 1;
}
.oc-popup-close:hover { background: rgba(0,0,0,0.12); }
.oc-popup-image { width: 100%; max-height: 220px; object-fit: cover; display: block; }
.oc-popup-body { padding: 28px 26px 30px; text-align: center; }
.oc-popup-body h2 { margin: 0 0 12px; font-size: 1.3rem; color: var(--text); }
.oc-popup-content { color: var(--text-muted); font-size: .92rem; line-height: 1.6; margin-bottom: 20px; }
.oc-popup-content p:last-child { margin-bottom: 0; }
.oc-popup-btn { display: inline-flex; }

/* ---------- Öffentliches Gast-Forum: Beitrags-Layout (Avatar/Ränge/Badges) ---------- */
.badge { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: .72rem; font-weight: 700; color: #fff; }
.user-avatar { border-radius: 50%; object-fit: cover; display: inline-block; flex-shrink: 0; }
.user-avatar-fallback { color: #fff; text-align: center; font-weight: 700; }
.forum-post { display: flex; gap: 20px; align-items: flex-start; }
.forum-post-author {
    width: 160px; flex-shrink: 0; text-align: center; padding-right: 16px;
    border-right: 1px solid var(--border);
}
.forum-post-author .user-avatar { width: 64px; height: 64px; font-size: 26px; line-height: 64px; margin: 0 auto 8px; }
.forum-post-author .author-name { font-weight: 700; display: block; margin-bottom: 4px; }
.forum-post-author .author-stats { font-size: .74rem; color: var(--text-muted); line-height: 1.6; margin-top: 8px; }
.forum-post-body { flex: 1; min-width: 0; }
.forum-post-meta { color: var(--text-muted); font-size: .8rem; margin-bottom: 10px; }
.forum-post-content { line-height: 1.65; word-wrap: break-word; }
.forum-post-content p { margin: 0 0 12px; }
.forum-rank-title { display: block; font-weight: 700; font-size: .82rem; color: var(--text); margin-top: 4px; }
.forum-rank-stars { display: block; font-size: 1rem; letter-spacing: 1px; line-height: 1; margin-top: 3px; }

@media (max-width: 640px) {
    .forum-post { flex-direction: column; }
    .forum-post-author { width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 12px; text-align: left; display: flex; align-items: center; gap: 12px; }
    .forum-post-author .user-avatar { margin: 0; }
    .forum-post-author .author-stats { margin-top: 0; }
}

/* ---------- Release-Karten auf der Artisten-Profilseite (quadratisches Cover) ---------- */
.grid-releases { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px; }
.release-card { border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-elevated); border: var(--card-elevated-border); transition: transform .25s ease, box-shadow .25s ease; }
.release-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.release-card-img { aspect-ratio: 1 / 1; background-size: cover; background-position: center; background-color: var(--bg-alt); }
.release-card-body { padding: 12px 14px; }
.release-card-body h3 { margin: 0 0 2px; font-size: .92rem; line-height: 1.3; }
.release-card-artist { margin: 0 0 4px !important; color: var(--text) !important; font-weight: 600; font-size: .8rem !important; line-height: 1.4; }
.release-card-body p { margin: 0; color: var(--text-muted); font-size: .78rem; }

@media (max-width: 480px) {
    .grid-releases { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
}

/* ---------- Scroll-nach-oben-Button (nur öffentliche Website) ---------- */
.scroll-top-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 200;
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border);
    background: var(--bg-elevated); color: var(--text); box-shadow: var(--shadow);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .2s, transform .2s, visibility .2s, border-color .15s, color .15s;
}
.scroll-top-btn.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { border-color: var(--accent); color: var(--accent); }
.scroll-top-btn svg { width: 20px; height: 20px; }
@media (max-width: 640px) {
    .scroll-top-btn { bottom: 16px; right: 16px; width: 42px; height: 42px; }
}

/* ============================================================
   Playlists-Seite: dunkles Design, angelehnt an den hero-dark
   Bereich der Startseite - fuer einen professionelleren Look.
   ============================================================ */
.playlists-dark-page { background: #0a0a0f; color: #f2f2f5; }
.playlists-dark-page .section-eyebrow { color: #cfcfd6; }
.playlists-dark-page h1, .playlists-dark-page h2, .playlists-dark-page h3 { color: #fff; }
.playlists-dark-page p { color: #b8b8c2; }

.playlist-dark-card {
    background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
    overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, border-color .18s ease;
}
.playlist-dark-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.22); }
.playlist-dark-card .pd-badge {
    display: inline-block; background: rgba(255,255,255,0.08); color: #cfcfd6; font-size: .74rem;
    padding: 4px 10px; border-radius: 100px; margin: 0 6px 6px 0;
}
.playlist-dark-card .pd-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.playlist-dark-card .pd-title { color: #fff; margin: 0 0 8px; font-size: 1.1rem; }
.playlist-dark-card .pd-desc { color: #9a9aa5; font-size: .9rem; margin: 0 0 12px; line-height: 1.5; }
.playlist-dark-card .pd-followers { color: #7d7d87; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 4px; }
.playlist-dark-card .pd-followers-value { color: #fff; font-size: 1rem; font-weight: 700; margin: 0 0 14px; }
.btn-dark-outline {
    display: inline-flex; align-items: center; justify-content: center; padding: 11px 18px; border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.25); color: #fff; font-weight: 700; font-size: .82rem;
    text-transform: uppercase; letter-spacing: .03em; transition: border-color .18s ease; background: none; cursor: pointer;
}
.btn-dark-outline:hover { border-color: #fff; }
.btn-dark-outline:visited { color: #fff; }
.btn-dark-primary {
    display: inline-flex; align-items: center; justify-content: center; padding: 11px 18px; border-radius: 100px;
    background: var(--accent); color: #fff; font-weight: 700; font-size: .82rem;
    text-transform: uppercase; letter-spacing: .03em; border: none; cursor: pointer; transition: transform .18s ease;
}
.btn-dark-primary:hover { transform: translateY(-1px); }
.btn-dark-primary:visited { color: #fff; }

.playlist-dark-step {
    background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px;
}
.playlist-dark-step .pd-step-num { display: inline-block; color: var(--accent); font-weight: 800; font-size: 1.3rem; margin-bottom: 10px; }
.playlist-dark-step h3 { color: #fff; margin-bottom: 8px; font-size: 1.02rem; }
.playlist-dark-step p { color: #9a9aa5; font-size: .9rem; margin: 0; line-height: 1.55; }

.playlists-dark-page details { border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 16px 20px; background: rgba(255,255,255,0.02); }
.playlists-dark-page details summary { color: #fff; }
.playlists-dark-page details p { color: #9a9aa5; }
.playlists-dark-page details summary::after { color: #7d7d87; }

/* Playlist-Anhoer-Popup im dunklen Design */
#playlistModal .pm-box { background: #14141a; border: 1px solid rgba(255,255,255,0.1); color: #fff; }
#playlistModal .pm-close { color: #9a9aa5; }
#playlistModal .pm-close:hover { color: #fff; }
#playlistModal .pm-subtitle { color: #9a9aa5; font-size: .85rem; margin: 2px 0 16px; }
#playlistModal .pm-spotify-link { display: block; text-align: center; margin-top: 14px; color: #9a9aa5; font-size: .85rem; }
#playlistModal .pm-spotify-link:hover { color: #fff; }
