/* ============================================================
   DGZS Presse-Buzz — Glamour Design System
   Standalone CSS (kein Pico CSS)
   BENT-305 — Foundation: Design-Tokens + Tweaks-Panel
   Token-Namen 1:1 aus design/index.html portiert.
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS — 4 Paletten × 2 Modi
      Variablen-Namen: identisch zum Designer-Mockup
      --bg, --bg-elev, --bg-deep, --ink, --ink-mute, --ink-dim,
      --rule, --rule-strong, --gold, --gold-soft, --gold-deep,
      --accent, --accent-2, --pos, --neu, --neg,
      --spot, --spot-2, --card, --card-border,
      --serif, --sans, --mono, --glam
   ============================================================ */

:root {
    /* Midnight Dark — Fallback */
    --bg:          #0e1030;
    --bg-elev:     #181a3a;
    --bg-deep:     #08091f;
    --ink:         #f4ecd8;
    --ink-mute:    #a09bb8;
    --ink-dim:     #6b6885;
    --rule:        rgba(217, 178, 106, 0.18);
    --rule-strong: rgba(217, 178, 106, 0.35);
    --gold:        #d9b26a;
    --gold-soft:   #e8cc93;
    --gold-deep:   #8a6a34;
    --accent:      #d9b26a;
    --accent-2:    #b58b4a;
    --pos:         #8ec9a0;
    /* --neu: kühler Slate, klar abgegrenzt zu --gold (BENT-414) */
    --neu:         #9aa6b2;
    --neg:         #e0867c;
    --spot:        rgba(217, 178, 106, 0.35);
    --spot-2:      rgba(217, 178, 106, 0.08);
    --card:        rgba(255, 255, 255, 0.03);
    --card-border: rgba(217, 178, 106, 0.22);

    /* Typografie */
    --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --sans:  'DM Sans', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    --mono:  'JetBrains Mono', ui-monospace, Menlo, monospace;

    /* Glamour-Intensität 0..1 (Slider 0–10 wird auf 0–1 gemappt) */
    --glam: 0.5;

    /* Abstand / Form */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-pill: 999px;

    /* Transitions */
    --t-fast: 0.15s ease;
    --t-base: 0.25s ease;
    --t-slow: 0.35s ease;
}

/* ============================================================
   MIDNIGHT & CHAMPAGNE
   ============================================================ */
html[data-palette="midnight"][data-mode="dark"] {
    --bg:#0e1030; --bg-elev:#181a3a; --bg-deep:#08091f;
    --ink:#f4ecd8; --ink-mute:#a09bb8; --ink-dim:#6b6885;
    --rule:rgba(217,178,106,.18); --rule-strong:rgba(217,178,106,.38);
    --gold:#d9b26a; --gold-soft:#e8cc93; --gold-deep:#8a6a34;
    --accent:#d9b26a; --accent-2:#b58b4a;
    --pos:#8ec9a0; --neu:#9aa6b2; --neg:#e0867c;
    --spot:rgba(217,178,106,.35); --spot-2:rgba(217,178,106,.08);
    --card:rgba(255,255,255,.03); --card-border:rgba(217,178,106,.22);
}
html[data-palette="midnight"][data-mode="light"] {
    --bg:#f5efe3; --bg-elev:#fbf6ea; --bg-deep:#ede3cc;
    --ink:#1a1b3a; --ink-mute:#4e4a6a; --ink-dim:#8a85a5;
    --rule:rgba(90,72,38,.18); --rule-strong:rgba(90,72,38,.4);
    --gold:#8a6a34; --gold-soft:#b58b4a; --gold-deep:#5a4820;
    --accent:#1a1b3a; --accent-2:#8a6a34;
    --pos:#3d7a52; --neu:#5a6470; --neg:#b04a40;
    --spot:rgba(138,106,52,.18); --spot-2:rgba(138,106,52,.05);
    --card:rgba(255,255,255,.55); --card-border:rgba(90,72,38,.2);
}

/* ============================================================
   BORDEAUX & GOLD
   ============================================================ */
html[data-palette="bordeaux"][data-mode="dark"] {
    --bg:#2a0a18; --bg-elev:#3a0f22; --bg-deep:#1a050f;
    --ink:#f6e8d0; --ink-mute:#c4a79a; --ink-dim:#8a7068;
    --rule:rgba(224,184,88,.2); --rule-strong:rgba(224,184,88,.42);
    --gold:#e0b858; --gold-soft:#f2d386; --gold-deep:#8a6a2a;
    --accent:#e0b858; --accent-2:#b8923e;
    --pos:#9fc995; --neu:#9aa6b2; --neg:#e89a8a;
    --spot:rgba(224,184,88,.35); --spot-2:rgba(224,184,88,.08);
    --card:rgba(255,255,255,.03); --card-border:rgba(224,184,88,.24);
}
html[data-palette="bordeaux"][data-mode="light"] {
    --bg:#f6ece0; --bg-elev:#fbf4e8; --bg-deep:#ecddc8;
    --ink:#2a0a18; --ink-mute:#5a3340; --ink-dim:#8a6070;
    --rule:rgba(90,50,30,.2); --rule-strong:rgba(90,50,30,.42);
    --gold:#8a6a2a; --gold-soft:#b8923e; --gold-deep:#5a4520;
    --accent:#7a1830; --accent-2:#8a6a2a;
    --pos:#3d7a52; --neu:#5a6470; --neg:#a83448;
    --spot:rgba(138,106,42,.18); --spot-2:rgba(138,106,42,.05);
    --card:rgba(255,255,255,.55); --card-border:rgba(90,50,30,.2);
}

/* ============================================================
   ONYX NEON
   ============================================================ */
html[data-palette="onyx"][data-mode="dark"] {
    --bg:#0a0a12; --bg-elev:#14141f; --bg-deep:#04040a;
    --ink:#f0eef7; --ink-mute:#9a96b0; --ink-dim:#605c78;
    --rule:rgba(255,61,136,.22); --rule-strong:rgba(255,61,136,.48);
    --gold:#ead394; --gold-soft:#f5e4b0; --gold-deep:#8a7840;
    --accent:#ff3d88; --accent-2:#ead394;
    --pos:#6dd6a1; --neu:#9aa6b2; --neg:#ff6f6f;
    --spot:rgba(255,61,136,.38); --spot-2:rgba(255,61,136,.08);
    --card:rgba(255,255,255,.04); --card-border:rgba(255,61,136,.24);
}
html[data-palette="onyx"][data-mode="light"] {
    --bg:#f5f3f8; --bg-elev:#ffffff; --bg-deep:#e8e4f0;
    --ink:#0a0a12; --ink-mute:#4a4558; --ink-dim:#80798f;
    --rule:rgba(180,30,98,.2); --rule-strong:rgba(180,30,98,.45);
    --gold:#8a7840; --gold-soft:#b59a55; --gold-deep:#5a4e20;
    --accent:#d01870; --accent-2:#8a7840;
    --pos:#3d7a52; --neu:#5a6470; --neg:#b83050;
    --spot:rgba(208,24,112,.18); --spot-2:rgba(208,24,112,.05);
    --card:rgba(255,255,255,.6); --card-border:rgba(180,30,98,.22);
}

/* ============================================================
   DOLCE VITA
   ============================================================ */
html[data-palette="dolce"][data-mode="dark"] {
    --bg:#14241d; --bg-elev:#1c3027; --bg-deep:#0a1612;
    --ink:#f4ece0; --ink-mute:#b0b5a8; --ink-dim:#70756a;
    --rule:rgba(179,106,60,.24); --rule-strong:rgba(179,106,60,.48);
    --gold:#d49570; --gold-soft:#e8b392; --gold-deep:#80502f;
    --accent:#d49570; --accent-2:#a5c4ae;
    --pos:#a5c4ae; --neu:#9aa6b2; --neg:#e08272;
    --spot:rgba(212,149,112,.35); --spot-2:rgba(212,149,112,.08);
    --card:rgba(255,255,255,.03); --card-border:rgba(212,149,112,.25);
}
html[data-palette="dolce"][data-mode="light"] {
    --bg:#f4ece0; --bg-elev:#fbf5ea; --bg-deep:#e8dcc4;
    --ink:#1f3d34; --ink-mute:#4f645b; --ink-dim:#808a82;
    --rule:rgba(179,106,60,.22); --rule-strong:rgba(179,106,60,.45);
    --gold:#a55432; --gold-soft:#b36a3c; --gold-deep:#6a3518;
    --accent:#1f3d34; --accent-2:#b36a3c;
    --pos:#2f6048; --neu:#5a6470; --neg:#a8493c;
    --spot:rgba(179,106,60,.16); --spot-2:rgba(179,106,60,.05);
    --card:rgba(255,255,255,.55); --card-border:rgba(179,106,60,.2);
}

/* ============================================================
   TYPO-VARIANTEN
   ============================================================ */
html[data-typo="editorial"] { --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; }
html[data-typo="showbiz"]   { --serif: 'Space Grotesk', 'DM Sans', system-ui, sans-serif; }
html[data-typo="klassisch"] { --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; }

/* ============================================================
   2. RESET & BODY
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.6;
    background: var(--bg-deep);
    color: var(--ink);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transition: background var(--t-slow), color var(--t-slow);
}

/* ============================================================
   3. TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    line-height: 1.2;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
h1 { font-size: 2rem;   margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color var(--t-fast), opacity var(--t-fast); }
a:hover { color: var(--gold-soft); }

strong, b { font-weight: 700; }
em, i { font-style: italic; }
small { font-size: 0.875rem; }

code, pre, kbd {
    font-family: var(--mono);
    font-size: 0.9em;
}
code {
    background: var(--bg-elev);
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    padding: 0.1em 0.35em;
    color: var(--gold-soft);
}
pre {
    background: var(--bg-elev);
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    padding: 1rem;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
}
pre code { background: none; border: none; padding: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.25rem; }
hr { border: none; border-top: 1px solid var(--rule); margin: 2rem 0; }
img { max-width: 100%; height: auto; }

/* ============================================================
   4. LAYOUT — Container & Grid
   ============================================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: start;
}

/* ============================================================
   5. FORMS
   ============================================================ */
label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-mute);
    margin-bottom: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="number"],
select,
textarea {
    display: block;
    width: 100%;
    padding: 0.5em 0.75em;
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--ink);
    background: var(--bg-elev);
    border: 1px solid var(--rule-strong);
    border-radius: var(--radius-md);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--spot-2);
}
input::placeholder, textarea::placeholder { color: var(--ink-dim); }

select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'><path d='M8 10L3 5h10z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.6em center;
    background-size: 1em;
    padding-right: 2em;
    cursor: pointer;
}
textarea { resize: vertical; min-height: 6rem; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
button,
[role="button"],
a[role="button"],
input[type="submit"],
input[type="button"],
input[type="reset"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5em 1.2em;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--bg-deep);
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--t-fast), border-color var(--t-fast),
                color var(--t-fast), box-shadow var(--t-fast), opacity var(--t-fast);
    white-space: nowrap;
    user-select: none;
    -webkit-appearance: none;
    appearance: none;
}
button:hover,
[role="button"]:hover,
a[role="button"]:hover {
    background: var(--gold-soft);
    border-color: var(--gold-soft);
    box-shadow: 0 0 12px var(--spot);
    color: var(--bg-deep);
}
button:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
button[aria-busy="true"],
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
button[aria-busy="true"]::after { content: " …"; }

button.outline,
[role="button"].outline,
a[role="button"].outline {
    color: var(--accent);
    background: transparent;
    border-color: var(--rule-strong);
}
button.outline:hover,
[role="button"].outline:hover,
a[role="button"].outline:hover {
    background: var(--spot-2);
    color: var(--gold-soft);
    border-color: var(--accent);
}

/* Danger */
button.danger, a.danger {
    color: #fff;
    background: var(--neg);
    border-color: var(--neg);
}
button.danger:hover, a.danger:hover {
    opacity: 0.85;
    box-shadow: 0 0 12px rgba(224,134,124,0.4);
}
button.danger.outline, a.danger.outline {
    color: var(--neg);
    background: transparent;
}
button.danger.outline:hover, a.danger.outline:hover {
    background: rgba(224,134,124,0.1);
}

/* Kleine Buttons */
.btn-sm {
    padding: 0.25em 0.6em !important;
    font-size: 0.8rem !important;
    border-radius: var(--radius-sm) !important;
}

/* ============================================================
   7. CARDS / ARTICLE
   ============================================================ */
article {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: border-color var(--t-base), box-shadow var(--t-base);
    margin-bottom: 1rem;
}
article:last-child { margin-bottom: 0; }

article > header {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rule);
}
article > footer {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--rule);
}

/* Report-Header */
article > header.report-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
article > header.report-header .report-actions {
    margin-left: auto;
    display: inline-flex;
    gap: 0.25rem;
}

/* Error-Card */
article.error-box {
    border-color: var(--neg);
    background: rgba(224,134,124,0.1);
    color: var(--neg);
}
article.login-card { max-width: 420px; }

/* ============================================================
   8. TABLES
   ============================================================ */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
thead { background: var(--bg-elev); }

th {
    padding: 0.6rem 0.75rem;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink-mute);
    border-bottom: 2px solid var(--rule-strong);
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
td {
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid var(--rule);
    color: var(--ink);
    vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg-elev); }

/* Sortierbare Spalten */
th[data-sortable] { cursor: pointer; user-select: none; }
th[data-sortable]:hover { color: var(--accent); }
th[data-sortable]::after { content: ' ⇅'; opacity: 0.3; font-size: 0.8em; }
th[data-sortable].sort-asc::after { content: ' ↑'; opacity: 0.7; }
th[data-sortable].sort-desc::after { content: ' ↓'; opacity: 0.7; }

/* .shows-table — vollständige Definition weiter unten im Abschnitt "Shows Table" */

/* ============================================================
   9. BADGES
   ============================================================ */
.badge {
    display: inline-block;
    padding: 0.15em 0.55em;
    border-radius: var(--radius-sm);
    font-size: 0.8em;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.badge-positive  { background: rgba(142,201,160,.15); color: var(--pos); }
.badge-neutral   { background: var(--bg-elev); color: var(--ink-mute); }
.badge-negative  { background: rgba(224,134,124,.15); color: var(--neg); }
/* blue badge — fixer Wert, weil kein Theme-Token passend (Info-Blau neutral) */
.badge-permanent { background: rgba(100,160,250,.12); color: #60a5fa; }
.badge-guest     { background: rgba(154,166,178,.15); color: var(--neu); }
.badge-local     { background: rgba(100,160,250,.12); color: #60a5fa; }
/* Light-Mode: #60a5fa ist auf weißem Hintergrund zu hell (Kontrast ~2.3:1) */
html[data-mode="light"] .badge-permanent,
html[data-mode="light"] .badge-local {
    background: rgba(37,99,235,.1);
    color: #1d4ed8;
}
.badge-outside   { background: var(--bg-elev); color: var(--ink-dim); }

/* ============================================================
   10. SENTIMENT-AMPEL
   ============================================================ */
.ampel {
    display: inline-block;
    width: 12px; height: 12px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0.3em;
    flex-shrink: 0;
}
.ampel-positiv { background: var(--pos); }
.ampel-neutral { background: var(--neu); }
.ampel-negativ { background: var(--neg); }
.ampel-none    { background: var(--rule-strong); }

/* ============================================================
   11. RELEVANZ-DOTS
   ============================================================ */
.relevanz-dots { white-space: nowrap; display: inline-flex; align-items: center; gap: 0.15em; }
.relevanz-dim { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.relevanz-dim small { font-size: 0.6em; color: var(--ink-dim); margin-top: 1px; }
.relevanz-gesamt { margin-right: 0.3em; }
.sort-val { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   12. DIALOG
   ============================================================ */
dialog {
    background: var(--bg-elev);
    color: var(--ink);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    padding: 0;
    max-width: 480px;
    width: 90%;
}
dialog::backdrop { background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); }
dialog article { margin: 0; border: none; box-shadow: none; background: transparent; }
dialog.confirm-dialog article { margin: 0; }
dialog.confirm-dialog .dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ============================================================
   13. DETAILS / SUMMARY
   ============================================================ */
details {
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    background: var(--bg-elev);
    margin-bottom: 0.5rem;
}
summary {
    padding: 0.6em 0.8em;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
    list-style: none;
    color: var(--ink-mute);
}
summary::-webkit-details-marker { display: none; }
summary::before { content: "▶ "; font-size: 0.7em; opacity: 0.5; }
details[open] summary::before { content: "▼ "; }
details > :not(summary) { padding: 0 0.8em 0.8em; }

/* ============================================================
   14. SITE-HEADER
   ============================================================ */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background var(--t-slow), border-color var(--t-slow);
}
/* Gold-Akzent-Linie unter dem Header — stärke skaliert mit --glam */
.site-header::after {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: calc(var(--glam) * 0.7);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
}

/* Brand */
.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--ink);
    transition: opacity var(--t-fast);
    flex-shrink: 0;
}
.brand-link:hover { opacity: 0.85; color: var(--ink); }
.brand-logo { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; justify-content: center; }
.brand-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: 0.02em;
}
.brand-tagline {
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 2px;
}

/* ============================================================
   15. TAB-NAVIGATION
   ============================================================ */
.tab-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
}
.tab-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.tab-nav ul::-webkit-scrollbar { display: none; }

.tab-nav a {
    display: block;
    padding: 0.7rem 1.1rem;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ink-mute);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--t-fast), border-color var(--t-fast);
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.tab-nav a:hover { color: var(--ink); }
.tab-nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.tab-nav li.nav-right { margin-left: auto; }
.tab-nav a.nav-logout { color: var(--ink-dim); font-size: 0.82rem; }

/* ============================================================
   16. ARTIST-SEARCH
   ============================================================ */
.artist-search { position: relative; display: inline-block; }

.artist-search input[type="search"] {
    width: 260px;
    padding: 0.4em 0.6em 0.4em 1.8em;
    font-size: 0.9rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
    background-repeat: no-repeat;
    background-position: 0.45em center;
    background-size: 1em 1em;
}

.artist-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: var(--bg-elev);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    z-index: 200;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.artist-search-results a {
    display: block;
    padding: 0.5em 0.75em;
    text-decoration: none;
    color: var(--ink);
    font-size: 0.9rem;
    transition: background var(--t-fast);
}
.artist-search-results a:hover,
.artist-search-results a.active {
    background: var(--spot-2);
    color: var(--accent);
}
.artist-search-empty {
    padding: 0.5em 0.75em;
    color: var(--ink-dim);
    font-size: 0.9rem;
    font-style: italic;
}

/* ============================================================
   17. FILTER-CHIPS
   ============================================================ */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.5rem 0 1rem;
}
.filter-chip {
    padding: 0.28em 0.8em;
    border: 1px solid var(--rule-strong);
    border-radius: var(--radius-pill);
    background: var(--bg-elev);
    font-size: 0.83em;
    cursor: pointer;
    color: var(--ink-mute);
    transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-deep);
}

/* ============================================================
   18. ADMIN-BANNER & STATUS
   ============================================================ */
.admin-banner {
    padding: 0.7em 1em;
    border-radius: var(--radius-sm);
    margin: 0.5em 0;
    font-size: 0.9rem;
    border-left: 4px solid;
}
.admin-banner.ok {
    background: rgba(142,201,160,.12);
    color: var(--pos);
    border-left-color: var(--pos);
}
.admin-banner.err {
    background: rgba(224,134,124,.12);
    color: var(--neg);
    border-left-color: var(--neg);
}
.admin-row-spaced { margin-top: 0.5em; }

.status-banner {
    padding: 0.7em 1em;
    border-radius: var(--radius-sm);
    background: rgba(142,201,160,.12);
    color: var(--pos);
    margin: 0.5em 0;
    border-left: 4px solid var(--pos);
}

/* ============================================================
   19. BREADCRUMB
   ============================================================ */
.breadcrumb ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    padding: 0;
    margin: 0 0 1em 0;
    font-size: 0.875rem;
    color: var(--ink-mute);
}
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 0.5em; opacity: 0.4; }
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); text-decoration: underline; }

/* ============================================================
   20. PAGINIERUNG
   ============================================================ */
.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 1em 0;
    font-size: 0.875rem;
}
.pagination-info { color: var(--ink-mute); }
.pagination-controls { display: inline-flex; flex-wrap: wrap; gap: 0.5rem; }

/* ============================================================
   21. SITE-FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--rule);
    margin-top: 3rem;
    padding: 1.5rem 0;
    transition: background var(--t-slow), border-color var(--t-slow);
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo { height: 24px; width: auto; opacity: 0.6; }
.footer-name { font-size: 0.82rem; color: var(--ink-mute); }

/* ============================================================
   22. MAIN CONTENT AREA
   ============================================================ */
main.container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: calc(100vh - 200px);
}

/* ============================================================
   23. UTILITIES
   ============================================================ */
.hidden { display: none !important; }

.inline-form { display: inline; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.text-muted   { color: var(--ink-mute); }
.text-accent  { color: var(--accent); }
.text-sm      { font-size: 0.875rem; }
.text-xs      { font-size: 0.75rem; }
.text-right   { text-align: right; }
.text-center  { text-align: center; }
.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem; }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }

/* BENT-1545: ehemalige Inline-style="..."-Attribute aus den Templates, jetzt als
   Klassen. CSP style-src verzichtet seither auf 'unsafe-inline': style-Attribute
   lassen sich (anders als <style>-Blöcke) nicht per Nonce erlauben. Dynamische
   Breiten-/Flex-Werte (Stimmungs-Balken) laufen stattdessen über data-w/data-flex
   + static/inline-style-shim.js (programmatische .style-Zuweisung unterliegt nicht
   der CSP style-src-Direktive). */
.text-dim     { color: var(--ink-dim); }
.text-gold-soft { color: var(--gold-soft); }
.dim-italic   { color: var(--ink-dim); font-style: italic; }
.link-plain   { color: inherit; text-decoration: none; }
.no-underline { text-decoration: none; }
.nowrap       { white-space: nowrap; }
.pos-relative { position: relative; }
.op-30 { opacity: 0.3; }

.mt-xs  { margin-top: 0.25rem; }
.mt-ms  { margin-top: 0.75rem; }
.mt-lg  { margin-top: 1.25rem; }
.mt-xl  { margin-top: 1.5rem; }
.mt-xxl { margin-top: 2rem; }
.mb-ms  { margin-bottom: 0.75rem; }
.mb-lg  { margin-bottom: 1.25rem; }
.pt-md  { padding-top: 1rem; }
.pt-xl  { padding-top: 2rem; }
.ml-sm  { margin-left: 0.5rem; }
.ml-ms  { margin-left: 0.4rem; }
.ml-14  { margin-left: 14px; }
.ml-6   { margin-left: 6px; }
.ml-auto { margin-left: auto; }
.close-x { color: inherit; text-decoration: none; margin-left: 6px; }

.w-full { width: 100%; }
.w-full-mt-xs { width: 100%; margin-top: 0.25rem; }
.flex-end { display: flex; align-items: flex-end; }
.checkbox-label-inline { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: normal; }
.divider-block { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--rule); }
.details-form-tight { margin-top: 0.5rem; padding: 0 0 0.25rem; }
.feed-head-single { grid-template-columns: 1fr; }

.empty-note { font-family: var(--sans); font-size: 14px; color: var(--ink-mute); }
.empty-note-sm { font-family: var(--sans); font-size: 13px; color: var(--ink-mute); }
.empty-state-pad { padding: 40px 32px; }
.empty-state-pad-narrow { padding: 40px 0; }
.px-32 { padding-left: 32px; padding-right: 32px; }
.px-32-pb-16 { padding: 0 32px 16px; }
.px-32-pb-24 { padding: 0 32px 24px; }
.px-32-pb-40 { padding: 0 32px 40px; }
.fp-toggle-row { padding: 0 32px 16px; display: flex; align-items: center; gap: 8px; }
.fp-toggle-label {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-mute);
    cursor: pointer; display: flex; align-items: center; gap: 6px;
}
.pg-ellipsis {
    opacity: 0.4; cursor: default; border: none; background: transparent;
    color: var(--ink-mute); font-size: 12px; width: 34px; height: 34px;
}
.title-wrap { word-break: break-word; max-width: 28rem; }
.dot-pos  { background: var(--pos); }
.dot-neu  { background: var(--neu); }
.dot-neg  { background: var(--neg); }
.dot-gold { background: var(--gold); }
.col-64  { width: 64px; }
.col-90  { width: 90px; }
.col-100 { width: 100px; }
.col-120 { width: 120px; }
.col-140 { width: 140px; }
.col-160 { width: 160px; }
.col-180 { width: 180px; }
.col-220 { width: 220px; }
.fs-10 { font-size: 10px; }
.fs-13-bold { font-size: 13px; font-weight: 700; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.num-xs { font-size: 0.7em; opacity: 0.6; }
.sent-rail-static { width: 100%; height: 8px; }
.hint-block-mt3 { display: block; margin-top: 0.3rem; }
.my-md { margin: 1rem 0; }
.m-scrape { margin: 0.5rem 0 1.5rem; }

.timeline-bar {
    height: 6px;
    background: var(--accent);
    border-radius: var(--radius-pill);
    opacity: 0.6;
}

/* ============================================================
   24. TWEAKS-PANEL
   ============================================================ */

/* ⚙-Trigger-Button */
.tweaks-trigger {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--bg-elev);
    border: 1px solid var(--card-border);
    color: var(--gold);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
    padding: 0;
    line-height: 1;
}
.tweaks-trigger:hover {
    background: var(--spot-2);
    box-shadow: 0 0 20px var(--spot);
    transform: scale(1.08);
    color: var(--gold-soft);
    border-color: var(--accent);
}

/* Panel */
.tweaks-panel {
    position: fixed;
    bottom: 5rem;
    right: 1.5rem;
    z-index: 999;
    width: 280px;
    background: var(--bg-elev);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px var(--spot-2);
    padding: 1.25rem;
    transform-origin: bottom right;
    transform: scale(0.9) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-base), opacity var(--t-base);
}
.tweaks-panel.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.tweaks-panel h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rule);
    font-family: var(--sans);
}

.tweaks-section { margin-bottom: 1rem; }
.tweaks-section:last-child { margin-bottom: 0; }

.tweaks-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ink-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    display: block;
}
.tweaks-divider { border: none; border-top: 1px solid var(--rule); margin: 0.75rem 0; }

/* Palette */
.palette-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
}
.palette-btn {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    transition: transform var(--t-fast), border-color var(--t-fast);
    position: relative;
    overflow: hidden;
}
.palette-btn:hover { transform: scale(1.08); }
.palette-btn.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--spot-2);
}
.palette-btn[data-palette="midnight"] { background: linear-gradient(135deg, #0e1030 50%, #d9b26a 50%); }
.palette-btn[data-palette="bordeaux"] { background: linear-gradient(135deg, #2a0a18 50%, #e0b858 50%); }
.palette-btn[data-palette="onyx"]     { background: linear-gradient(135deg, #0a0a12 50%, #ff3d88 50%); }
.palette-btn[data-palette="dolce"]    { background: linear-gradient(135deg, #14241d 50%, #d49570 50%); }
.palette-btn span {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    font-size: 0.42rem;
    text-align: center;
    padding: 2px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Mode */
.mode-toggle { display: flex; gap: 0.4rem; }
.mode-btn {
    flex: 1;
    padding: 0.35em 0.5em;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--rule-strong);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--ink-mute);
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.mode-btn:hover { border-color: var(--accent); color: var(--accent); }
.mode-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-deep);
}

/* Typo */
.typo-toggle { display: flex; flex-direction: column; gap: 0.3rem; }
.typo-btn {
    width: 100%;
    padding: 0.35em 0.6em;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--rule-strong);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--ink-mute);
    cursor: pointer;
    text-align: left;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.typo-btn:hover { border-color: var(--accent); color: var(--accent); }
.typo-btn.active {
    background: var(--spot-2);
    border-color: var(--gold);
    color: var(--gold-soft);
}

/* Glamour-Slider */
.glam-slider-wrap { display: flex; align-items: center; gap: 0.5rem; }
.glam-slider-wrap input[type="range"] {
    flex: 1;
    appearance: none;
    -webkit-appearance: none;
    height: 4px;
    background: var(--rule-strong);
    border-radius: var(--radius-pill);
    border: none;
    padding: 0;
    outline: none;
    cursor: pointer;
    box-shadow: none;
    width: auto;
}
.glam-slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--bg-elev);
    cursor: pointer;
    box-shadow: 0 0 6px var(--spot);
}
.glam-slider-wrap input[type="range"]::-moz-range-thumb {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--bg-elev);
    cursor: pointer;
    box-shadow: 0 0 6px var(--spot);
}
.glam-val {
    min-width: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
}

/* ============================================================
   25. GLAMOUR-EFFEKTE — skalieren mit --glam
   ============================================================ */
/* Gold-Linie unter aktiven Nav-Items intensiver bei hohem Glam */
.tab-nav a.active {
    box-shadow: 0 2px calc(var(--glam) * 8px) var(--spot);
}

/* Spotlight auf Header skaliert mit --glam */
.site-header {
    box-shadow: 0 1px calc(var(--glam) * 12px + 2px) rgba(0,0,0,0.3);
}

/* Stage-Background für Glamour-Atmosph. (optional, Folge-Tickets) */
.stage-bg {
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    opacity: calc(var(--glam) * 1);
    transition: opacity var(--t-slow);
}
.stage-bg::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 1200px 800px at 20% -10%, var(--spot), transparent 60%),
        radial-gradient(ellipse 900px 700px at 85% 15%, var(--spot-2), transparent 55%),
        radial-gradient(ellipse 1400px 900px at 50% 110%, var(--spot-2), transparent 60%);
}

/* ============================================================
   26. RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .header-content { flex-wrap: wrap; gap: 0.5rem; }
    .brand-logo { height: 30px; }
    .artist-search,
    .artist-search input[type="search"] { width: 100% !important; box-sizing: border-box; }
    .tab-nav ul { flex-wrap: nowrap; }
    .tab-nav a { padding: 0.6rem 0.8rem; font-size: 0.8rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .grid { grid-template-columns: 1fr; }
    main.container { padding-top: 1.5rem; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    /* section-head: kompakter auf Mobile */
    .section-head { padding: 24px 0 14px; flex-wrap: wrap; gap: 0.5rem; }
    .section-head h3 { font-size: clamp(22px, 6vw, 34px); }
    /* .left auf Mobile: Überschrift + Zahl/section-sub untereinander, kein baseline-Kuddelmuddel */
    .section-head .left { flex-direction: column; align-items: flex-start; gap: 4px; }
    /* num-Span in h3 auf Mobile: ausgeblendet — Count steht bereits im Stat-Strip oben */
    .section-head h3 .num { display: none; }
    /* filter-bar: Gruppen umbrechen und scrollbar machen */
    .filter-bar { padding: 14px 0; gap: 8px; }
    .fb-group { flex-wrap: wrap; border-radius: 8px; }
    /* Admin-Tabellen ohne shows-table-Wrapper */
    article table { width: 100%; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
/* Tweaks-Panel: 12px Kante auf Tablet und kleiner (≤720px) */
@media (max-width: 720px) {
    .tweaks-panel {
        width: calc(100vw - 24px);
        right: 12px;
        left: 12px;
        bottom: 4.5rem;
    }
    .tweaks-trigger {
        right: 12px;
        bottom: 1rem;
    }
}
@media (max-width: 480px) {
    .tab-nav a { padding: 0.5rem 0.6rem; font-size: 0.75rem; }
    .brand-logo { height: 26px; }
    /* feed-item: noch kompakter, Datum-Zeile nicht zu hoch */
    .feed-item { padding: 14px 0; gap: 6px; }
    .f-date b { font-size: 14px; }
    .f-body h4 { font-size: 16px; }
    /* Artikel-Tabellen: Titelzelle breite begrenzen */
    .shows-table td:nth-child(2) { max-width: 200px; word-break: break-word; }
    /* filter-bar: Labels ohne margin auf Mobile */
    .filter-bar .fb-label { margin-left: 0 !important; }
    .filter-bar .small-btn { margin-left: 0 !important; }
}

/* Responsive Tabellen-Scroll: verhindert Layout-Bruch auf Mobile */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
/* .shows-table und .artists-table: overflow-x: auto global gesetzt — kein Media-Query nötig */

/* ============================================================
   27. PAGE 1 — SHOWS LANDING (BENT-306)
   ============================================================ */

/* Glamour-Pages: volle Breite — margin bleibt 0, da --container-pad nicht definiert ist */
/* (früher: margin-left: -var(--container-pad, 0) — kein gültiges CSS, wurde ignoriert) */

main.container > .hero:first-child { margin-top: -2rem; }

/* Hero */
.hero {
    padding: 64px 0 48px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse 700px 500px at 70% 20%, var(--spot), transparent 60%);
    opacity: calc(var(--glam) * 1); pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
}
.eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: "✦"; font-size: 10px; }
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.hero h1 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    color: var(--ink);
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero h1 .thin { font-weight: 400; font-style: italic; }
.hero p.lede {
    font-family: var(--sans);
    font-size: 16px;
    color: var(--ink-mute);
    max-width: 480px;
    line-height: 1.6;
    margin: 0 0 32px;
}
.hero-meta {
    display: flex; gap: 32px; align-items: flex-start;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
}
.meta-cell .v {
    font-family: var(--serif);
    font-style: italic;
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.meta-cell .l {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-dim);
}

/* Next Show Card */
.next-show {
    background: var(--bg-elev);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.next-show::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse 500px 300px at 50% -20%, var(--spot), transparent 65%);
    opacity: calc(var(--glam) * 0.8);
    pointer-events: none;
}
.next-show-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold);
    padding: 5px 10px;
    border: 1px solid var(--rule-strong);
    border-radius: 999px;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.15);
    position: relative;
}
.next-show-tag .pulse {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); box-shadow: 0 0 8px var(--gold);
    animation: glamPulse 1.8s ease-in-out infinite;
}
@keyframes glamPulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.next-show-date {
    font-family: var(--mono); font-size: 12px; color: var(--ink-mute);
    letter-spacing: 0.08em; margin-bottom: 10px; position: relative;
}
.next-show h2 {
    font-family: var(--serif); font-style: italic; font-weight: 700;
    font-size: 30px; line-height: 1.1; letter-spacing: -0.02em;
    margin: 0 0 20px; color: var(--ink); position: relative;
}
.next-show-artists {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 24px; position: relative;
}
.chip {
    font-family: var(--sans); font-size: 12px; font-weight: 500;
    padding: 5px 11px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--rule);
    border-radius: 999px; color: var(--ink);
}
html[data-mode="light"] .chip { background: rgba(0,0,0,0.04); }
.chip.more { color: var(--ink-mute); }
.next-show-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 18px; border-top: 1px solid var(--rule); position: relative;
}
.btn {
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    padding: 10px 20px; border-radius: 999px;
    border: 1px solid var(--gold);
    background: var(--gold); color: var(--bg);
    cursor: pointer; letter-spacing: 0.02em;
    transition: transform .12s, box-shadow .12s;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px var(--spot); }
html[data-mode="light"] .btn { background: var(--ink); color: var(--bg-elev); border-color: var(--ink); }
.tempo-dots {
    display: flex; gap: 6px; align-items: center;
    font-family: var(--mono); font-size: 11px; color: var(--ink-mute);
}
.tempo-dots b { color: var(--pos); font-weight: 500; }

/* Page Headline + Sentiment-Legende */
.page-head {
    padding: 32px 0 0;
}
.page-head h1 {
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.025em;
    margin: 0 0 10px; color: var(--ink); line-height: 0.95;
}
.page-legend {
    display: flex; gap: 20px; font-family: var(--mono); font-size: 11px;
    color: var(--ink-mute); letter-spacing: 0.1em; margin-bottom: 24px;
}
.page-legend i {
    display: inline-block; width: 10px; height: 10px; border-radius: 50%;
    margin-right: 6px; vertical-align: middle;
}

/* Section Headers */
.section-head {
    display: flex; align-items: baseline; justify-content: space-between;
    padding: 40px 0 20px;
}
.section-head .left { display: flex; align-items: baseline; gap: 16px; }
.section-head h3 {
    font-family: var(--serif); font-style: italic; font-weight: 700;
    font-size: 34px; letter-spacing: -0.015em; margin: 0; color: var(--ink);
}
.section-head h3 .num {
    font-family: var(--mono); font-style: normal; font-size: 12px;
    color: var(--gold); font-weight: 400; letter-spacing: 0.15em;
    vertical-align: top; margin-left: 6px;
}
.section-sub {
    font-family: var(--mono); font-size: 11px; color: var(--ink-dim);
    letter-spacing: 0.18em; text-transform: uppercase;
}
.section-actions { display: flex; gap: 8px; align-items: center; }

.small-btn {
    font-family: var(--sans); font-size: 12px; font-weight: 500;
    padding: 7px 14px; border-radius: 999px;
    border: 1px solid var(--rule-strong);
    background: transparent; color: var(--ink); cursor: pointer;
    text-decoration: none; display: inline-flex; align-items: center;
    transition: border-color .15s, color .15s;
}
.small-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Shows Table */
/* width: 100% auf Wrapper + min-width: 100% auf table sichert korrekte Mobile-Scroll-Breite.
   table-layout: auto (default) + colgroup-Breiten im HTML steuern Spaltenverteilung.
   KEIN table-layout: fixed — das kollabiért auf Mobile zu 1-Zeichen-Breite. */
.shows-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 0 0 40px; width: 100%; }
.shows-table table { min-width: 100%; width: max-content; border-collapse: collapse; font-family: var(--sans); }
.shows-table thead th {
    text-align: left;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--ink-dim); font-weight: 500;
    padding: 14px 12px; border-bottom: 1px solid var(--rule);
}
.shows-table tbody tr {
    border-bottom: 1px solid var(--rule);
    transition: background .15s;
}
.shows-table tbody tr:hover { background: rgba(217,178,106,0.04); }
.shows-table tbody td { padding: 18px 12px; vertical-align: middle; font-size: 14px; }
.show-date {
    font-family: var(--mono); font-size: 12px; color: var(--gold);
    letter-spacing: 0.06em; white-space: nowrap;
}
.show-date .dow {
    display: block; color: var(--ink-dim); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 4px;
}
.show-title {
    font-family: var(--serif); font-style: italic; font-weight: 700;
    font-size: 20px; color: var(--ink); letter-spacing: -0.01em; line-height: 1.15;
}
.show-title .kicker {
    display: block; font-family: var(--mono); font-style: normal; font-weight: 400;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink-dim); margin-bottom: 4px;
}
/* Klickbare Zeilen + Titel-Links (BENT-7 Bugfix-Bundle) */
tr.row-link { cursor: pointer; }
.show-title-link { color: inherit; text-decoration: none; display: block; }
.show-title-link:hover .show-title { color: var(--gold); }
tr.past .show-title-link:hover .show-title { color: var(--ink); }
.terms-text { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.02em; }
.pill-row { display: inline-flex; gap: 4px; flex-wrap: wrap; }
.pill {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
    padding: 3px 8px; border-radius: 4px;
    background: rgba(255,255,255,0.05); color: var(--ink-mute); border: 1px solid var(--rule);
}
html[data-mode="light"] .pill { background: rgba(0,0,0,0.03); }
.pill.gold { color: var(--gold); border-color: var(--rule-strong); background: rgba(217,178,106,0.08); }

.sentiment-bar { display: flex; align-items: center; gap: 10px; }
.sent-rail {
    width: 110px; height: 6px; border-radius: 3px;
    background: rgba(255,255,255,0.06); display: flex; overflow: hidden;
}
html[data-mode="light"] .sent-rail { background: rgba(0,0,0,0.06); }
.sent-rail span { display: block; height: 100%; }
.sent-rail .p { background: var(--pos); }
.sent-rail .n { background: var(--neu); }
.sent-rail .x { background: var(--neg); }
.sent-num { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); }

.articles-count {
    display: flex; align-items: baseline; gap: 4px;
    font-family: var(--serif); font-style: italic; font-weight: 700;
}
.articles-count .n { font-size: 22px; color: var(--gold); letter-spacing: -0.02em; }
.articles-count .lbl {
    font-family: var(--mono); font-style: normal; font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); font-weight: 400;
}
.icon-btn {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--rule);
    background: transparent; color: var(--ink-mute);
    display: inline-grid; place-items: center;
    cursor: pointer; transition: all .15s;
    text-decoration: none; font-size: 14px;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }
tr.past .show-date,
tr.past .articles-count .n { color: var(--ink-mute); }
tr.past .show-title { color: var(--ink-mute); }

/* ============================================================
   28. PAGE 2 — KÜNSTLER:INNEN (BENT-306)
   ============================================================ */
.kosmos-wrap {
    padding: 48px 0 40px;
    position: relative;
    border-bottom: 1px solid var(--rule);
}
.kosmos-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 28px;
}
.kosmos-head h2 {
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.025em; margin: 0; line-height: 0.95;
    color: var(--ink);
}
.kosmos-head h2 .acc { color: var(--gold); }
.kosmos-legend {
    display: flex; gap: 20px; font-family: var(--mono); font-size: 11px;
    color: var(--ink-mute); letter-spacing: 0.1em; margin-top: 14px;
}
.kosmos-legend i {
    display: inline-block; width: 10px; height: 10px; border-radius: 50%;
    margin-right: 6px; vertical-align: middle;
}
.kosmos-explain {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin: 18px 0 4px; padding: 14px 0 0; border-top: 1px solid var(--rule);
}
.kosmos-explain .ke-col {
    font-family: var(--sans); font-size: 11.5px; line-height: 1.5; color: var(--ink-mute);
}
.kosmos-explain .ke-col b {
    color: var(--gold); font-family: var(--mono); font-weight: 500;
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; margin-right: 4px;
}
.kosmos {
    position: relative; aspect-ratio: 8 / 5;
    background:
        radial-gradient(ellipse 60% 40% at 50% 50%, var(--spot), transparent 70%),
        linear-gradient(180deg, var(--bg-deep), var(--bg) 40%, var(--bg-deep));
    border: 1px solid var(--card-border);
    border-radius: 14px; overflow: hidden;
}

/* Kosmos SVG — BENT-307 */
.kosmos-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* Leer-State (keine Künstler:innen in DB) */
.kosmos-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0.4;
}
.kosmos-empty span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-dim);
}

.star-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    fill: var(--ink);
    opacity: 0.85;
    pointer-events: none;
    /* Lesbarkeits-Halo gegen verbleibende Mini-Überlappungen (BENT-414) */
    paint-order: stroke fill;
    stroke: var(--bg-deep);
    stroke-width: 3px;
    stroke-linejoin: round;
    stroke-opacity: 0.85;
}
.star-label.sub {
    font-family: var(--mono);
    font-size: 9px;
    fill: var(--ink-dim);
    letter-spacing: 0.1em;
    opacity: 0.7;
}
/* Hover-only-Labels für kleine Sterne (BENT-414):
   Default unsichtbar; on hover oder focus des Stern-Links sichtbar.
   Funktioniert auch auf Touch (Anchor-Element ist fokussierbar). */
.star-label-hover {
    opacity: 0;
    transition: opacity 0.15s ease;
}
.kosmos-star-link:hover .star-label-hover,
.kosmos-star-link:focus .star-label-hover,
.kosmos-star-link:focus-visible .star-label-hover {
    opacity: 0.95;
}
.kosmos-axis {
    font-family: var(--mono);
    font-size: 10px;
    fill: var(--ink-dim);
    letter-spacing: 0.2em;
    opacity: 0.5;
}

/* Stern-Interaktion */
.kosmos-star-link {
    text-decoration: none;
    cursor: pointer;
}
.kosmos-star-link:focus { outline: none; }
.kosmos-star-link:focus .kosmos-star-body {
    stroke: var(--gold);
    stroke-width: 2;
}
.kosmos-star .kosmos-star-body {
    transition: r 0.2s ease, opacity 0.2s ease;
}
.kosmos-star-link:hover .kosmos-star-body {
    opacity: 1 !important;
    filter: brightness(1.2);
}
.kosmos-star-link:hover .star-label { opacity: 1; }

/* Halo-Glow für Stamm-Künstler:innen */
@keyframes kosmos-halo-pulse {
    0%, 100% { opacity: 0.06; }
    50%       { opacity: 0.16; }
}
.kosmos-halo-outer {
    animation: kosmos-halo-pulse 4s ease-in-out infinite;
}
.kosmos-star-host .kosmos-halo-outer {
    animation-duration: 3s;
}

/* Sternenstaub — leichtes Flimmern */
@keyframes kosmos-dust-blink {
    0%, 100% { opacity: 0.45; }
    50%       { opacity: 0.2; }
}
.kosmos-dust {
    animation: kosmos-dust-blink 6s ease-in-out infinite;
    animation-delay: calc(var(--dust-delay, 0) * 1s);
}

/* Filter Row */
.filter-row {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 24px 0 16px;
}
.fc {
    font-family: var(--sans); font-size: 12px; font-weight: 500;
    padding: 7px 14px; border-radius: 999px;
    background: transparent; border: 1px solid var(--rule);
    color: var(--ink-mute); cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.fc .n { font-family: var(--mono); font-size: 10px; color: var(--ink-dim); margin-left: 6px; }
.fc.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.fc.active .n { color: var(--bg); opacity: 0.7; }
html[data-mode="light"] .fc.active { background: var(--ink); color: var(--bg-elev); border-color: var(--ink); }

/* Artists Table */
.artists-table { padding: 0 0 48px; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
.artists-table table { min-width: 100%; width: max-content; border-collapse: collapse; }
.artists-table thead th {
    text-align: left; font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-dim); font-weight: 500;
    padding: 14px 12px; border-bottom: 1px solid var(--rule);
}
.artists-table tbody tr { border-bottom: 1px solid var(--rule); }
.artists-table tbody tr:hover { background: rgba(217,178,106,0.04); }
.artists-table tbody td { padding: 14px 12px; font-size: 13px; vertical-align: middle; }
.artist-name {
    font-family: var(--serif); font-style: italic; font-weight: 700;
    font-size: 17px; letter-spacing: -0.005em; color: var(--ink);
}
.rel-bar { display: inline-flex; gap: 2px; vertical-align: middle; }
.rel-bar i {
    width: 5px; height: 14px; border-radius: 1px;
    background: rgba(255,255,255,0.08);
}
html[data-mode="light"] .rel-bar i { background: rgba(0,0,0,0.08); }
.rel-bar i.on { background: var(--gold); }

/* ============================================================
   29. PAGE 3 — ARTIKEL-FEED (BENT-306)
   ============================================================ */

/* Feed Hero */
.feed-head {
    padding: 56px 0 20px;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end;
    border-bottom: 1px solid var(--rule);
}
.feed-head h2 {
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: clamp(48px, 6vw, 72px); letter-spacing: -0.025em; line-height: 0.9; margin: 0;
    color: var(--ink);
}
.feed-head h2 .acc { color: var(--gold); }
.feed-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    padding-bottom: 4px;
}
.stat .v {
    font-family: var(--serif); font-style: italic; font-weight: 700;
    font-size: 30px; color: var(--ink); line-height: 1;
}
.stat .v b { color: var(--gold); }
.stat .l {
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--ink-dim); margin-top: 6px;
}

/* Filter Bar */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--rule);
}
.fb-group {
    display: inline-flex; gap: 4px;
    padding: 3px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--rule);
    border-radius: 999px;
}
html[data-mode="light"] .fb-group { background: rgba(0,0,0,0.04); }
.fb-btn {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    padding: 6px 12px; border-radius: 999px;
    background: transparent; border: none; color: var(--ink-mute);
    cursor: pointer; letter-spacing: 0.03em; text-decoration: none;
    transition: color .15s, background .15s;
}
.fb-btn.active { background: var(--gold); color: var(--bg); font-weight: 600; }
html[data-mode="light"] .fb-btn.active { background: var(--ink); color: var(--bg-elev); }
/* Pill-Variante als <select> für lange Show-Listen (BENT-7 Bugfix-Bundle) */
.fb-select {
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    padding-right: 22px; line-height: 1.2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23a8a8a8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 6px center; background-size: 10px;
}
.fb-select.active {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
}
.fb-select option { background: var(--bg-elev); color: var(--ink); }
.fb-label {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--ink-dim); margin-right: 4px;
}

/* Article Feed */
.feed { padding: 0 0 48px; }
.feed-item {
    display: grid;
    grid-template-columns: 80px 1fr 140px 100px 40px;
    gap: 24px; align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--rule);
    position: relative;
}
.feed-item.pinned { padding-left: 20px; }
.feed-item.pinned::before {
    content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 3px;
    background: var(--gold); border-radius: 3px;
    box-shadow: 0 0 8px var(--spot);
}
.f-date {
    font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.05em;
}
.f-date b {
    display: block; color: var(--gold); font-size: 18px; font-weight: 500;
    font-family: var(--serif); font-style: italic; letter-spacing: -0.01em; margin-bottom: 2px;
}
.f-body h4 {
    font-family: var(--serif); font-style: italic; font-weight: 700;
    font-size: 20px; line-height: 1.2; letter-spacing: -0.01em;
    margin: 0 0 6px; color: var(--ink);
}
.f-meta {
    display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
    font-family: var(--mono); font-size: 10px; color: var(--ink-dim);
    letter-spacing: 0.12em; text-transform: uppercase;
}
.f-meta .src { color: var(--gold); }
.f-meta .dot { opacity: 0.4; }
.f-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }
.f-tag {
    font-family: var(--sans); font-size: 10px; font-weight: 500;
    padding: 3px 8px; border-radius: 4px;
    background: rgba(217,178,106,0.1);
    color: var(--gold-soft);
    border: 1px solid var(--rule);
    letter-spacing: 0.04em;
    text-decoration: none;
}
html[data-mode="light"] .f-tag { color: var(--gold-deep); background: rgba(138,106,52,0.08); }
.f-sent {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.f-sent-label {
    font-family: var(--serif); font-style: italic; font-size: 16px; font-weight: 700;
}
.f-sent.pos .f-sent-label { color: var(--pos); }
.f-sent.neu .f-sent-label { color: var(--neu); }
.f-sent.neg .f-sent-label { color: var(--neg); }
.f-rel { text-align: left; }
.f-rel .num {
    font-family: var(--serif); font-style: italic; font-weight: 700;
    font-size: 22px; color: var(--gold); letter-spacing: -0.02em; line-height: 1;
}
.f-rel .num small {
    font-family: var(--mono); font-style: normal; font-size: 10px;
    color: var(--ink-dim); letter-spacing: 0.1em;
}
.f-rel .rel-bar { margin-top: 6px; }

/* Glamour Pagination */
.pagination {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0 40px;
    font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.1em;
}
.pg-nums { display: flex; gap: 4px; }
.pg-link {
    width: 34px; height: 34px; border-radius: 50%;
    background: transparent; border: 1px solid var(--rule);
    color: var(--ink-mute); font-family: var(--mono); font-size: 12px;
    cursor: pointer; display: inline-grid; place-items: center;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.pg-link:hover { border-color: var(--gold); color: var(--gold); }
.pg-link.active { background: var(--gold); color: var(--bg); border-color: var(--gold); font-weight: 600; }
html[data-mode="light"] .pg-link.active { background: var(--ink); color: var(--bg-elev); border-color: var(--ink); }

/* ============================================================
   30. RESPONSIVE — Mockup-Pages
   ============================================================ */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; }
    .feed-head { grid-template-columns: 1fr; gap: 24px; }
    .feed-item { grid-template-columns: 1fr; gap: 8px; }
    .kosmos-explain { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero { padding: 40px 0 32px; }
    .hero h1 { font-size: 36px; }
    .hero-meta { flex-wrap: wrap; gap: 20px; }
    .feed-head h2 { font-size: 40px; }
    .feed-stats { grid-template-columns: repeat(2, 1fr); }
    .kosmos { aspect-ratio: 4 / 3; }
    .kosmos-explain { grid-template-columns: 1fr; }
    .star-label { font-size: 9px; }
    .kosmos-axis { font-size: 8px; }
    .filter-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .feed-head { padding: 28px 0 20px; }
    .feed-head h2 { font-size: clamp(26px, 8vw, 40px); }
    .feed-head h2 br { display: none; }
    .feed-stats { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .stat .v b { font-size: 22px; }
    /* Paginierung: Stack auf Mobile */
    .pagination { flex-direction: column; gap: 0.75rem; text-align: center; }
    .pg-nums { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   31. PAGE — SHOW-DETAIL (BENT-308)
   ============================================================ */

/* Show-Projektor-Hero */
.show-hero {
    padding: 48px 0 36px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
}
/* Lichtkegel-Gradient — dezenter Projektor-Effekt */
.show-hero::before {
    content: "";
    position: absolute;
    top: -60px; right: -80px;
    width: 500px; height: 500px;
    background: conic-gradient(from 200deg, transparent 20deg, var(--spot) 40deg, transparent 60deg);
    opacity: calc(var(--glam) * 0.4);
    pointer-events: none;
}
.show-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 85% 30%, var(--spot-2), transparent 65%);
    pointer-events: none;
}
.show-hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.show-hero-left .breadcrumb { margin-bottom: 1rem; }
.show-hero-left h1 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 64px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0.5rem 0 1.25rem;
    color: var(--ink);
}

/* Plakat-Element — Sendedatum als gestalterisches Element */
.show-plakat {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--bg-elev);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    margin-top: 0.5rem;
}
.plakat-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding-right: 20px;
    border-right: 1px solid var(--rule-strong);
    min-width: 70px;
}
.plakat-dow {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 4px;
}
.plakat-d {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: 40px;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.03em;
}
.plakat-m {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.06em;
    margin-top: 4px;
}
.plakat-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}
.plakat-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.plakat-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-dim);
    flex-shrink: 0;
    width: 90px;
}
.plakat-val {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
}

/* Cast-Sidebar */
.show-hero-cast {
    padding-top: 4px;
}
.cast-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cast-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--rule);
}
.cast-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.cast-chip {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--rule);
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
html[data-mode="light"] .cast-chip { background: rgba(0,0,0,0.04); }
.cast-chip:hover { border-color: var(--gold); color: var(--gold); background: var(--spot-2); }
.cast-chip.gold { color: var(--gold); border-color: var(--rule-strong); background: rgba(217,178,106,0.08); }
.cast-chip.more { color: var(--ink-mute); font-size: 11px; }

/* Actions-Bar unterhalb Hero */
.show-actions-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0 0.5rem;
    flex-wrap: wrap;
}
.show-action-msg {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-mute);
    margin: 0;
}

/* Pending-Banner */
.show-pending-banner {
    padding: 0.6em 0.9em;
    border-radius: var(--radius-sm);
    background: rgba(154,166,178,0.10);
    color: var(--neu);
    border-left: 3px solid var(--neu);
    font-size: 0.875rem;
    margin: 0.5rem 0 1rem;
}

/* Report-Card */
.report-card {
    margin-top: 0;
}
.report-ai-note {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--ink-mute);
    font-size: 0.8rem;
}
.versions-panel {
    margin-top: 0.5rem;
}

/* Show-Context-Card (in artist hero) */
.show-context-card {
    padding: 16px 20px;
    background: var(--bg-elev);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
}
.show-context-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    margin: 8px 0 4px;
}

@media (max-width: 900px) {
    .show-hero-inner { grid-template-columns: 1fr; }
    .show-plakat { flex-direction: column; gap: 12px; }
    .plakat-date { flex-direction: row; align-items: baseline; gap: 12px; padding-right: 0; border-right: none; border-bottom: 1px solid var(--rule-strong); padding-bottom: 10px; min-width: 0; }
    .plakat-d { font-size: 28px; }
}
@media (max-width: 480px) {
    .show-hero { padding: 28px 0 20px; }
    .show-hero-inner { gap: 20px; }
    .show-plakat { padding: 14px 16px; }
    .cast-chips { gap: 4px; }
    .cast-chip { font-size: 11px; padding: 4px 9px; }
    .show-actions-bar { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ============================================================
   32. PAGE — CLUSTERS (BENT-308)
   ============================================================ */
.cluster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1rem;
    padding-bottom: 48px;
}
.cluster-card {
    padding: 1.25rem 1.5rem;
    margin-bottom: 0;
}
.cluster-card-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--rule);
}
.cluster-name {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    text-decoration: none;
    flex: 1;
    min-width: 0;
    transition: color var(--t-fast);
}
.cluster-name:hover { color: var(--gold); }
.cluster-sent-row {
    margin: 0.5rem 0;
}
.cluster-sent-nums {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-mute);
}
.cluster-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.cluster-count {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.cluster-top-list {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
}
.cluster-top-list li { margin-bottom: 0.3rem; }

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

/* ============================================================
   33. PAGE — ARTIST DETAIL (BENT-308)
   ============================================================ */
.artist-hero {
    padding: 48px 0 36px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
}
.artist-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 400px at 80% 20%, var(--spot-2), transparent 65%);
    pointer-events: none;
}
.artist-hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.artist-hero-left .breadcrumb { margin-bottom: 1rem; }
.artist-hero-left h1 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 64px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0.5rem 0 1rem;
}
.artist-hero-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.artist-search-terms {
    font-size: 0.875rem;
    color: var(--ink-mute);
    margin-top: 0.5rem;
}
.terms-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-right: 4px;
}

.artist-hero-aside {
    padding-top: 4px;
}

/* Mini-Timeline in artist hero sidebar */
.artist-timeline-mini {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.atm-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85em;
}
.atm-label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink-mute);
    width: 5em;
    flex-shrink: 0;
}
.atm-bar-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}
.atm-count {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink-dim);
    min-width: 2em;
}

/* Stimmungs-Verlauf (Vollansicht) */
.sentiment-timeline {
    margin: 0 0 2rem;
}
.timeline-rows {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.timeline-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9em;
}
.timeline-label {
    width: 6.5em;
    color: var(--ink-mute);
    flex-shrink: 0;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.06em;
}
.timeline-bar-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.timeline-bar-seg {
    display: flex;
    height: 1.5em;
    border-radius: 3px;
    overflow: hidden;
    min-width: 2em;
}
.timeline-seg {
    color: var(--bg-deep);
    font-size: 0.8em;
    line-height: 1.5em;
    text-align: center;
    overflow: hidden;
    display: inline-block;
}
.timeline-seg.seg-positiv { background: var(--pos); }
.timeline-seg.seg-neutral { background: var(--neu); }
.timeline-seg.seg-negativ { background: var(--neg); }
.timeline-count {
    color: var(--ink-dim);
    font-family: var(--mono);
    font-size: 10px;
    min-width: 2em;
}

@media (max-width: 900px) {
    .artist-hero-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   34. PAGE — STATUS (BENT-308)
   ============================================================ */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.status-card {
    padding: 1.25rem;
    margin-bottom: 0;
}
.status-card > header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rule);
}
.status-card-title {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.status-card-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.status-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.status-val {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 34px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
}
.status-metric.pos .status-val { color: var(--pos); }
.status-metric.muted .status-val { color: var(--ink-mute); }
.status-lbl {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-top: 4px;
}

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

/* ============================================================
   35. PAGE — HELP (BENT-308)
   ============================================================ */
.help-hero {
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
}
.help-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 500px at 80% 20%, var(--spot), transparent 60%),
        radial-gradient(ellipse 500px 400px at 10% 80%, var(--spot-2), transparent 65%);
    opacity: calc(var(--glam) * 1);
    pointer-events: none;
}
.help-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.help-hero h1 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin: 0.5rem 0 1rem;
    color: var(--ink);
}
.help-hero h1 .accent { color: var(--gold); font-style: italic; }
.help-hero h1 .thin { font-weight: 400; font-style: italic; }
.help-quick-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    align-items: center;
}

/* Hilfe-Inhalt (gerendertes Markdown) */
.help-content {
    padding: 2rem 0 3rem;
}
.help-article {
    max-width: 800px;
}
.help-article h1,
.help-article h2,
.help-article h3 {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink);
    margin-top: 2rem;
}
.help-article h2 {
    border-bottom: 1px solid var(--rule);
    padding-bottom: 0.4rem;
}
.help-article ul,
.help-article ol {
    margin-bottom: 1rem;
}
.help-article li {
    line-height: 1.7;
}
.help-article a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.help-article code {
    font-family: var(--mono);
    font-size: 0.875em;
    background: var(--bg-elev);
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    padding: 0.1em 0.35em;
    color: var(--gold-soft);
}
.help-article blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    color: var(--ink-mute);
    font-style: italic;
    margin: 1rem 0;
}
.help-article table {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.help-article th {
    background: var(--bg-elev);
}

@media (max-width: 768px) {
    .help-hero { padding: 40px 0 32px; }
    .help-hero h1 { font-size: 36px; }
    .help-quick-links { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   33. ADMIN — Login Hero + Page Head (BENT-309)
   ============================================================ */

/* Login-Hero: zentriertes Vollbild-Layout mit Spotlight-Gradient */
.login-hero {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 72px 1.5rem 80px;
    position: relative;
    min-height: calc(100vh - 240px);
}
.login-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 50% 0%, var(--spot), transparent 60%),
        radial-gradient(ellipse 500px 400px at 20% 80%, var(--spot-2), transparent 55%);
    opacity: calc(var(--glam) * 0.8);
    pointer-events: none;
}
.login-hero-inner {
    width: 100%;
    max-width: 440px;
    position: relative;
    text-align: center;
}

/* Eyebrow über dem Titel */
.login-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.login-eyebrow::before { content: "✦"; font-size: 10px; }
.login-eyebrow::after  { content: "✦"; font-size: 10px; }

/* Titel */
.login-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(48px, 8vw, 80px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    color: var(--ink);
}
.login-title-thin   { font-weight: 400; }
.login-title-accent { color: var(--gold); display: block; }

/* Sub-Text unter dem Titel */
.login-sub {
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--ink-mute);
    margin-bottom: 1.25rem;
}

/* Monospaced Password-Input für Showbiz-Vibe */
.login-input-mono {
    font-family: var(--mono) !important;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

/* Hinweis-Text unter dem Input */
.login-hint {
    font-size: 0.82rem;
    color: var(--ink-dim);
    margin-bottom: 0.75rem;
    text-align: left;
    line-height: 1.5;
}

/* Card auf Login-Seite: linksbündiger Text */
.login-hero .login-card {
    text-align: left;
    margin: 0 auto;
}

/* ============================================================
   Admin-Seiten: Seiten-Kopf mit Eyebrow + H1
   ============================================================ */
.admin-page-head {
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--rule);
}
.admin-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.admin-page-head h1 {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .login-hero { padding: 48px 1rem 56px; min-height: auto; }
    .login-title { font-size: 44px; }
}
