/* ==========================================================================
   HAUS DES SCHRECKENS / VILLA MORGENROT – Premium Pitch Website
   Schriftarten: Cinzel Decorative (Titel), Cinzel (Headings), Inter (Body)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Cinzel:wght@700;800;900&family=Inter:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --netflix-red: #e50914;
    --stranger-neon: #c8000a;
    --bg-primary: #060606;
    --bg-card: #141414;
    --bg-card-hover: #252525;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #6e6e6e;
    --font-heading: 'Cinzel', serif;
    --font-title: 'Cinzel Decorative', serif;
    --font-body: 'Inter', sans-serif;
    --neon-glow: 0 0 8px rgba(200, 0, 10, 0.5), 0 0 18px rgba(200, 0, 10, 0.25);
    --border-glow: 0 0 12px rgba(200, 0, 10, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.9s ease, color 0.9s ease;
}

/* ──────────────────────────────────────────────────
   CRT & NOISE OVERLAYS (Night only)
──────────────────────────────────────────────────── */
.crt-overlay {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: linear-gradient(rgba(0,0,0,0) 50%, rgba(0,0,0,0.18) 50%),
                linear-gradient(90deg, rgba(255,0,0,0.025), rgba(0,255,0,0.015), rgba(0,0,255,0.025));
    background-size: 100% 3px, 8px 100%;
    z-index: 9998; pointer-events: none; opacity: 0.35;
    transition: opacity 0.5s ease;
}
.noise-overlay {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/a/a4/Television_static.gif');
    opacity: 0.02; z-index: 9997; pointer-events: none;
    mix-blend-mode: screen; transition: opacity 0.1s ease;
}
body.static-spike .noise-overlay { opacity: 0.2 !important; }

#spores-canvas {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 5; pointer-events: none;
    opacity: 0.65; transition: opacity 1.5s ease;
}
#blood-canvas { display: none !important; } /* Blut deaktiviert */

/* ──────────────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────────────────── */
.netflix-nav {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 64px;
    z-index: 500;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 4%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
    transition: background 0.5s ease;
}
.netflix-nav.scrolled {
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 22px; }

.nav-logo {
    font-family: var(--font-title);
    font-size: 1.35rem;
    color: var(--netflix-red);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.5s ease;
}
.nav-menu { list-style: none; display: flex; gap: 20px; }
.nav-item a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 600;
    transition: color 0.25s ease;
}
.nav-item a:hover, .nav-item.active a { color: #fff; }

.nav-btn {
    background: none; border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.avatar-wrapper {
    width: 30px; height: 30px;
    border-radius: 4px; overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.25s ease;
}
.avatar-wrapper:hover { border-color: #fff; }
.avatar-img { width: 100%; height: 100%; object-fit: cover; }

/* Theme toggle pill */
.theme-toggle-nav {
    display: flex;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 3px;
    padding: 2px;
}
.theme-nav-btn {
    background: none; border: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 16px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}
.theme-nav-btn.active {
    background: var(--netflix-red);
    color: #fff;
    box-shadow: 0 2px 8px rgba(229,9,20,0.35);
}

/* Score toggle */
.score-toggle-btn {
    display: flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 5px 11px; border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}
.score-toggle-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--stranger-neon);
}
.score-toggle-btn.active {
    border-color: var(--stranger-neon);
    background: rgba(200,0,10,0.08);
    box-shadow: 0 0 8px rgba(200,0,10,0.3);
}
.score-status-text {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 1px; color: var(--text-secondary);
}
.score-toggle-btn.active .score-status-text {
    color: var(--stranger-neon);
}
.score-toggle-btn.active .mute-line { display: none; }
.score-toggle-btn.active .score-icon {
    stroke: var(--stranger-neon);
    animation: audioPulse 1.2s infinite alternate ease-in-out;
}
@keyframes audioPulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); filter: drop-shadow(0 0 4px rgba(200,0,10,0.7)); }
}

/* ──────────────────────────────────────────────────
   HERO SECTION
──────────────────────────────────────────────────── */
.hero-netflix {
    position: relative;
    height: 92vh; min-height: 580px;
    width: 100%;
    display: flex; align-items: center;
    padding: 0 4%;
    overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; z-index: 1;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
    /* Night: erkenntliche Haussilhouette */
    filter: brightness(0.7) contrast(1.1) saturate(1.1);
    transition: filter 0.9s ease;
}
.hero-gradient {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    /* Left heavy for text, right keeps house visible */
    background:
        linear-gradient(to right, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.65) 45%, rgba(6,6,6,0.1) 75%, rgba(6,6,6,0) 100%),
        linear-gradient(to top, var(--bg-primary) 0%, rgba(6,6,6,0) 35%, rgba(6,6,6,0) 75%, var(--bg-primary) 100%);
    z-index: 2; transition: background 0.9s ease;
}

.hero-info-wrapper {
    position: relative; z-index: 10;
    max-width: 600px;
    padding-top: 40px;
}
.hero-original-badge {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 10px;
}
.n-symbol {
    color: var(--netflix-red);
    font-family: var(--font-title);
    font-size: 1.7rem; font-weight: 700; line-height: 1;
}
.original-text {
    font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 3px;
    color: rgba(255,255,255,0.65); font-weight: 700;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem; font-weight: 900;
    color: #fff; line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: all 0.5s ease;
}
.hero-meta {
    display: flex; align-items: center;
    gap: 10px; margin-bottom: 18px;
    font-size: 0.88rem; font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.match-score { color: #46d369; font-weight: 700; }
.meta-badge {
    border: 1px solid rgba(255,255,255,0.45);
    padding: 1px 6px; font-size: 0.72rem;
    border-radius: 2px; font-weight: 700;
    color: rgba(255,255,255,0.85);
}
.show-tags { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.hero-synopsis {
    font-size: 1rem; color: rgba(255,255,255,0.8);
    line-height: 1.65; margin-bottom: 28px;
}
.hero-buttons { display: flex; gap: 14px; }

.btn-netflix {
    display: inline-flex; align-items: center;
    justify-content: center; gap: 9px;
    padding: 11px 26px;
    font-size: 1rem; font-weight: 700;
    border-radius: 3px; border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}
.btn-netflix svg { width: 18px; height: 18px; }
.btn-netflix.primary {
    background: #fff; color: #000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.btn-netflix.primary:hover { background: rgba(255,255,255,0.88); }
.btn-netflix.secondary {
    background: rgba(109,109,110,0.65); color: #fff;
}
.btn-netflix.secondary:hover { background: rgba(109,109,110,0.4); }

/* ──────────────────────────────────────────────────
   BUZZER SECTION
──────────────────────────────────────────────────── */
.buzzer-section {
    padding: 50px 4%;
    text-align: center;
    position: relative; z-index: 10;
    transition: all 0.8s ease;
}
.buzzer-container {
    max-width: 620px;
    margin: 0 auto;
    padding: 36px 30px;
    border-radius: 4px;
    transition: all 0.5s ease;
}

/* Badge + Title hidden – only subtitle and button */
.buzzer-badge { display: none; }
.buzzer-title { display: none; }

.buzzer-subtitle {
    font-family: var(--font-heading);
    font-size: 1.55rem; font-weight: 700;
    line-height: 1.5;
    margin-bottom: 32px;
    letter-spacing: 0.2px;
}

/* Buzzer button – elegant, no cheap 3D cap */
.buzzer-button-wrapper {
    display: flex; justify-content: center;
}
.giant-buzzer-btn {
    position: relative;
    background: none; border: none;
    cursor: pointer; outline: none;
    user-select: none;
}
.buzzer-cap {
    display: inline-flex; align-items: center;
    gap: 10px;
    padding: 14px 40px;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: #fff;
    transition: transform 0.15s ease, box-shadow 0.3s ease, background 0.5s ease, opacity 0.2s ease;
}
.buzzer-cap .buzzer-icon { display: none; } /* keine Emojis */
.giant-buzzer-btn:hover .buzzer-cap { opacity: 0.88; }
.giant-buzzer-btn:active .buzzer-cap { transform: scale(0.97); }
.buzzer-base { display: none; } /* kein 3D-Sockel mehr */

/* Night Buzzer */
body:not(.daylight) .buzzer-section {
    background: radial-gradient(circle at 50% 50%, rgba(200,0,10,0.06) 0%, rgba(6,6,6,0) 70%);
}
body:not(.daylight) .buzzer-container {
    background: rgba(14,14,14,0.85);
    border: 1px solid rgba(200,0,10,0.2);
}
body:not(.daylight) .buzzer-subtitle {
    color: #fff;
    text-shadow: 0 0 30px rgba(200,0,10,0.15);
}
body:not(.daylight) .buzzer-cap {
    background: rgba(200,0,10,0.85);
    box-shadow: 0 0 20px rgba(200,0,10,0.4);
}
body:not(.daylight) .buzzer-cap:hover {
    background: rgba(200,0,10,1);
    box-shadow: 0 0 30px rgba(200,0,10,0.6);
}

/* ──────────────────────────────────────────────────
   DETAIL SECTIONS (Night only)
──────────────────────────────────────────────────── */
.detail-sections-wrapper { transition: opacity 0.8s ease; }
.netflix-section {
    padding: 4% 4%;
    position: relative; z-index: 10;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 700;
    margin-bottom: 14px; letter-spacing: 0.3px;
}
.section-title span { color: var(--netflix-red); }

/* Slider Row */
.slider-container {
    position: relative;
    margin: 0 -4%; padding: 0 4% 20px 4%;
    overflow: hidden;
}
.slider-row {
    display: flex; gap: 16px;
    overflow-x: auto; scroll-behavior: smooth;
    padding: 15px 0;
    -ms-overflow-style: none; scrollbar-width: none;
}
.slider-row::-webkit-scrollbar { display: none; }

.pillar-card {
    flex: 0 0 calc(20% - 13px); min-width: 220px;
    background: var(--bg-card);
    border-radius: 3px; overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(255,255,255,0.06);
}
.pillar-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--border-glow);
    border-color: rgba(200,0,10,0.5);
}
.card-img-wrapper { position: relative; width: 100%; height: 145px; overflow: hidden; }
.card-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.35s ease;
}
.pillar-card:hover .card-img-wrapper img { transform: scale(1.07); }
.card-badge {
    position: absolute; top: 8px; left: 8px;
    background: rgba(0,0,0,0.8);
    color: var(--stranger-neon);
    font-size: 0.68rem; font-weight: 800;
    padding: 3px 7px; border-radius: 2px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.card-info { padding: 14px; }
.card-title-row h4 { font-size: 1rem; font-weight: 800; margin-bottom: 5px; }
.card-desc {
    font-size: 0.82rem; color: var(--text-secondary);
    line-height: 1.45; max-height: 80px; overflow-y: auto;
    scrollbar-width: thin; scrollbar-color: rgba(200,0,10,0.3) transparent;
}
.card-meta-tags {
    margin-top: 10px; display: flex; gap: 7px;
    font-size: 0.68rem; color: var(--text-muted); font-weight: 700;
}

/* ──────────────────────────────────────────────────
   PITCH ARGUMENT SECTION "Warum jetzt?"
──────────────────────────────────────────────────── */
.pitch-section {
    padding: 70px 4%;
    position: relative; z-index: 10;
    background: linear-gradient(to bottom, rgba(6,6,6,0) 0%, rgba(14,0,0,0.4) 50%, rgba(6,6,6,0) 100%);
    border-top: 1px solid rgba(200,0,10,0.1);
    border-bottom: 1px solid rgba(200,0,10,0.1);
}
.pitch-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.pitch-headline {
    font-family: var(--font-heading);
    font-size: 1.9rem; font-weight: 700;
    color: #fff; margin-bottom: 8px;
    text-align: center;
}
.pitch-headline span { color: var(--stranger-neon); }
.pitch-sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem; margin-bottom: 48px;
    max-width: 600px; margin-left: auto; margin-right: auto;
    line-height: 1.6;
}
.pitch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .pitch-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pitch-grid { grid-template-columns: 1fr; } }

.pitch-card {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(200,0,10,0.15);
    border-radius: 3px;
    padding: 28px 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.pitch-card:hover {
    border-color: rgba(200,0,10,0.4);
    box-shadow: 0 4px 20px rgba(200,0,10,0.08);
}
.pitch-card-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
    opacity: 0.85;
}
.pitch-card-title {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 700;
    color: #fff; margin-bottom: 10px;
    letter-spacing: 0.3px; text-transform: uppercase;
}
.pitch-card-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.pitch-card-text strong { color: rgba(255,255,255,0.88); }

/* Finale / Look & Feel Highlight Block */
.pitch-finale-block {
    margin-top: 40px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 700px) { .pitch-finale-block { grid-template-columns: 1fr; } }

.pitch-finale-card {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(200,0,10,0.15);
    border-radius: 3px; padding: 28px 24px;
    transition: border-color 0.3s ease;
}
.pitch-finale-card:hover { border-color: rgba(200,0,10,0.4); }
.pitch-finale-title {
    font-family: var(--font-heading);
    font-size: 0.85rem; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--stranger-neon); margin-bottom: 14px;
}
.pitch-finale-text {
    font-size: 0.92rem; color: var(--text-secondary);
    line-height: 1.7;
}
.pitch-finale-text em { color: #fff; font-style: normal; font-weight: 600; }

/* ──────────────────────────────────────────────────
   CAST GRID
──────────────────────────────────────────────────── */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px; padding: 10px 0;
}
@media (max-width: 1200px) { .cast-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .cast-grid { grid-template-columns: repeat(2, 1fr); } }

.cast-card {
    height: 320px; perspective: 1000px; cursor: pointer;
}
.cast-card-inner {
    position: relative; width: 100%; height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175,0.885,0.32,1.275);
    transform-style: preserve-3d;
}
.cast-card.flipped .cast-card-inner { transform: rotateY(180deg); }

.cast-card-front, .cast-card-back {
    position: absolute; width: 100%; height: 100%;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
}
.cast-card-front {
    background: var(--bg-card);
    display: flex; flex-direction: column; justify-content: flex-end;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.cast-card:hover .cast-card-front {
    border-color: rgba(200,0,10,0.5);
    box-shadow: var(--border-glow);
}
.silhouette-wrapper {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at center, rgba(35,35,35,0.5) 0%, rgba(10,10,10,0.96) 100%);
}
.silhouette-svg {
    width: 62%; height: 62%;
    fill: #484848; transition: fill 0.25s ease;
}
.cast-card:hover .silhouette-svg { fill: var(--stranger-neon); }
.cast-photo {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: none;
}
body:not(.daylight) .cast-photo { display: block; }
body:not(.daylight) .silhouette-svg { display: none; }

.cast-front-info {
    position: relative; z-index: 2;
    padding: 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0) 100%);
}
.cast-number {
    font-size: 0.62rem; font-weight: 800;
    color: var(--stranger-neon); letter-spacing: 1px;
}
.cast-archetype {
    font-size: 1.05rem; font-weight: 800; color: #fff; margin: 2px 0;
}
.cast-status { font-size: 0.72rem; color: var(--text-secondary); }

.cast-card-back {
    background: var(--bg-card);
    transform: rotateY(180deg);
    padding: 18px 14px;
    display: flex; flex-direction: column; justify-content: space-between;
    text-align: left;
    border-color: rgba(200,0,10,0.4);
}
.back-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 9px;
}
.back-name {
    font-family: var(--font-title);
    font-size: 1rem; font-weight: 700;
    color: var(--stranger-neon);
}
.back-role { font-size: 0.72rem; color: var(--text-secondary); }
.back-stats { margin: 9px 0; }
.stat-row { margin-bottom: 7px; }
.stat-label-wrapper {
    display: flex; justify-content: space-between;
    font-size: 0.67rem; font-weight: 700;
    margin-bottom: 3px; color: var(--text-secondary);
}
.stat-bar-bg {
    width: 100%; height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px; overflow: hidden;
}
.stat-bar-fill {
    height: 100%;
    background: var(--stranger-neon);
    box-shadow: 0 0 6px rgba(200,0,10,0.5);
}
.back-fear { font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 8px; }
.back-quote {
    font-size: 0.72rem; font-style: italic;
    color: var(--text-muted);
    border-left: 2px solid var(--stranger-neon);
    padding-left: 8px; line-height: 1.35;
}
.back-footer-hint {
    font-size: 0.62rem; text-align: center;
    color: var(--text-muted); margin-top: 5px;
}

/* ──────────────────────────────────────────────────
   HEIDI KLUM – PREMIUM POSTER SECTION
──────────────────────────────────────────────────── */
.centered-hueterin {
    padding: 80px 4%;
    position: relative; z-index: 10;
}
.hueterin-centered-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Premium section rule above */
.hueterin-centered-wrapper::before {
    content: '';
    display: block;
    width: 60px; height: 2px;
    background: var(--stranger-neon);
    margin: 0 auto 30px auto;
    box-shadow: 0 0 12px rgba(200,0,10,0.5);
}

.hueterin-eyebrow {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--stranger-neon); margin-bottom: 10px;
}
.hueterin-title-main {
    font-family: var(--font-title);
    font-size: 2.8rem; font-weight: 700;
    color: #fff; margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.hueterin-name-sub {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 700;
    color: rgba(255,255,255,0.65);
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 40px;
}

/* Flip card */
.heidi-interactive-card {
    position: relative;
    width: 360px; height: 420px;
    margin: 0 auto 18px auto;
    perspective: 1000px;
    cursor: pointer;
}
.heidi-card-inner {
    position: relative; width: 100%; height: 100%;
    transition: transform 0.85s cubic-bezier(0.175,0.885,0.32,1.275);
    transform-style: preserve-3d;
}
.heidi-interactive-card.flipped .heidi-card-inner { transform: rotateY(180deg); }

.heidi-card-front, .heidi-card-back {
    position: absolute; width: 100%; height: 100%;
    border-radius: 2px; overflow: hidden;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.heidi-card-front { border: 2px solid rgba(197,155,39,0.5); }
.heidi-card-back {
    border: 2px solid rgba(200,0,10,0.6);
    transform: rotateY(180deg);
}
.heidi-card-front img, .heidi-card-back img {
    width: 100%; height: 100%; object-fit: cover;
}
.heidi-card-back img {
    filter: grayscale(10%) contrast(1.2) brightness(0.82);
    animation: heidiFlicker 8s infinite ease-in-out;
}
@keyframes heidiFlicker {
    0%, 95%, 100% { opacity: 1; filter: grayscale(10%) contrast(1.2) brightness(0.82); }
    96% { opacity: 0.88; filter: grayscale(30%) contrast(1.3) brightness(0.7); }
    97% { opacity: 1; filter: grayscale(10%) contrast(1.2) brightness(0.82); }
    98% { opacity: 0.9; filter: grayscale(25%) brightness(0.75); }
    99% { opacity: 1; }
}

/* Badge labels – no emojis, text only */
.heidi-badge-label {
    position: absolute; top: 14px; left: 14px;
    background: rgba(253,250,242,0.92);
    color: #111;
    font-size: 0.68rem; font-weight: 800;
    padding: 4px 10px;
    border-radius: 1px; z-index: 5;
    letter-spacing: 1px; text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.heidi-badge-label.night {
    background: rgba(0,0,0,0.88);
    color: var(--stranger-neon);
    border: 1px solid rgba(200,0,10,0.5);
}

.heidi-hint-text {
    font-size: 0.75rem; font-weight: 600;
    color: var(--text-muted); margin-bottom: 30px;
    letter-spacing: 0.3px;
}

.hueterin-centered-text {
    text-align: center; max-width: 680px;
    margin: 0 auto;
}
.hueterin-desc {
    font-size: 1rem; line-height: 1.7;
    color: var(--text-secondary); margin-bottom: 16px;
}
.centered-quote {
    font-weight: 600; font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    padding: 18px 24px;
    background: rgba(200,0,10,0.06);
    border: 1px solid rgba(200,0,10,0.15);
    border-radius: 2px; margin: 24px 0;
    font-style: italic;
}

/* CRT Terminal */
.centered-crt {
    margin: 44px auto 0 auto;
    max-width: 540px;
}

/* ──────────────────────────────────────────────────
   CRT TERMINAL (referenced in HTML)
──────────────────────────────────────────────────── */
.crt-terminal { width: 100%; }
.crt-monitor {
    background: #080808;
    border: 2px solid rgba(200,0,10,0.3);
    border-radius: 4px; overflow: hidden;
    box-shadow: 0 0 20px rgba(200,0,10,0.1), inset 0 0 30px rgba(0,0,0,0.5);
}
.crt-screen-content {
    padding: 18px 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: rgba(200,0,10,0.9);
    min-height: 90px;
    line-height: 1.5;
    text-shadow: 0 0 8px rgba(200,0,10,0.6);
}
.terminal-header, .terminal-footer {
    display: flex; justify-content: space-between;
    font-size: 0.7rem; opacity: 0.65;
}
.terminal-header { margin-bottom: 10px; }
.terminal-footer { margin-top: 10px; border-top: 1px solid rgba(200,0,10,0.15); padding-top: 8px; }
.terminal-body { min-height: 35px; }

.crt-controls {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 16px;
    background: rgba(10,10,10,0.9);
    border: 1px solid rgba(200,0,10,0.15);
    border-top: none;
    border-radius: 0 0 4px 4px;
}
.frequency-buttons { display: flex; gap: 8px; }
.btn-dial {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-muted);
    font-size: 0.7rem; font-weight: 700;
    padding: 5px 10px; border-radius: 2px;
    cursor: pointer; letter-spacing: 0.5px;
    transition: all 0.25s ease;
    font-family: 'Courier New', monospace;
}
.btn-dial.active, .btn-dial:hover {
    background: rgba(200,0,10,0.15);
    border-color: rgba(200,0,10,0.4);
    color: var(--stranger-neon);
}
.dial-knob-wrapper {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.65rem; letter-spacing: 1px;
    color: var(--text-muted); text-transform: uppercase;
}
.dial-knob {
    width: 30px; height: 30px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #3a3a3a, #111);
    border: 2px solid rgba(200,0,10,0.25);
    position: relative; cursor: pointer;
    transition: transform 0.3s ease;
}
.dial-pointer {
    position: absolute; top: 4px; left: 50%;
    transform: translateX(-50%);
    width: 2px; height: 8px;
    background: var(--stranger-neon);
    border-radius: 1px;
}

/* ──────────────────────────────────────────────────
   TEASER VIDEO OVERLAY
──────────────────────────────────────────────────── */
.vhs-overlay-container {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.96);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
}
.vhs-overlay-container.active {
    opacity: 1; pointer-events: auto;
}
.vhs-player-box {
    position: relative;
    width: 92%; max-width: 900px;
    background: #000;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
}
.trailer-video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    background: #000;
}
.vhs-player-controls {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
    background: rgba(10,10,10,0.95);
    border-top: 1px solid rgba(255,255,255,0.07);
}
.vhs-player-title {
    font-family: var(--font-heading);
    font-size: 0.8rem; font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px; text-transform: uppercase;
}
.btn-close-vhs {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    padding: 7px 18px;
    font-size: 0.8rem; font-weight: 700;
    border-radius: 2px; cursor: pointer;
    letter-spacing: 1px; text-transform: uppercase;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}
.btn-close-vhs:hover {
    border-color: #fff; color: #fff;
}

/* ──────────────────────────────────────────────────
   FOOTER – Minimal & Schick
──────────────────────────────────────────────────── */
footer {
    padding: 28px 4% 24px 4%;
    background: rgba(10,10,10,0.95);
    border-top: 1px solid rgba(255,255,255,0.06);
    transition: all 0.5s ease;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
}
.footer-links-minimal {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 6px 20px;
}
.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.72rem;
    transition: color 0.2s ease;
}
.footer-link:hover { color: var(--text-secondary); }
.footer-copy {
    font-size: 0.7rem; color: var(--text-muted);
    text-align: center; line-height: 1.5;
}
.footer-bottom-logo {
    font-family: var(--font-title);
    font-size: 0.9rem; color: rgba(255,255,255,0.08);
    letter-spacing: 2px; margin-top: 4px;
    transition: color 0.5s ease;
}

/* ──────────────────────────────────────────────────
   DAYLIGHT MODE
──────────────────────────────────────────────────── */
body.daylight {
    --bg-primary: #f5f0e8;
    --bg-card: #fff;
    --text-primary: #1a0f00;
    --text-secondary: #4a3f32;
    --text-muted: #8a7a6a;
    --netflix-red: #b8860b; /* dark gold */
    --stranger-neon: #b8860b;
    --border-glow: 0 8px 24px rgba(184,134,11,0.1);
}
body.daylight .crt-overlay,
body.daylight .noise-overlay,
body.daylight #spores-canvas { display: none !important; }
body.daylight .detail-sections-wrapper,
body.daylight .nav-detail-link { display: none !important; }
body.daylight .pitch-section { display: none !important; }

body.daylight .netflix-nav {
    background: linear-gradient(to bottom, rgba(245,240,232,0.9) 0%, rgba(245,240,232,0) 100%);
}
body.daylight .netflix-nav.scrolled {
    background: #f5f0e8;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
body.daylight .nav-logo { color: #b8860b; }
body.daylight .nav-item a { color: #6a5a48; }
body.daylight .nav-item a:hover, body.daylight .nav-item.active a { color: #1a0f00; }
body.daylight .theme-toggle-nav {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
}
body.daylight .theme-nav-btn { color: #6a5a48; }
body.daylight .theme-nav-btn.active { background: #b8860b; color: #fff; }

/* Hero Bild – kräftig & satt, Haus sichtbar */
body.daylight .hero-bg img {
    filter: saturate(1.85) contrast(1.12) brightness(1.08);
}
/* Gradient: links abgedunkelt für Textlesbarkeit, rechts Haus voll sichtbar */
body.daylight .hero-gradient {
    background:
        linear-gradient(to right, rgba(245,240,232,0.88) 0%, rgba(245,240,232,0.55) 40%, rgba(245,240,232,0.05) 70%, rgba(245,240,232,0) 100%),
        linear-gradient(to top, #f5f0e8 0%, rgba(245,240,232,0) 30%, rgba(245,240,232,0) 75%, #f5f0e8 100%);
}
body.daylight .hero-title { color: #1a0f00; }
body.daylight .original-text { color: rgba(26,15,0,0.65); }
body.daylight .hero-meta { color: #1a0f00; }
body.daylight .meta-badge { border-color: rgba(26,15,0,0.35); color: #1a0f00; }
body.daylight .show-tags { color: #4a3f32; }
body.daylight .hero-synopsis { color: #4a3f32; }

body.daylight .btn-netflix.primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(184,134,11,0.25);
}
body.daylight .btn-netflix.secondary {
    background: rgba(26,15,0,0.06);
    color: #1a0f00;
    border: 1px solid rgba(26,15,0,0.12);
}

/* Buzzer Day */
body.daylight .buzzer-section {
    background: none;
}
body.daylight .buzzer-container {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(184,134,11,0.18);
    box-shadow: 0 8px 30px rgba(184,134,11,0.07);
}
body.daylight .buzzer-subtitle { color: #2c1f0e; }
body.daylight .buzzer-cap {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    box-shadow: 0 6px 18px rgba(184,134,11,0.25);
    color: #fff;
}
body.daylight .buzzer-cap:hover {
    box-shadow: 0 8px 24px rgba(184,134,11,0.38);
}

/* Footer Day */
body.daylight footer {
    background: #ede8de;
    border-top: 1px solid rgba(0,0,0,0.07);
}
body.daylight .footer-link { color: #8a7a6a; }
body.daylight .footer-copy { color: #8a7a6a; }
body.daylight .footer-bottom-logo { color: rgba(26,15,0,0.07); }

/* Score button Day */
body.daylight .score-toggle-btn {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.12);
    color: #4a3f32;
}
body.daylight .score-toggle-btn:hover {
    border-color: #b8860b;
}
body.daylight .score-toggle-btn.active {
    border-color: #b8860b;
    background: rgba(184,134,11,0.08);
    box-shadow: 0 0 8px rgba(184,134,11,0.25);
}
body.daylight .score-status-text { color: #6a5a48; }
body.daylight .score-toggle-btn.active .score-status-text { color: #b8860b; }
body.daylight .score-toggle-btn.active .score-icon { stroke: #b8860b; }
body.daylight .nav-btn { color: #4a3f32; }

/* ──────────────────────────────────────────────────
   LOOK & FEEL PHOTO GRID
──────────────────────────────────────────────────── */
.look-feel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.look-feel-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: var(--bg-card);
    border: 1px solid rgba(200,0,10,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.look-feel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(200,0,10,0.2);
}
.look-feel-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.look-feel-item p {
    padding: 10px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
body.daylight .look-feel-item {
    background: #fff;
    border-color: rgba(0,0,0,0.08);
}
body.daylight .look-feel-item p { color: #5a4a3a; }

@media (max-width: 680px) {
    .look-feel-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .look-feel-item img { height: 120px; }
}

/* ──────────────────────────────────────────────────
   EPISODE GUIDE – Netflix-Style
──────────────────────────────────────────────────── */
.episode-section {
    border-top: 1px solid rgba(200,0,10,0.12);
}
.episode-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 32px;
}
.episode-card {
    background: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(200,0,10,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}
.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(200,0,10,0.18);
    border-color: rgba(200,0,10,0.25);
}
.episode-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    cursor: pointer;
}
.episode-thumb {
    position: relative;
    overflow: hidden;
}
.episode-thumb img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.episode-card:hover .episode-thumb img {
    transform: scale(1.04);
}
.ep-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.episode-card--featured:hover .ep-overlay { opacity: 1; }
.ep-play-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(200,0,10,0.85);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(200,0,10,0.5);
}
.ep-play-btn svg { width: 28px; height: 28px; }
.ep-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--text-primary);
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 3px;
    font-family: var(--font-body);
    border: 1px solid rgba(200,0,10,0.3);
}
.ep-badge--finale {
    background: rgba(200,0,10,0.8);
    border-color: rgba(200,0,10,0.6);
}
.ep-info {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ep-number {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--stranger-neon);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.ep-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.ep-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.ep-detail-btn {
    margin-top: 14px;
    background: transparent;
    border: 1px solid var(--stranger-neon);
    color: var(--stranger-neon);
    padding: 8px 18px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s, color 0.3s;
    align-self: flex-start;
}
.ep-detail-btn:hover {
    background: var(--stranger-neon);
    color: #fff;
}

/* Episode Featured – smaller cards */
.episode-card:not(.episode-card--featured) .episode-thumb img {
    height: 140px;
    min-height: 140px;
}

@media (max-width: 900px) {
    .episode-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .episode-card--featured { grid-column: 1 / -1; }
}
@media (max-width: 550px) {
    .episode-grid { grid-template-columns: 1fr; }
    .episode-card--featured { grid-template-columns: 1fr; }
}

/* Daylight overrides */
body.daylight .episode-card {
    background: #fff;
    border-color: rgba(0,0,0,0.06);
}
body.daylight .episode-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.12); }
body.daylight .ep-number { color: #a47e52; }
body.daylight .ep-title { color: #2a1f14; }
body.daylight .ep-desc { color: #6a5a4a; }
body.daylight .ep-badge { background: rgba(255,255,255,0.85); color: #2a1f14; border-color: rgba(0,0,0,0.1); }
body.daylight .ep-badge--finale { background: rgba(184,134,11,0.85); color: #fff; }
body.daylight .ep-detail-btn { border-color: #a47e52; color: #a47e52; }
body.daylight .ep-detail-btn:hover { background: #a47e52; color: #fff; }

/* ──────────────────────────────────────────────────
   EPISODE 1 DETAIL OVERLAY
──────────────────────────────────────────────────── */
.ep-detail-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}
.ep-detail-overlay.active { display: flex; }
.ep-detail-box {
    background: #0d0d0d;
    border: 1px solid rgba(200,0,10,0.2);
    border-radius: 8px;
    max-width: 960px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(200,0,10,0.15);
}
.ep-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(200,0,10,0.15);
}
.ep-detail-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--stranger-neon);
    font-family: var(--font-body);
}
.ep-detail-close {
    background: transparent;
    border: 1px solid rgba(200,0,10,0.3);
    color: var(--text-secondary);
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
}
.ep-detail-close:hover {
    background: var(--stranger-neon);
    color: #fff;
    border-color: var(--stranger-neon);
}
.ep-detail-content {
    padding: 28px 24px;
}
.ep-detail-page-header {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}
.ep-detail-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.ep-detail-section-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--stranger-neon);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(200,0,10,0.12);
}
.ep-detail-col p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}
.ep-detail-col p strong { color: var(--text-primary); }
.ep-detail-col p em { color: var(--stranger-neon); font-style: italic; }
.ep-detail-list {
    list-style: none;
    padding: 0;
}
.ep-detail-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 5px 0 5px 16px;
    position: relative;
    line-height: 1.5;
}
.ep-detail-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--stranger-neon);
    font-size: 0.8rem;
}
.ep-quote {
    border-left: 3px solid var(--stranger-neon);
    padding: 12px 16px;
    margin: 12px 0;
    font-style: italic;
    color: var(--text-primary);
    font-size: 0.95rem;
    background: rgba(200,0,10,0.05);
    border-radius: 0 4px 4px 0;
}

@media (max-width: 700px) {
    .ep-detail-cols { grid-template-columns: 1fr; gap: 20px; }
    .ep-detail-content { padding: 20px 16px; }
}

/* Daylight mode for Episode Overlay */
body.daylight .ep-detail-box {
    background: #fdfbf7;
    border-color: rgba(184,134,11,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
body.daylight .ep-detail-header {
    border-color: rgba(0,0,0,0.08);
}
body.daylight .ep-detail-badge {
    color: #8b6508;
}
body.daylight .ep-detail-close {
    border-color: rgba(0,0,0,0.15);
    color: #4a3f32;
}
body.daylight .ep-detail-close:hover {
    background: #a47e52;
    color: #fff;
    border-color: #a47e52;
}
body.daylight .ep-detail-page-header {
    color: #2a1f14;
}
body.daylight .ep-detail-section-title {
    color: #8b6508;
    border-color: rgba(0,0,0,0.08);
}
body.daylight .ep-detail-col p {
    color: #5a4a3a;
}
body.daylight .ep-detail-col p strong {
    color: #2a1f14;
}
body.daylight .ep-detail-col p em {
    color: #8b6508;
}
body.daylight .ep-detail-list li {
    color: #5a4a3a;
}
body.daylight .ep-detail-list li::before {
    color: #8b6508;
}
body.daylight .ep-quote {
    border-color: #8b6508;
    background: rgba(184,134,11,0.08);
    color: #2a1f14;
}

