<style>
/* ========================================
   MASTER FILM HOOK v9.3 - COMPLETE
   ======================================== */

/* CSS Variables */
#<?php echo $unique_id; ?> {
    --primary: #3b82f6;
    --secondary: #8b5cf6;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #1e293b;
    --light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth !important;
    scroll-padding-top: 100px !important;
}

/* Overrides */
html body.single-post div#page #primary .entry-content {
    display: none !important;
}

html body.single-post div#page #primary .featured-image,
html body.single-post div#page #primary .post-thumbnail {
    display: none !important;
}

/* Reading Progress Bar */
#<?php echo $unique_id; ?>-progress {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: rgba(226, 232, 240, 0.3) !important;
    z-index: 9999 !important;
}

#<?php echo $unique_id; ?> .mfh-progress-bar {
    height: 100% !important;
    background: linear-gradient(90deg, var(--primary), var(--secondary)) !important;
    width: 0% !important;
    transition: width 0.3s ease !important;
}

/* Quick Answer Box */
#<?php echo $unique_id; ?> .mfh-quick-answer {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    border-radius: 20px !important;
    padding: 25px !important;
    margin: 0 auto 30px !important;
    max-width: 1400px !important;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15) !important;
    border-left: 5px solid #f59e0b !important;
}

/* Inhaltsverzeichnis */
#<?php echo $unique_id; ?> .mfh-toc {
    background: white !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 25px !important;
    margin: 30px auto !important;
    max-width: 1400px !important;
    box-shadow: var(--shadow-sm) !important;
}

#<?php echo $unique_id; ?> .mfh-toc-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 12px !important;
}

#<?php echo $unique_id; ?> .mfh-toc-item a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 15px !important;
    background: #f8fafc !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    color: #475569 !important;
    transition: all 0.3s ease !important;
}

#<?php echo $unique_id; ?> .mfh-toc-item a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    transform: translateX(5px) !important;
}

/* Hero Section */
#<?php echo $unique_id; ?> .mfh-hero {
    position: relative !important;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    min-height: 450px !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 100%) !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
    padding: 40px 0 !important;
}

#<?php echo $unique_id; ?> .mfh-hero::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.1) 0%, transparent 50%) !important;
    animation: heroGradient 20s ease infinite !important;
}

@keyframes heroGradient {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes pulseShadow {
    0%, 100% { box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5); }
    50% { box-shadow: 0 15px 40px rgba(245, 158, 11, 0.7); }
}

#<?php echo $unique_id; ?> .mfh-hero-backdrop {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0.15 !important;
    filter: blur(8px) !important;
}

#<?php echo $unique_id; ?> .mfh-hero-container {
    position: relative !important;
    z-index: 2 !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: flex !important;
    gap: 40px !important;
    padding: 0 40px !important;
    align-items: center !important;
}

/* Poster */
#<?php echo $unique_id; ?> .mfh-poster-wrap {
    position: relative !important;
    width: 240px !important;
    height: 360px !important;
    flex-shrink: 0 !important;
}

#<?php echo $unique_id; ?> .mfh-poster-inner {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4) !important;
    transition: transform 0.6s ease !important;
}

#<?php echo $unique_id; ?> .mfh-poster-inner:hover {
    transform: scale(1.02) !important;
}

#<?php echo $unique_id; ?> .mfh-poster-inner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

#<?php echo $unique_id; ?> .mfh-poster-rating {
    position: absolute !important;
    top: -15px !important;
    right: -15px !important;
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #f59e0b, #dc2626) !important;
    border-radius: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5) !important;
    border: 3px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    animation: pulseShadow 2s ease infinite !important;
}

/* Hero Content */
#<?php echo $unique_id; ?> .mfh-hero-content {
    flex: 1 !important;
    color: white !important;
    display: flex !important;
    flex-direction: column !important;
}

#<?php echo $unique_id; ?> .mfh-title {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 10px !important;
    background: linear-gradient(135deg, #ffffff, #cbd5e1) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Info Buttons */
#<?php echo $unique_id; ?> .mfh-info-buttons {
    display: flex !important;
    gap: 12px !important;
    margin-top: 20px !important;
    flex-wrap: wrap !important;
}

#<?php echo $unique_id; ?> .mfh-info-btn {
    background: var(--glass) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    min-height: 44px !important;
}

#<?php echo $unique_id; ?> .mfh-info-btn:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

#<?php echo $unique_id; ?> .mfh-info-btn.trailer-link {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.3)) !important;
}

/* Content Layout */
#<?php echo $unique_id; ?> .mfh-content-wrapper {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 40px 60px !important;
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 50px !important;
}

/* Sections */
#<?php echo $unique_id; ?> .mfh-section {
    background: white !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06) !important;
    position: relative !important;
    overflow: hidden !important;
}

#<?php echo $unique_id; ?> .mfh-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--primary), var(--secondary)) !important;
}

#<?php echo $unique_id; ?> .mfh-section-header {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
    padding-bottom: 20px !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05) !important;
}

#<?php echo $unique_id; ?> .mfh-section-icon {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    border-radius: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    flex-shrink: 0 !important;
}

#<?php echo $unique_id; ?> .mfh-section-title {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
}

/* Cast Grid */
#<?php echo $unique_id; ?> .mfh-cast-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 25px !important;
}

#<?php echo $unique_id; ?> .mfh-cast-card {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    border-left: 4px solid #10b981 !important;
    transition: all 0.3s ease !important;
}

#<?php echo $unique_id; ?> .mfh-cast-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15) !important;
}

/* Trivia - Verbesserte Darstellung */
#<?php echo $unique_id; ?> .mfh-trivia-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-top: 25px !important;
}

#<?php echo $unique_id; ?> .mfh-trivia-item {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    padding: 20px !important;
    border-radius: 16px !important;
    border-left: 5px solid #f59e0b !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1) !important;
}

#<?php echo $unique_id; ?> .mfh-trivia-item:hover {
    transform: translateX(5px) !important;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2) !important;
}

#<?php echo $unique_id; ?> .mfh-trivia-icon {
    font-size: 1.8rem !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

#<?php echo $unique_id; ?> .mfh-trivia-text {
    color: #92400e !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    flex: 1 !important;
}

/* Pros & Cons */
#<?php echo $unique_id; ?> .mfh-pros-cons {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    margin: 30px 0 !important;
}

#<?php echo $unique_id; ?> .mfh-pros,
#<?php echo $unique_id; ?> .mfh-cons {
    background: white !important;
    border-radius: 16px !important;
    padding: 25px !important;
    border: 2px solid !important;
}

#<?php echo $unique_id; ?> .mfh-pros {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7) !important;
    border-color: #22c55e !important;
}

#<?php echo $unique_id; ?> .mfh-cons {
    background: linear-gradient(135deg, #fef2f2, #fee2e2) !important;
    border-color: #ef4444 !important;
}

/* FAQ */
#<?php echo $unique_id; ?> .mfh-faq-accordion {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 20px !important;
}

#<?php echo $unique_id; ?> .mfh-faq-item {
    background: white !important;
    border-radius: 16px !important;
    border: 2px solid #e2e8f0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

#<?php echo $unique_id; ?> .mfh-faq-item.active {
    border-color: var(--primary) !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15) !important;
}

#<?php echo $unique_id; ?> .mfh-faq-question {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 20px 25px !important;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9) !important;
    cursor: pointer !important;
    user-select: none !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    transition: all 0.3s ease !important;
}

#<?php echo $unique_id; ?> .mfh-faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.5s ease, padding 0.3s ease !important;
    padding: 0 25px !important;
    color: #64748b !important;
    line-height: 1.7 !important;
}

#<?php echo $unique_id; ?> .mfh-faq-item.active .mfh-faq-answer {
    max-height: 500px !important;
    padding: 20px 25px 25px !important;
}

/* User Rating */
#<?php echo $unique_id; ?> .mfh-user-rating {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    padding: 30px !important;
    border-radius: 16px !important;
    text-align: center !important;
    margin: 40px auto !important;
    max-width: 600px !important;
}

#<?php echo $unique_id; ?> .mfh-star-rating {
    font-size: 40px !important;
    margin: 20px 0 !important;
    cursor: pointer !important;
}

#<?php echo $unique_id; ?> .mfh-star-rating .star {
    color: #e5e7eb !important;
    transition: color 0.2s !important;
    cursor: pointer !important;
}

#<?php echo $unique_id; ?> .mfh-star-rating .star:hover,
#<?php echo $unique_id; ?> .mfh-star-rating .star.active {
    color: #fbbf24 !important;
}

/* Sidebar */
#<?php echo $unique_id; ?> .mfh-sidebar {
    position: sticky !important;
    top: 100px !important;
    height: fit-content !important;
}

#<?php echo $unique_id; ?> .mfh-sidebar-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 25px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #f1f5f9 !important;
    transition: all 0.3s ease !important;
}

/* Responsive */
@media (max-width: 992px) {
    #<?php echo $unique_id; ?> .mfh-hero {
        min-height: 450px !important;
    }
    
    #<?php echo $unique_id; ?> .mfh-hero-container {
        flex-direction: column !important;
        padding: 30px 20px !important;
    }
    
    #<?php echo $unique_id; ?> .mfh-hero-content {
        text-align: center !important;
    }
    
    #<?php echo $unique_id; ?> .mfh-content-wrapper {
        grid-template-columns: 1fr !important;
    }
    
    #<?php echo $unique_id; ?> .mfh-sidebar {
        position: static !important;
    }
    
    #<?php echo $unique_id; ?> .mfh-cast-grid {
        grid-template-columns: 1fr !important;
    }
    
    #<?php echo $unique_id; ?> .mfh-pros-cons {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    #<?php echo $unique_id; ?> .mfh-info-buttons {
        flex-direction: column !important;
    }
    
    #<?php echo $unique_id; ?> .mfh-info-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    #<?php echo $unique_id; ?> .mfh-toc-list {
        grid-template-columns: 1fr !important;
    }
}
</style>