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

:root {
    --bg:       #0e0e10;
    --surface:  #17171a;
    --border:   #2a2a30;
    --gold:     #c9a84c;
    --gold-dim: #8a6f32;
    --text:     #e8e0d0;
    --muted:    #8a8580;
    --red-dim:  #5c2020;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Georgia', 'Times New Roman', serif;
    min-height: 100vh;
    line-height: 1.7;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(14,14,16,0.95), transparent);
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
nav a:hover { color: var(--gold); }

.nav-brand {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(92,32,32,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
}

/* ── COVER ── */
.cover-wrap {
    position: relative;
    flex-shrink: 0;
}

.cover-wrap::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--gold-dim);
    border-radius: 3px;
    opacity: 0.4;
    pointer-events: none;
}

.cover-img {
    display: block;
    width: 280px;
    aspect-ratio: 2 / 3;
    max-width: 100%;
    border-radius: 2px;
    box-shadow:
        0 4px 20px rgba(0,0,0,0.6),
        0 0 60px rgba(201,168,76,0.08);
}

/* ── Gitter-Gimmick auf dem "Lesen" Button ── */
.btn-prison-wrap {
    position: relative;
    display: inline-block;
}

.btn-bars-overlay {
    position: absolute;
    inset: 0;
    border-radius: 3px;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    background: repeating-linear-gradient(
        90deg,
        rgba(8, 5, 2, 0.88) 0px,
        rgba(8, 5, 2, 0.88) 7px,
        transparent          7px,
        transparent          24px
    );
    box-shadow:
        inset 0  10px 0 3px rgba(8, 5, 2, 0.9),
        inset 0 -10px 0 3px rgba(8, 5, 2, 0.9);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.45s cubic-bezier(0.3, 0, 0.15, 1);
}

.btn-prison-wrap:hover .btn-bars-overlay {
    clip-path: inset(0 0 0% 0);
}

/* ── HERO TEXT ── */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
}

.label {
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    letter-spacing: 0.02em;
}

.tagline {
    font-size: 1.05rem;
    color: var(--muted);
    font-style: italic;
    border-left: 2px solid var(--gold-dim);
    padding-left: 1rem;
    max-width: 480px;
}

.meta {
    font-family: Arial, sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
}
.meta span { white-space: nowrap; }

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: #0e0e10;
    font-weight: 700;
}
.btn-primary:hover { background: #e0bb64; transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
}
.btn-ghost:hover { background: rgba(201,168,76,0.08); transform: translateY(-1px); }

/* ── ARG: Zerbrochene Praline – neben den Buttons im Hero ── */
.arg-praline {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 0.9rem;
    opacity: 0.07;
    pointer-events: none;
    transform: rotate(-22deg);
    transition: opacity 0.5s, transform 0.4s;
    user-select: none;
}
.arg-praline::after {
    content: '';
    position: absolute;
    top: 50%; left: 35%;
    width: 130%;
    height: 1.5px;
    background: rgba(180,120,80,0.55);
    transform: rotate(20deg);
    transform-origin: left center;
}
.arg-praline:hover {
    opacity: 0.75;
    transform: rotate(-22deg) scale(1.35);
    pointer-events: auto;
    cursor: default;
}

/* ── DIVIDER ── */
.section-divider {
    max-width: 800px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid var(--border);
}

/* ── SECTIONS ── */
.section {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
}

.section-label {
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

/* ── BACKCOVER – subtile Gitter im Hintergrund ── */
.section-backcover {
    overflow: hidden;
}

/* ARG 1: Gefängnisgitter als Section-Hintergrund */
.section-backcover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(40, 28, 16, 0.07) 0px,
        rgba(40, 28, 16, 0.07) 4px,
        transparent              4px,
        transparent              40px
    );
    pointer-events: none;
    z-index: 0;
}

.section-backcover > * {
    position: relative;
    z-index: 1;
}

.backcover-hook {
    font-size: 1.25rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.backcover-text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.9;
}

/* ── QUOTES ── */
.section-quotes {
    overflow: visible;
}

.quotes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.quote-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
}

.quote-card::before {
    content: '\201C';
    position: absolute;
    top: -0.2rem; left: 1rem;
    font-size: 3rem;
    color: var(--gold-dim);
    line-height: 1;
    font-family: Georgia, serif;
}

.quote-card.luna     { border-left: 3px solid #4a7fa0; }
.quote-card.kilian   { border-left: 3px solid #8a3a3a; }
.quote-card.autor    { border-left: 3px solid var(--gold-dim); }
.quote-card.coautorin  { border-left: 3px solid #5a7a5a; }
.quote-card.coautorin2 { border-left: 3px solid #7a5a8a; grid-column: span 2; }

.quote-text {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text);
    padding-top: 0.8rem;
    line-height: 1.8;
}

.quote-author {
    margin-top: 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ARG 2: Weiße Rose – in der Quotes-Section unten links ── */
.arg-rose-wrap {
    position: absolute;
    bottom: 1.5rem;
    left: 1.2rem;
    opacity: 0.12;
    pointer-events: none;
    transition: opacity 0.6s ease;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
    z-index: 0;
}
.arg-rose-wrap:hover { opacity: 0.65; }

.arg-rose-svg { width: 34px; height: 50px; }

/* ── RELEASE BLOCK ── */
.release-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold-dim);
    border-radius: 4px;
    padding: 2rem;
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.9;
    position: relative;
    overflow: hidden;
}

.rb-title {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.8rem;
}

.rb-row { display: flex; gap: 1rem; }
.rb-key { color: #b08844; min-width: 120px; flex-shrink: 0; }
.rb-val { color: var(--text); }

.rb-hash {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.72rem;
    word-break: break-all;
    color: #6aaa6a;
}

.rb-warning {
    margin-top: 0.5rem;
    font-size: 0.72rem;
    color: #e05050;
}

/* ARG 5: Freestyle Sushi – als echter Restaurant-Eintrag ── */
.arg-sushi-row {
    display: flex;
    gap: 1rem;
    opacity: 0.08;
    transition: opacity 0.4s;
}
.arg-sushi-row:hover { opacity: 1; }

.arg-sushi-link {
    color: #a0d8a0;
    text-decoration: none;
    transition: text-shadow 0.3s;
}
.arg-sushi-link:hover {
    text-shadow: 0 0 8px rgba(160,216,160,0.6);
}

/* ARG: #OnlyBar – komplett unsichtbar, nur via DevTools oder Selectall ── */
.arg-only-bar {
    color: transparent;
    font-size: 0.7rem;
    user-select: text;
    pointer-events: none;
    position: absolute;
    bottom: 0.5rem;
    right: 0.8rem;
    font-family: 'Courier New', monospace;
}

/* ARG 4: Rosa Ring – in der Release Section ── */
.arg-ring {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #e8a0b0;
    box-shadow: 0 0 4px rgba(232,160,176,0.3);
    opacity: 0.15;
    pointer-events: auto;
    cursor: pointer;
    transition: opacity 0.4s, box-shadow 0.4s;
    z-index: 2;
}
.arg-ring:hover { opacity: 1; box-shadow: 0 0 10px rgba(232,160,176,0.7); }

/* ── ARG FARB-DOTS – versteckt in den Seiten-Rändern ── */

/* Blasses Pink – Hero, ganz unten rechts außen */
.arg-color-pink {
    position: absolute;
    bottom: 2rem;
    right: -1px;
    width: 3px;
    height: 28px;
    background: #f2c2ce;
    opacity: 0.18;
    border-radius: 2px 0 0 2px;
    pointer-events: none;
}

/* Grün – Backcover Section, links außen */
.arg-color-green {
    position: absolute;
    top: 50%;
    left: -1px;
    transform: translateY(-50%);
    width: 3px;
    height: 28px;
    background: #7ec88a;
    opacity: 0.18;
    border-radius: 0 2px 2px 0;
    pointer-events: none;
}

/* Blau – Quotes Section, oben rechts außen */
.arg-color-blue {
    position: absolute;
    top: 2rem;
    right: -1px;
    width: 3px;
    height: 28px;
    background: #7ab4d8;
    opacity: 0.18;
    border-radius: 2px 0 0 2px;
    pointer-events: none;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    color: var(--muted);
}

footer a { color: var(--gold); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cover-wrap { margin: 0 auto; }
    .cover-img  { width: 220px; }
    .tagline    { margin: 0 auto; }
    .btn-group  { justify-content: center; }
    .meta       { justify-content: center; }
    .quotes-grid { grid-template-columns: 1fr; }
    .quote-card.coautorin2 { grid-column: span 1; }
    .arg-rose-wrap { display: none; }
    .arg-color-pink,
    .arg-color-green,
    .arg-color-blue { display: none; }
}
