/* =========================================
   CRIMEBITE - GLOBALE STYLES (style.css)
   ========================================= */

/* --- GRUNDEINSTELLUNGEN --- */
:root {
    --bg-color: #42080b;
    --bg-gradient: radial-gradient(circle at center, #5e0b0f 0%, #290506 90%);
    --mission-bg: linear-gradient(135deg, #7a1515 0%, #3d0808 100%);
    --trailer-bg: linear-gradient(135deg, #121216 0%, #050508 100%);

    --accent-color: #ebdcc1;
    --accent-dark: #d6c4a5;
    --text-dark: #2c0e0e;
    --white: #ffffff;
    --danger: #8a1c1c;
    --header-height: 90px;

    --current-header-bg: rgba(30, 5, 5, 0.95);
}

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

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg-color);
    color: var(--white);
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* --- DYNAMISCHER HINTERGRUND FÜR DIE AUFLÖSUNG --- */
body:has(.resolution-container) {
    --bg-color: #2a0507;
    --bg-gradient: radial-gradient(circle at center, #42080b 0%, #1a0202 100%);
    --current-header-bg: rgba(20, 2, 2, 0.98);
    background-image: var(--bg-gradient);
}

/* --- NEBEL / RAUCH EFFEKT (HINTERGRUND GLOBAL) --- */
.fog-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.fog-cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(70px);
    animation: floatFog 25s infinite ease-in-out alternate;
}

.fog-1 {
    width: 600px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-duration: 35s;
}

.fog-2 {
    width: 500px;
    height: 400px;
    bottom: 20%;
    right: -50px;
    background: rgba(255, 255, 255, 0.15);
    animation-duration: 28s;
    animation-delay: -5s;
}

.fog-3 {
    width: 800px;
    height: 300px;
    bottom: -100px;
    left: 10%;
    background: rgba(255, 255, 255, 0.1);
    animation-duration: 40s;
    animation-delay: -10s;
}

/* Spezifischer Nebel für Auflösung */
body:has(.resolution-container) .fog-1 {
    width: 700px;
    height: 300px;
    top: -10%;
    left: -100px;
    filter: blur(90px);
    animation: floatFog 40s infinite ease-in-out alternate;
}

body:has(.resolution-container) .fog-2 {
    width: 600px;
    height: 500px;
    bottom: -10%;
    right: -50px;
    animation-duration: 35s;
    filter: blur(90px);
}

@keyframes floatFog {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(60px, -30px) scale(1.2);
        opacity: 0.8;
    }
}

.overlay-vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Stärkere Vignette für Auflösung */
body:has(.resolution-container) .overlay-vignette {
    background: radial-gradient(circle, transparent 30%, rgba(0, 0, 0, 0.95) 90%);
}


/* =========================================
   ALLGEMEINE AUDIO STYLES
   ========================================= */
audio {
    width: 100%;
    height: 40px;
    outline: none;
    border-radius: 50px;
    filter: sepia(20%) saturate(140%) hue-rotate(-10deg);
}

audio::-webkit-media-controls-panel {
    background-color: var(--accent-color);
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button {
    background-color: #2c0e0e;
    border-radius: 50%;
    color: white;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: #2c0e0e;
    font-weight: bold;
}


/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
    height: auto;
    padding: 20px 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-spacer-left,
.header-spacer-right {
    transition: flex-grow 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    height: 1px;
    pointer-events: none;
}

.header-spacer-left {
    flex-grow: 0;
}

.header-spacer-right {
    flex-grow: 1;
    min-width: 20px;
}

.header-left,
.header-right {
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Carter One', cursive;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    transition: font-size 0.3s ease, color 0.4s ease, text-shadow 0.4s ease;
}

.nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-pill {
    background-color: var(--accent-color);
    border-radius: 50px;
    padding: 0 10px;
    height: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform-origin: right center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    display: block;
    border-radius: 30px;
    transition: background 0.2s;
}

.nav-link:hover {
    background-color: rgba(44, 14, 14, 0.05);
}

.nav-link.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.nav-link.active-page {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.05);
    filter: grayscale(1);
}

.current-page {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.05);
    filter: grayscale(1);
}

/* --- Hervorhebung für den Wartelisten-Button im Desktop-Menü --- */
.nav-pill .nav-item.hook .nav-link {
    background-color: var(--danger);
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 25px;
    margin-left: 10px;
    box-shadow: 0 4px 10px rgba(138, 28, 28, 0.4);
    transition: all 0.3s ease;
}

.nav-pill .nav-item.hook .nav-link:hover {
    background-color: #a32222;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(138, 28, 28, 0.6);
}

/* --- HAMBURGER-MENÜ & ANIMATION --- */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
    /* Etwas größere Klickfläche für Handys */
    width: 45px;
    height: 40px;
    position: relative;
    pointer-events: auto;
    z-index: 1000;
    /* Bleibt immer über der Sidebar */
    outline: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    position: absolute;
    left: 10px;
    background-color: var(--accent-color);
    border-radius: 3px;
    /* Schöne dynamische "Bouncy" Animation */
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        opacity 0.3s ease,
        background-color 0.4s ease;
}

.bar:nth-child(1) {
    top: 12px;
}

.bar:nth-child(2) {
    top: 20px;
}

.bar:nth-child(3) {
    top: 28px;
}

/* Die X-Animation für das offene Menü (Desktop & Mobile) */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
    /* Fährt sanft zur Seite raus */
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Farbe des X passt sich an die helle Sidebar an */
.hamburger.active .bar {
    background-color: var(--text-dark) !important;
}

/* --- WARTELISTE BUTTON IN DER SIDEBAR (DESKTOP & MOBILE) --- */
.sidebar-menu .nav-item.hook .nav-link {
    background-color: var(--danger);
    color: #ffffff !important;
    border-radius: 30px;
    padding: 15px 25px;
    text-align: center;
    margin: 20px auto 0 auto;
    width: 90%;
    border-bottom: none !important;
    box-shadow: 0 4px 10px rgba(138, 28, 28, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-menu .nav-item.hook .nav-link:hover {
    background-color: #a32222;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 28, 28, 0.6);
}

.dropdown-content {
    background-color: var(--accent-color);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    padding: 5px 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    text-align: left;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background-color: rgba(44, 14, 14, 0.1);
}

.product-thumb {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: transparent;
    border: none;
}

.nav-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.nav-badge {
    font-size: 0.65rem;
    background-color: #f1c40f;
    color: #2c0e0e;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* --- DESKTOP HEADER --- */
@media (min-width: 901px) {
    .header-left {
        padding: 10px 0;
    }

    header.scrolled .header-left,
    header.scrolled .header-right {
        background-color: var(--current-header-bg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        padding: 10px 30px;
        height: 60px;
    }

    header.scrolled .brand-name {
        font-size: 1.5rem;
        text-shadow: none;
    }

    header.menu-open .header-right {
        background-color: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    header.scrolled .nav-pill {
        opacity: 0;
        transform: scale(0.5);
        pointer-events: none;
        width: 0;
        padding: 0;
    }

    header.scrolled .hamburger {
        display: block;
        animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    header.scrolled .bar {
        background-color: var(--accent-color);
    }

    @keyframes popIn {
        from {
            opacity: 0;
            transform: scale(0.5);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .sidebar-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 350px;
        height: 100vh;
        background-color: #ebdcc1;
        flex-direction: column;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        padding-top: 100px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        display: flex;
    }

    .sidebar-menu.active {
        transform: translateX(0);
    }

    .sidebar-menu .nav-list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 20px;
    }

    .sidebar-menu .nav-link {
        width: 100%;
        text-align: left;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .sidebar-menu .nav-item {
        width: 100%;
    }

    .sidebar-menu .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        margin: 0;
        /* Neue weiche Animation statt display: none */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
        padding: 0;
    }

    .sidebar-menu .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 600px; /* Groß genug für alle Krimidinner */
        opacity: 1;
        padding: 10px 0;
    }

    .sidebar-menu .nav-item.has-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-pill .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background-color: var(--accent-color);
        min-width: 300px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        z-index: 20;
        border-top: 4px solid var(--text-dark);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding-top: 15px;
    }

    .nav-pill .nav-item.has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* --- MOBILE HEADER --- */
@media (max-width: 900px) {
    header {
        width: 90%;
        left: 5%;
        top: 20px;
        height: 70px;
        padding: 10px 25px;
        border-radius: 50px;
        background: transparent;
        pointer-events: none;
    }

    header.scrolled {
        background-color: var(--current-header-bg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        pointer-events: auto;
    }

    header.menu-open {
        background-color: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    header.menu-open .header-spacer-left {
        flex-grow: 1;
    }

    header.menu-open .header-spacer-right {
        flex-grow: 0;
    }

    header.menu-open .brand-name {
        color: var(--text-dark);
        text-shadow: none;
    }

    header.menu-open .bar {
        background-color: var(--text-dark);
    }

    .header-left,
    .header-right {
        pointer-events: auto;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: auto;
    }

    .brand-name {
        font-size: 1.4rem;
        text-shadow: none;
    }

    .hamburger {
        display: block;
    }

    .nav-pill {
        display: none;
    }

    .sidebar-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 80%;
        height: 100vh;
        background-color: #ebdcc1;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
        padding-top: 100px;
        transform: translateX(100%);
        display: flex;
    }

    .sidebar-menu.active {
        transform: translateX(0);
    }

    .sidebar-menu .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 20px;
    }

    .sidebar-menu .nav-link {
        color: #2c0e0e;
        font-size: 1.1rem;
        padding: 12px;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
    }

    .sidebar-menu .nav-item {
        width: 100%;
    }

    .sidebar-menu .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        margin: 0;
        border: none;
        /* Neue weiche Animation statt display: none */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
        padding: 0;
    }

    .sidebar-menu .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 600px; 
        opacity: 1;
        padding: 10px 0;
    }

    .sidebar-menu .nav-item.has-dropdown.active .dropdown-menu {
        display: block;
    }
}

/* =========================================
   FOOTER & MODALS (WAITLIST/FEEDBACK)
   ========================================= */
footer {
    background: #1a0505;
    color: var(--accent-color);
    padding: 60px 20px;
    position: relative;
    z-index: 10;
    font-family: 'Open Sans', sans-serif;
    border-top: 5px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Carter One', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p,
.footer-col a {
    color: rgba(235, 220, 193, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(235, 220, 193, 0.2);
    font-size: 0.9rem;
    color: rgba(235, 220, 193, 0.6);
}

.wl-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wl-modal-overlay.active {
    display: flex;
    opacity: 1;
    animation: popInModal 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wl-modal-content {
    background: linear-gradient(135deg, #2c0e0e 0%, #1a0505 100%);
    border: 2px solid var(--accent-color);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(235, 220, 193, 0.2);
}

.wl-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.wl-title {
    font-family: 'Carter One', cursive;
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.wl-text {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wl-divider {
    height: 1px;
    background: rgba(235, 220, 193, 0.3);
    width: 80%;
    margin: 20px auto;
}

.wl-text-small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.wl-fallback-btn {
    display: inline-block;
    background: var(--accent-color);
    color: #2c0e0e;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wl-fallback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 220, 193, 0.4);
    background-color: #fff;
}

/* Globale Keyframes */
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popInModal {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   SEITE: STARTSEITE (INDEX.HTML)
   ========================================= */
.hero {
    min-height: 100vh;
    background: var(--bg-gradient);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    padding-bottom: 80px;
    text-align: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.logo-container {
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.8));
    max-width: 80vw;
    max-height: 80vw;
}

.logo-container img {
    width: 100%;
    height: auto;
    border: none;
}

.subline {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: -20px;
    opacity: 0;
    animation: sublineFadeIn 2s ease-out forwards 1s;
}

@keyframes sublineFadeIn {
    to {
        opacity: 0.9;
        margin-top: 0;
    }
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 20px;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(235, 220, 193, 0.4);
    background-color: #fff;
}

.cursive {
    font-family: 'Kaushan Script', cursive;
    color: #d35400;
    font-size: 1.4rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 20;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    transform: rotate(45deg);
    margin: -5px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mission */
#mission-highlight {
    position: relative;
    background: var(--mission-bg);
    color: var(--accent-color);
    /* <--- Hier geändert */
    padding: 100px 20px;
    z-index: 10;
    border-top: 5px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mission-bg-decorative {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 55%;
    max-width: 600px;
    height: auto;
    z-index: 0;
    opacity: 0.15;
    filter: blur(5px);
    transform: rotate(15deg);
    pointer-events: none;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.mission-left {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-right {
    flex: 1;
    text-align: justify;
    border-left: 3px dotted rgba(235, 220, 193, 0.3);
    /* <--- Weicher und passend zur Akzentfarbe */
    padding-left: 50px;
}

.small-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    display: block;
}

.big-serif {
    font-family: 'Abril Fatface', serif;
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.mission-product-img {
    width: 85%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.mission-product-img:hover {
    transform: scale(1.05);
}

.mission-text {
    font-weight: 400;
    /* <--- Dünner für einen Premium-Look */
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    /* <--- Helle Schrift für den dunklen Hintergrund */
}

/* Trailer Section */
#trailer-section {
    padding: 80px 20px;
    background: var(--trailer-bg);
    color: var(--text-dark);
    position: relative;
    z-index: 10;
    border-top: 5px solid rgba(0, 0, 0, 0.1);
}

.trailer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.trailer-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trailer-heading {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    line-height: 1.1;
    color: #1a0505;
    margin-bottom: 20px;
}

.highlight-yellow {
    color: #f1c40f;
    font-size: 1.4em;
}

.trailer-heading {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    line-height: 1.1;
    color: var(--accent-color);
    /* Geändert von dunkel zu gold */
    margin-bottom: 20px;
}

.trailer-item {
    background: rgba(255, 255, 255, 0.03);
    /* Etwas dunkler */
    border: 1px solid rgba(235, 220, 193, 0.1);
    /* Feiner goldener Rand */
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trailer-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(235, 220, 193, 0.3);
    transform: translateX(10px);
    /* Rutscht beim Hovern leicht nach rechts */
}

.trailer-title {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 1px;
}

.player-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* --- DER NEUE CUSTOM PLAY BUTTON --- */
.custom-play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #2c0e0e;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    /* WICHTIG: Padding hier auf 0 setzen! */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

/* Play-Icon Korrektur (Dreieck leicht nach rechts für optische Mitte,
   UND ein Stück nach oben für vertikale Zentrierung) */
.custom-play-btn:not(.playing) .play-icon {
    /* translateX(2px) schiebt die Spitze des Dreiecks in die optische horizontale Mitte,
       translateY(-2px) schiebt das gesamte Zeichen nach oben. */
    transform: translate(2px, -1.5px);
}
/* Zentriert die Zeichen exakt und entfernt unsichtbare Textabstände */
/* --- DAS NEUE GRAFISCHE PAUSE-SYMBOL (statt Emoji) --- */
.custom-play-btn.playing .play-icon::before,
.custom-play-btn.playing .play-icon::after {
    content: '';
    display: block;
    width: 4px;
    /* Breite der Balken */
    height: 16px;
    /* Höhe der Balken */
    background-color: currentColor;
    /* Nutzt die Schriftfarbe des Buttons */
    border-radius: 2px;
    margin: 0 2px;
    /* Abstand zwischen den beiden Balken */
}

/* Zentrierung für das Pause-Icon */
.custom-play-btn.playing .play-icon {
    transform: translate(0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-play-btn:hover {
    transform: scale(1.1);
    background-color: #fff;
    box-shadow: 0 0 20px rgba(235, 220, 193, 0.4);
}

.custom-play-btn.playing {
    background-color: var(--danger);
    color: #fff;
    animation: pulse 2s infinite;
}

/* --- Deaktivierte Trailer-Buttons --- */
.custom-play-btn.disabled {
    background-color: rgba(235, 220, 193, 0.2);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
    /* Blockiert alle Klicks */
}

.custom-play-btn.disabled:hover {
    transform: none;
    background-color: rgba(235, 220, 193, 0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 28, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(138, 28, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(138, 28, 28, 0);
    }
}

/* Kleine animierte Sound-Welle (Fake-Visualizer) */
.audio-wave {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 20px;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.custom-play-btn.playing+.audio-wave {
    opacity: 1;
}

.audio-wave span {
    display: block;
    width: 4px;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 2px;
    animation: wave 1s infinite ease-in-out;
    animation-play-state: paused;
}

.custom-play-btn.playing+.audio-wave span {
    animation-play-state: running;
}

.audio-wave span:nth-child(2) {
    animation-delay: 0.2s;
}

.audio-wave span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    100% {
        height: 20%;
    }

    50% {
        height: 100%;
    }
}

.player-row audio {
    width: 220px !important;
}

/* --- DYNAMISCHE AUDIO-SPUR FÜR DEN SLIDER --- */
.player-track-line {
    flex-grow: 1;
    /* Füllt den gesamten leeren Raum perfekt aus */
    height: 2px;
    background: repeating-linear-gradient(90deg,
            var(--accent-color) 0px,
            var(--accent-color) 4px,
            transparent 4px,
            transparent 8px);
    opacity: 0.2;
    /* Dezent im Hintergrund */
    transition: opacity 0.3s ease;
}

/* --- DYNAMISCHER FORTSCHRITTSBALKEN (INTRO) --- */
.player-progress-bar {
    flex-grow: 1;
    /* Nimmt den restlichen Platz in der Box ein */
    height: 6px;
    background: rgba(235, 220, 193, 0.1);
    /* Dunkles, halbtransparentes Beige */
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    /* Leichter 3D-Innenschatten */
}

.player-progress-fill {
    height: 100%;
    width: 0%;
    /* Startet bei 0, wird über JavaScript gefüllt */
    background: var(--danger);
    /* Krimi-Rot */
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(138, 28, 28, 0.8);
    /* Schönes rotes Leuchten */
    transition: width 0.1s linear;
    /* Lässt den Balken flüssig wachsen */
}

/* Die Linie leuchtet auf, wenn die Musik spielt */
.custom-play-btn.playing~.player-track-line {
    opacity: 0.6;
}

/* --- AUSFAHRBARER BALKEN IM TRAILER-BEREICH (INTELLIGENT) --- */
.trailer-progress-wrapper {
    max-width: 0;
    flex-grow: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-play-btn.playing~.trailer-progress-wrapper {
    max-width: 150px;
    flex-grow: 1;
    /* WICHTIG: Er nimmt nur so viel Platz, wie die Box hergibt! */
    opacity: 1;
    margin: 0 5px;
}

.trailer-progress-wrapper .player-progress-bar {
    width: 100%;
}

/* Verhindert, dass die restlichen Buttons auf dem Handy gequetscht werden */
.btn-transcript,
.btn-reset,
.custom-play-btn,
.audio-wave {
    flex-shrink: 0;
}

/* --- DER NEUE RESET BUTTON --- */
.btn-reset {
    background: rgba(235, 220, 193, 0.05);
    color: var(--accent-color);
    border: 1px solid rgba(235, 220, 193, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Er versteckt sich am Anfang hinter dem Play-Button */
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
    margin-right: -25px;
    pointer-events: none;
    flex-shrink: 0;
}

/* Cooler Spin-Effekt beim Hovern */
.btn-reset:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: scale(1.1) rotate(-360deg) !important;
}

/* Die Klasse wird per JS gesetzt und rollt den Button sanft heraus */
.is-active .btn-reset {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    margin-right: 0px;
    pointer-events: auto;
}

/* --- MOBILE OPTIMIERUNG FÜR TRAILER-BUTTONS --- */
@media (max-width: 900px) {

    /* Abstände minimal verringern für mehr Platz */
    .player-row,
    .player-actions {
        gap: 10px;
    }

    .btn-transcript {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}


/* --- NEUES TRANSKRIPT BUTTON DESIGN --- */
.btn-transcript {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid rgba(235, 220, 193, 0.4);
    border-radius: 20px;
    padding: 6px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-transcript:hover {
    background-color: rgba(235, 220, 193, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-transcript.active {
    background-color: var(--accent-color);
    color: #2c0e0e;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(235, 220, 193, 0.2);
}

/* --- NEUES MOBILE TRANSKRIPT (Dunkelrot/Schwarz) --- */
.mobile-transcript {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background-color: rgba(20, 5, 5, 0.8);
    /* Dunkles Krimi-Rot/Schwarz statt Blau */
    border: 1px solid transparent;
    border-radius: 10px;
    margin-top: 0;
    padding: 0 15px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}

.mobile-transcript.open {
    max-height: 1000px;
    opacity: 1;
    margin-top: 15px;
    padding: 20px;
    border-color: rgba(235, 220, 193, 0.2);
    color: rgba(235, 220, 193, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.trailer-display {
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 80px;
}

.trailer-dynamic-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

#default-view-img {
    transition: opacity 0.5s ease;
    max-width: 80%;
    height: auto;
    display: block;
}

#default-view-img.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

#transcript-view {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
    top: 0;
}

#transcript-view.visible {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* --- NEUE DESKTOP TRANSKRIPT-BOX --- */
.transcript-cloud {
    background: linear-gradient(135deg, rgba(44, 14, 14, 0.95) 0%, rgba(20, 5, 5, 0.95) 100%);
    border: 1px solid rgba(235, 220, 193, 0.15);
    padding: 40px;
    border-radius: 20px;
    /* Schön abgerundet */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    text-align: left;
    position: relative;
    backdrop-filter: blur(10px);
}

.transcript-label {
    position: absolute;
    top: -15px;
    left: 30px;
    /* Nach links gesetzt, sieht optisch aufgeräumter aus */
    background: var(--accent-color);
    color: #2c0e0e;
    padding: 5px 20px;
    border-radius: 10px;
    font-family: 'Abril Fatface', serif;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.transcript-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(235, 220, 193, 0.85);
    /* Ein sanftes Beige statt hartem Weiß */
    font-family: 'Open Sans', sans-serif;
}

.all-trailers-btn {
    background: var(--accent-color);
    color: #2c0e0e;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    border: 2px solid #2c0e0e;
    box-shadow: 5px 5px 0 #2c0e0e;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    transition: transform 0.2s;
}

.all-trailers-btn:hover {
    transform: translateY(-2px);
    box-shadow: 7px 7px 0 #2c0e0e;
}

/* Slider Section */
#krimi-slider-section {
    background-color: var(--bg-color);
    color: var(--accent-color);
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
    border-top: 5px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.5s ease;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.8);
}

.static-title.classic-style {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 90%;
    max-width: 1400px;
    margin: 80px auto 60px auto;
    position: relative;
    z-index: 20;
}

.classic-style .title-center {
    font-family: 'Abril Fatface', serif;
    font-size: 4rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    white-space: nowrap;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1;
    flex-shrink: 0;
}

.classic-style .line-deco {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.6;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    align-items: center;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-out;
    cursor: grab;
    touch-action: pan-y;
}

.slider-wrapper:active {
    cursor: grabbing;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    /* Neue Animationen für den Coverflow-Effekt: */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    opacity: 0.3;
    transform: scale(0.85);
}

.slide.active-slide {
    opacity: 1;
    transform: scale(1);
}

.slide-content {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.slide-img-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: right;
    display: block;
    text-decoration: none;
}

.slide-img-container.clickable {
    cursor: pointer;
}

.slide-img-container.not-ready {
    cursor: default;
}

.slide-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(-20px 20px 30px rgba(0, 0, 0, 0.6));
    display: block;
    transition: opacity 0.6s ease-in-out;
}

.img-default {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.img-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.slide-img-container.clickable:hover .img-default {
    opacity: 0;
}

.slide-img-container.clickable:hover .img-hover {
    opacity: 1;
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    background-color: #f1c40f;
    color: #2c0e0e;
    padding: 10px 30px;
    font-family: 'Carter One', cursive;
    font-size: 1.5rem;
    border: 2px dashed #2c0e0e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
    white-space: nowrap;
}

.slide-info {
    text-align: left;
    color: var(--accent-color);
    padding-right: 20px;
}

.slide-title {
    font-family: 'Carter One', cursive;
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.slide-divider {
    border: 0;
    height: 2px;
    background: var(--accent-color);
    width: 100px;
    margin: 15px 0;
    opacity: 0.6;
}

.slide-meta {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: block;
}

.slide-player-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    max-width: 550px;
    /* Begrenzt die Breite am Desktop auf ein schönes Maß */
}

.slide-player-box audio {
    width: 250px !important;
}

.slide-player-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 700;
}

.player-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.link-zum-fall {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.link-zum-fall:hover {
    border-bottom-color: var(--accent-color);
}

.slider-btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s;
    display: inline-block;
    text-align: center;
}

.btn-blue {
    background-color: var(--danger);
    color: #fff;
    box-shadow: 0 5px 15px rgba(138, 28, 28, 0.4);
    border: 1px solid var(--danger);
}

.btn-blue:hover {
    background-color: #a32222;
    border-color: #a32222;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 28, 28, 0.6);
}

.btn-trans {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-trans:hover {
    background-color: rgba(235, 220, 193, 0.1);
    transform: translateY(-2px);
}

.btn-row {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--accent-color);
    font-size: 2rem;
    user-select: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(235, 220, 193, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
}

.slider-arrow:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(235, 220, 193, 0.4);
}

.arrow-prev {
    left: 20px;
}

.arrow-next {
    right: 20px;
}

.slide-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
    animation: floatClouds 15s infinite ease-in-out alternate;
}


/* =========================================
   SEITE: EIN STURM ZIEHT AUF KAUF (PRODUKTSEITE)
   ========================================= */
.product-hero {
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.ph-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ph-content h1 {
    font-family: 'Abril Fatface', serif;
    font-size: 4rem;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 #000;
}

.ph-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(235, 220, 193, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-tag {
    font-family: 'Carter One', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    display: block;
}

.btn-buy {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 5px 20px rgba(235, 220, 193, 0.3);
}

.btn-buy:hover {
    transform: translateY(-3px);
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(235, 220, 193, 0.5);
}

.btn-companion {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: rgba(235, 220, 193, 0.6);
    text-decoration: none;
    border: 1px solid rgba(235, 220, 193, 0.2);
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: max-content;
    background: rgba(0, 0, 0, 0.2);
}

.btn-companion:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(235, 220, 193, 0.1);
    transform: translateY(-2px);
}

.ph-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

/* Galerie */
.gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    perspective: 1000px;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    border-radius: 20px;
    z-index: 5;
}

.gallery-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(235, 220, 193, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9) translateX(20px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    pointer-events: none;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 2;
    pointer-events: auto;
    cursor: zoom-in;
}

.gallery-slide img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
    user-select: none;
    -webkit-user-drag: none;
}

.gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(235, 220, 193, 0.6);
    border: 1px solid rgba(235, 220, 193, 0.2);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.gal-arrow:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(235, 220, 193, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.gal-prev {
    left: -20px;
}

.gal-next {
    right: -20px;
}

.btn-show-all {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(0, 50%);
    background: #1a0505;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 20;
    display: flex;
    gap: 8px;
    align-items: center;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-show-all:hover {
    background: var(--accent-color);
    color: #2c0e0e;
    transform: translate(0, 50%) translateY(-3px);
}

/* Modals */
.gallery-modal,
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(20, 5, 5, 0.98);
    overflow-y: auto;
    padding: 80px 20px;
    animation: fadeIn 0.3s ease;
}

.gallery-modal.open {
    display: block;
}

.lightbox-modal {
    z-index: 3000;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.lightbox-modal.open {
    display: flex;
}

.modal-grid-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.modal-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
}

.modal-img:hover {
    transform: scale(1.03);
    border-color: #ebdcc1;
}

.close-modal {
    position: fixed;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #ebdcc1;
    font-size: 3rem;
    cursor: pointer;
    z-index: 3001;
    transition: transform 0.2s;
}

.close-modal:hover {
    transform: scale(1.1);
    color: #fff;
}

.lightbox-img {
    max-width: 95%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    user-select: none;
    transition: opacity 0.2s ease;
}

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 20px;
    user-select: none;
    z-index: 3002;
    transition: color 0.2s;
}

.lb-arrow:hover {
    color: #fff;
}

.lb-prev {
    left: 10px;
}

.lb-next {
    right: 10px;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #1f2533 0%, #0b1016 100%);
    padding: 100px 20px;
    position: relative;
    z-index: 10;
    border-top: 5px solid rgba(0, 0, 0, 0.2);
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    color: var(--accent-dark);
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.story-title {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 40px;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d0d5dd;
    margin-bottom: 40px;
}

.story-section .audio-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: auto;
    box-shadow: none;
    margin-bottom: 0;
}

.story-section .audio-wrapper audio {
    width: 250px !important;
}

/* Charaktere Grid */
.char-section {
    padding: 100px 20px;
    background: var(--bg-color);
    z-index: 10;
    position: relative;
}

.char-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
}

.char-card {
    background: rgba(30, 5, 5, 0.6);
    border: 1px solid rgba(235, 220, 193, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.char-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.char-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(235, 220, 193, 0.1);
    cursor: pointer;
}

.char-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease, filter 0.3s;
}

.char-img-box::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 10px #000;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.char-img-box:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.char-img-box:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.char-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.char-name {
    font-family: 'Carter One', cursive;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
    line-height: 1.2;
}

.char-job {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(235, 220, 193, 0.6);
    margin-bottom: 15px;
    font-weight: 700;
}

.char-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #e0e0e0;
}

.npc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ebdcc1;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid rgba(235, 220, 193, 0.3);
    z-index: 2;
}

.char-toggle-btn {
    display: none;
    margin: 40px auto 0 auto;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.char-toggle-btn:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

/* Details Section */
.details-section {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 80px 20px;
    position: relative;
    z-index: 10;
}

.details-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    text-align: center;
}

.detail-item h3 {
    font-family: 'Carter One', cursive;
    font-size: 1.5rem;
    margin-bottom: 10px;
}


/* =========================================
   SEITEN: AUDIO PLAYERS (INTRO / AUFLÖSUNG)
   ========================================= */
.player-container,
.resolution-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 150px 20px 50px 20px;
    text-align: center;
}

.intro-card,
.resolution-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(235, 220, 193, 0.2);
    padding: 50px 30px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    transform: translateY(0);
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-card {
    background: rgba(44, 14, 14, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Auflösung Spezial-Style */
.resolution-card {
    background: rgba(20, 5, 5, 0.85);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    transition: filter 0.5s ease;
    position: relative;
    overflow: hidden;
}

.resolution-card h1 {
    font-family: 'Abril Fatface', serif;
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

.resolution-card .subtitle {
    font-family: 'Kaushan Script', cursive;
    color: var(--danger);
    font-size: 1.8rem;
    margin-bottom: 40px;
    display: block;
    transform: rotate(-2deg);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 1);
}

.resolution-card .instruction {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    text-align: left;
    display: inline-block;
}

.resolution-card.blurred>*:not(.spoiler-gate) {
    filter: blur(15px);
    opacity: 0.3;
    pointer-events: none;
    user-select: none;
}

.spoiler-gate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 20;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.5s ease, visibility 0.5s;
}

.spoiler-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spoiler-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: pulseRed 2s infinite;
}

.spoiler-title {
    font-family: 'Carter One';
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spoiler-text {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 80%;
    line-height: 1.5;
}

.btn-reveal {
    background: var(--danger);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(138, 28, 28, 0.4);
    transition: all 0.3s;
}

.btn-reveal:hover {
    transform: scale(1.05);
    background: #a32222;
    box-shadow: 0 0 30px rgba(163, 34, 34, 0.6);
}

@keyframes pulseRed {
    0% {
        text-shadow: 0 0 5px var(--danger);
    }

    50% {
        text-shadow: 0 0 20px var(--danger);
    }

    100% {
        text-shadow: 0 0 5px var(--danger);
    }
}

/* Intro Card Details */
.intro-card h1 {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1.1;
}

.intro-card .subtitle {
    font-family: 'Kaushan Script', cursive;
    color: #d35400;
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: block;
    transform: rotate(-2deg);
}

.intro-card .instruction {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Custom Player Wrapper Styling auf der Intro-Seite */
.intro-card .audio-wrapper {
    background: #1a0505;
    padding: 15px 25px;
    /* Etwas schlanker und eleganter */
    border-radius: 50px;
    border: 1px solid rgba(235, 220, 193, 0.3);
    /* Feinerer Rand */
    display: flex;
    /* Flexbox für die Elemente auf einer Linie */
    align-items: center;
    gap: 15px;
    /* Abstand zwischen Button, Welle und Linie */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    margin-bottom: 30px;
}

.intro-card .audio-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    /* Leuchtet beim Hovern etwas mehr */
}

.resolution-card .audio-wrapper {
    background: #0a0101;
    padding: 20px;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}



/* Transcript */
.transcript-toggle {
    background: transparent;
    border: 1px solid rgba(235, 220, 193, 0.3);
    color: rgba(235, 220, 193, 0.7);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px auto 0 auto;
}

.transcript-toggle:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(235, 220, 193, 0.05);
}

.transcript-toggle.active {
    background: var(--accent-color);
    color: var(--text-dark);
}

.transcript-container {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    margin-top: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.transcript-container.open {
    max-height: 600px;
    opacity: 1;
    margin-top: 20px;
    border: 1px dashed rgba(235, 220, 193, 0.3);
    padding: 25px;
    overflow-y: auto;
}

.transcript-text {
    color: #d6c4a5;
    font-size: 0.95rem;
    line-height: 1.7;
    font-family: 'Open Sans', sans-serif;
}

.resolution-card .transcript-text strong {
    color: #fff;
}

.transcript-label-small {
    display: block;
    font-family: 'Carter One', cursive;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(235, 220, 193, 0.1);
    padding-bottom: 5px;
}

.footer-note {
    margin-top: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    z-index: 10;
    text-align: center;
    padding-bottom: 20px;
}

.footer-note a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-color);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-note a:hover {
    opacity: 1;
}


/* =========================================
   SEITE: ANLEITUNG
   ========================================= */
.page-hero {
    padding-top: 180px;
    padding-bottom: 80px;
    text-align: center;
    background: radial-gradient(circle at top, #5e0b0f 0%, #290506 70%);
    position: relative;
    z-index: 2;
}

.hero-pre-title {
    font-family: 'Kaushan Script', cursive;
    color: #d35400;
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-family: 'Abril Fatface', serif;
    font-size: 4.5rem;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: slideUp 1s ease-out;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero~.content-section {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    min-height: auto;
    text-align: left;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: rgba(235, 220, 193, 0.2);
    transform: translateX(-50%);
    border-radius: 2px;
}

.step-item {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 60px;
    position: relative;
    width: 50%;
}

.step-item:nth-child(odd) {
    align-self: flex-start;
    text-align: right;
    padding-right: 40px;
}

.step-item:nth-child(even) {
    align-self: flex-end;
    text-align: left;
    padding-left: 40px;
    margin-left: 50%;
    justify-content: flex-start;
}

.step-dot {
    position: absolute;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid #2c0e0e;
    z-index: 2;
}

.step-item:nth-child(odd) .step-dot {
    right: -12px;
}

.step-item:nth-child(even) .step-dot {
    left: -12px;
}

.step-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(235, 220, 193, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.step-number {
    font-family: 'Carter One', cursive;
    font-size: 3rem;
    color: rgba(235, 220, 193, 0.1);
    position: absolute;
    top: 10px;
    line-height: 1;
    pointer-events: none;
}

.step-item:nth-child(odd) .step-number {
    right: 20px;
}

.step-item:nth-child(even) .step-number {
    left: 20px;
}

.step-title {
    font-family: 'Abril Fatface', serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.step-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #eee;
}

/* Box Grid */
.box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.box-item {
    text-align: center;
    background: rgba(28, 30, 79, 0.4);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.box-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.box-label {
    font-family: 'Carter One', cursive;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.cta-btn-large {
    display: inline-block;
    margin-top: 50px;
    background: var(--accent-color);
    color: #2c0e0e;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

.cta-btn-large:hover {
    transform: scale(1.05);
    background: #fff;
}


/* =========================================
   SEITE: Q & A
   ========================================= */
.qa-hero {
    padding-top: 180px;
    padding-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.qa-title {
    font-family: 'Abril Fatface', serif;
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.qa-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.faq-item {
    background: rgba(44, 14, 14, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(235, 220, 193, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(235, 220, 193, 0.4);
    background: rgba(44, 14, 14, 0.6);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    user-select: none;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    line-height: 1.7;
    color: rgba(235, 220, 193, 0.9);
    font-size: 1rem;
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--accent-color);
    color: var(--text-dark);
}

.cursive-highlight {
    font-family: 'Kaushan Script', cursive;
    color: #d35400;
}

.contact-hint {
    text-align: center;
    margin-top: 60px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-hint a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-color);
}


/* =========================================
   SEITE: IMPRESSUM
   ========================================= */
#impressum-wrap {
    position: relative;
    z-index: 5;
    padding-top: 180px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(44, 14, 14, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(235, 220, 193, 0.2);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.page-title {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.legal-block {
    margin-bottom: 30px;
    border-bottom: 1px dotted rgba(235, 220, 193, 0.3);
    padding-bottom: 20px;
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-block h2 {
    font-family: 'Carter One', cursive;
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.legal-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.legal-block a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.legal-block a:hover {
    border-bottom-color: var(--accent-color);
}


/* =========================================
   SEITEN: FEEDBACK / WARTELISTE / ABMELDEN
   ========================================= */
.unsubscribe-section,
.waitlist-section {
    position: relative;
    z-index: 5;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 60px 20px;
    text-align: center;
}

.content-section:has(.content-container) {
    position: relative;
    z-index: 5;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 60px 20px;
    text-align: center;
    background: transparent;
    border-top: none;
}

.wl-container,
.content-container {
    max-width: 800px;
    width: 100%;
    background: rgba(44, 14, 14, 0.6);
    border: 1px solid rgba(235, 220, 193, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: slideUpFade 0.8s ease-out;
}

.wl-heading,
.main-heading {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1.1;
}

.wl-sub,
.sub-heading {
    font-family: 'Kaushan Script', cursive;
    color: #d35400;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.wl-intro,
.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.important-note {
    background: rgba(241, 196, 15, 0.1);
    border-left: 4px solid #f1c40f;
    color: #fff;
    padding: 15px;
    text-align: left;
    margin-bottom: 40px;
    border-radius: 0 10px 10px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.action-button {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    border: none;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(235, 220, 193, 0.4);
    background: #fff;
}

.copy-card {
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.copy-card .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 5px;
    font-weight: 800;
}

.copy-card .value {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    word-break: break-all;
}

.copy-card .value-small {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.copy-icon {
    font-size: 1.2rem;
    opacity: 0.5;
}

.copy-message {
    position: absolute;
    right: 20px;
    top: -30px;
    background: #27ae60;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s, top 0.3s;
    pointer-events: none;
}

.copy-message.show {
    opacity: 1;
    top: -10px;
}

.manual-steps {
    text-align: left;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.manual-section-title {
    text-align: left;
    font-family: 'Carter One', cursive;
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.step-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: start;
}

.step-num {
    background: var(--accent-color);
    color: var(--text-dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    flex-shrink: 0;
}

.step-text {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.back-btn {
    display: inline-block;
    margin-top: 30px;
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.back-btn:hover {
    border-bottom-color: var(--accent-color);
}

/* --- LINK ZUR PRODUKTSEITE UNTER DEN TRAILERN --- */
.trailer-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
    padding-top: 15px;
    border-top: 1px dashed rgba(235, 220, 193, 0.15);
    /* Feine Trennlinie */
    font-size: 0.9rem;
}

.trailer-teaser-text {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    line-height: 1;
    /* Verhindert zusätzlichen Abstand durch Zeilenhöhe */
}

.trailer-action-row .link-zum-fall {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* === MEDIEN ABFRAGEN FÜR UNTERSEITEN (UND SLIDER) === */
@media (max-width: 900px) {

    /* --- STARTSEITE: MISSION --- */
    .mission-container {
        flex-direction: column;
        gap: 60px;
    }

    .mission-right {
        border-left: none;
        padding-left: 0;
        text-align: center;
        border-top: 3px dotted rgba(255, 255, 255, 0.3);
        padding-top: 40px;
    }

    .big-serif {
        font-size: 2.5rem;
    }

    .mission-product-img {
        width: 50%;
        margin-bottom: 20px;
    }

    .mission-bg-decorative {
        width: 100%;
        left: -40%;
        bottom: -10%;
        opacity: 0.1;
    }

    /* --- STARTSEITE: TRAILER --- */
    .trailer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trailer-heading {
        font-size: 2.2rem;
        text-align: center;
    }

    .trailer-display {
        min-height: auto;
        margin-top: 20px;
        padding-bottom: 20px;
        display: block;
    }

    .trailer-dynamic-content {
        display: none;
    }

    .all-trailers-btn {
        position: static;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        transform: none;
    }

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

    /* --- PRODUKT SEITE --- */
    .ph-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gallery-wrapper {
        max-width: 100%;
        margin-bottom: 50px;
        order: -1;
    }

    .gal-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        opacity: 0.8;
    }

    .gal-prev {
        left: 0px;
    }

    .gal-next {
        right: 0px;
    }

    .btn-show-all {
        right: 50%;
        transform: translate(50%, 50%);
        width: max-content;
    }

    .btn-show-all:hover {
        transform: translate(50%, 50%) translateY(-3px);
    }

    .lb-arrow {
        font-size: 2rem;
        padding: 10px;
    }

    .lb-prev {
        left: 0;
    }

    .lb-next {
        right: 0;
    }

    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 2.5rem;
    }

    .ph-badges {
        justify-content: center;
    }

    .ph-content h1 {
        font-size: 3.5rem;
    }

    .ph-desc {
        margin: 0 auto 30px auto;
    }

    .char-grid.collapsed .char-card:nth-child(n+3) {
        display: none;
    }

    .char-toggle-btn {
        display: block;
    }

    /* --- ANLEITUNG MOBILE --- */
    .page-hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .timeline::before {
        left: 20px;
    }

    .step-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0 !important;
        margin-left: 0 !important;
        text-align: left !important;
    }

    .step-item:nth-child(odd) {
        align-self: flex-start;
    }

    .step-dot {
        left: 8px !important;
    }

    .step-number {
        right: 20px !important;
        left: auto !important;
    }

    /* --- SLIDER MOBILE --- */
    #krimi-slider-section {
        padding: 60px 0; /* Weniger Padding an den Seiten, damit die Slides mehr Platz haben */
        min-height: auto;
    }

    /* 1. Den 3D-Effekt für Handys sanfter machen */
    .slide {
        transform: scale(0.95); /* Nicht so stark verkleinern wie auf dem Desktop */
        opacity: 0.4;
        padding: 0 15px; /* Ein bisschen Luft an den Seiten */
    }
    
    .slide.active-slide {
        transform: scale(1);
        opacity: 1;
    }

    .static-title.classic-style {
        width: 95%;
        gap: 15px;
        margin-top: 0px;
        margin-bottom: 30px;
    }

    .classic-style .title-center {
        font-size: 2rem; /* Noch ein kleines bisschen kompakter für kleine Bildschirme */
        letter-spacing: 2px;
    }

    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px; /* Reduziert von 40px, damit man nicht so viel scrollen muss */
    }

    .slide-img-container {
        transform: none;
        text-align: center;
        margin: 0 auto;
        max-width: 200px; /* Minimal kleiner, damit die Pfeile links und rechts Platz haben */
    }

    .slide-img {
        width: 100%;
        filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.5));
    }

    .slide-info {
        text-align: center;
        padding-right: 0;
        padding: 0 10px;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-divider {
        margin: 15px auto;
    }

    .slide-meta {
        margin: 0 auto 25px auto;
    }

    .slide-player-box {
        margin: 0 auto 30px auto; /* Zentriert die kompakte Box auf dem Handy */
    }

    .player-actions {
        justify-content: center;
    }

    .btn-row {
        flex-direction: column;
        gap: 15px;
    }

    .slider-btn {
        width: 100%;
    }

    /* 2. Pfeile optimal positionieren */
    .slider-arrow {
        display: flex;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        /* Wir platzieren die Pfeile auf Höhe des Bildes (ca. obere Hälfte) */
        top: 250px; 
        bottom: auto;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.4); /* Etwas dunkler für besseren Kontrast auf Mobile */
        backdrop-filter: blur(5px);
        border: 1px solid rgba(235, 220, 193, 0.2);
    }

    /* Pfeile ganz an den Bildschirmrand kleben, damit sie den Inhalt nicht verdecken */
    .arrow-prev {
        left: 0;
        border-radius: 0 50% 50% 0; /* Nur rechts abgerundet */
        border-left: none;
    }

    .arrow-next {
        right: 0;
        border-radius: 50% 0 0 50%; /* Nur links abgerundet */
        border-right: none;
    }
}
@media (max-width: 768px) {
    .content-box {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .intro-card h1 {
        font-size: 2.2rem;
    }

    .ph-content h1 {
        font-size: 3.2rem;
    }

    .intro-card,
    .resolution-card {
        padding: 30px 20px;
    }

    .resolution-card h1 {
        font-size: 2.5rem;
    }

    .resolution-card .subtitle {
        font-size: 1.4rem;
    }

    .spoiler-icon {
        font-size: 2.5rem;
    }

    .spoiler-title {
        font-size: 1.5rem;
    }

    .wl-container,
    .content-container {
        padding: 30px 20px;
    }

    .wl-heading,
    .main-heading {
        font-size: 2.2rem;
    }

    .copy-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .copy-icon {
        align-self: flex-end;
        margin-top: -30px;
    }

    .char-section .brand-name {
        font-size: 1.8rem !important; /* Etwas kleiner */
        white-space: normal; /* Erlaubt den Zeilenumbruch! */
        line-height: 1.2;
    }
}

/* =========================================
   SIDEBAR DROPDOWN OPTIMIERUNG (Schubladen-Effekt)
   ========================================= */

/* 1. Entfernt die störende innere, beige Box */
.sidebar-menu .dropdown-content {
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* 2. Macht das Dropdown zu einer weichen, tiefen Schublade */
.sidebar-menu .dropdown-menu {
    background: rgba(0, 0, 0, 0.04) !important;
    /* Sehr weiches, transparentes Grau */
    box-shadow: inset 0px 8px 15px rgba(0, 0, 0, 0.03) !important;
    /* Leichter Innenschatten oben */
    border-radius: 0 0 15px 15px !important;
    border: none !important;
}

/* 3. Entfernt die harte Linie unter "Krimidinner", wenn es ausgeklappt ist */
.sidebar-menu .nav-item.has-dropdown.active>.nav-link {
    border-bottom-color: transparent !important;
}

/* 4. Sub-Menü Punkte einrücken für bessere Übersichtlichkeit (Hierarchie) */
.sidebar-menu .dropdown-menu a {
    padding: 12px 20px 12px 40px !important;
    /* Links weiter eingerückt */
    border-bottom: none !important;
    transition: background 0.2s, padding-left 0.2s !important;
}

/* 5. Eleganter Hover-Effekt: Element rutscht beim Drüberfahren minimal nach rechts */
.sidebar-menu .dropdown-menu a:hover {
    background-color: rgba(44, 14, 14, 0.04) !important;
    padding-left: 45px !important;
}

/* Stoppt anstrengende Animationen im Stromsparmodus oder bei schwachen Geräten */
@media (prefers-reduced-motion: reduce) {
    .fog-cloud {
        animation: none !important;
    }
}