 :root {
            --red: #e8210a;
            --gold: #c9a84c;
            --bg: #050505;
            --card: #111111;
            --border: #1a1a1a;
            --text: #d4d4d4;
            --font-display: 'Bebas Neue', sans-serif;
            --font-body: 'Barlow', sans-serif;
            --max-w: 1300px;
        }

        /* RESET */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; }

        /* HEADER */
        .site-header { background: #000; border-bottom: 2px solid var(--red); padding: 15px 0; position: sticky; top: 0; z-index: 2000; box-shadow: 0 5px 25px rgba(0,0,0,0.9); }
        .header-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; }
        /* FIX: logo uses span consistently (was <em>) */
        .logo { font-family: var(--font-display); font-size: 2.2rem; color: #fff; text-decoration: none; letter-spacing: 1.5px; text-transform: uppercase; }
        .logo span { color: var(--red); }
        .header-nav { display: flex; gap: 10px; }
        .header-nav a { color: #fff; text-decoration: none; font-family: var(--font-display); font-size: 1.1rem; padding: 8px 16px; background: #111; border: 1px solid #333; border-radius: 4px; transition: 0.2s; }
        .header-nav a:hover, .header-nav a.active { background: var(--red); border-color: var(--red); }

        /* HERO */
        .hero { text-align: center; padding: 60px 20px 40px; background: radial-gradient(circle at top, #2a0000 0%, #050505 100%); }
        .hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 7vw, 5rem); color: #fff; margin: 0 auto 10px; line-height: 1.1; text-transform: uppercase; max-width: 950px; }
        .hero h1 span { color: var(--red); }
        .hero p { color: var(--gold); font-weight: 800; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 3px; }

        /* MAIN WRAPPER */
        .movie-single-wrapper { max-width: 1000px; margin: 0 auto 50px; padding: 0 20px; }

        /* VIDEO PLAYER */
        .video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; border: 2px solid var(--border); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.8); margin-bottom: 15px; }
        .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

        /* REPORT SYSTEM */
        .report-wrapper { text-align: center; margin-bottom: 30px; }
        .report-toggle-btn { background: transparent; border: 1px solid #333; color: #888; padding: 8px 20px; border-radius: 20px; cursor: pointer; font-family: var(--font-display); font-size: 1.1rem; transition: 0.3s; letter-spacing: 1px; }
        .report-toggle-btn:hover { border-color: var(--red); color: #fff; background: var(--red); }
        .report-form-container { display: none; background: #111; border: 1px solid var(--border); border-radius: 10px; padding: 20px; margin-top: 15px; text-align: left; max-width: 600px; margin-left: auto; margin-right: auto; }
        .report-form-container h3 { font-family: var(--font-display); color: #fff; font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 5px; }
        .report-form-container > p { color: #aaa; font-size: 0.9rem; margin-bottom: 15px; }
        .form-group { margin-bottom: 15px; }
        .form-group label { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 5px; font-weight: 600; }
        .form-group label .req { color: var(--red); }
        .report-input { width: 100%; padding: 12px 15px; background: #0f0f0f; border: 1px solid #2a2a2a; border-radius: 6px; color: #fff; font-family: var(--font-body); font-size: 0.95rem; outline: none; transition: border-color 0.2s; }
        .report-input:focus { border-color: var(--red); }
        .report-input[readonly] { background: #1a1a1a; color: #888; cursor: not-allowed; }
        textarea.report-input { resize: vertical; }
        .error-msg { display: none; color: var(--red); font-size: 0.8rem; font-weight: 600; margin-top: 5px; }
        .error-msg.visible { display: block; }
        .checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
        .checkbox-group input[type="checkbox"] { margin-top: 4px; accent-color: var(--red); width: 18px; height: 18px; cursor: pointer; flex-shrink: 0; }
        .checkbox-group label { color: #aaa; font-size: 0.9rem; cursor: pointer; line-height: 1.4; }
        .checkbox-group label a { color: var(--gold); text-decoration: none; font-weight: bold; }
        .report-submit-btn { display: block; width: 100%; padding: 14px; background: var(--red); color: #fff; border: none; font-family: var(--font-display); font-size: 1.2rem; cursor: pointer; border-radius: 6px; transition: 0.3s; letter-spacing: 1px; margin-top: 20px; }
        .report-submit-btn:hover { background: #fff; color: #000; }
        .report-success { display: none; color: var(--gold); margin-top: 20px; text-align: center; font-weight: bold; font-size: 1.1rem; border: 1px solid var(--gold); padding: 15px; border-radius: 6px; background: rgba(201,168,76,0.1); }

        /* MOVIE DETAILS BOX */
        .movie-details-box { background: #111; border: 1px solid var(--border); border-radius: 12px; padding: 30px; margin-bottom: 40px; }
        .rating-badge { display: inline-flex; align-items: center; gap: 5px; background: var(--gold); color: #000; font-weight: 800; padding: 5px 12px; border-radius: 20px; font-size: 0.9rem; margin-bottom: 20px; text-transform: uppercase; }
        .plot-summary { font-size: 1.15rem; color: #eee; line-height: 1.6; margin-bottom: 25px; border-left: 4px solid var(--red); padding-left: 15px; }
        .meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; border-top: 1px solid #222; padding-top: 20px; }
        .meta-title { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; display: block; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
        .meta-content { color: #fff; font-size: 1rem; }
        .share-container { margin-top: 25px; text-align: center; }

        /* PROSE (SEO TEXT) */
        .prose { background: #0a0a0a; border: 1px solid var(--border); border-radius: 15px; padding: 45px; position: relative; text-align: left; margin-bottom: 40px; }
        .prose::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); border-radius: 15px 15px 0 0; }
        .prose h2 { font-family: var(--font-display); font-size: 2.2rem; color: #fff; margin: 35px 0 15px; line-height: 1.2; border-left: 5px solid var(--red); padding-left: 14px; text-transform: uppercase; }
        .prose h2:first-child { margin-top: 0; }
        .prose h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); margin: 25px 0 12px; text-transform: uppercase; letter-spacing: 1px; }
        .prose p { color: #aaa; font-size: 1.1rem; line-height: 1.9; margin-bottom: 20px; }
        .prose p:last-child { margin-bottom: 0; }
        .prose strong { color: #fff; }
        .prose em { color: var(--gold); font-style: italic; }

        /* FAQ */
        .faq-list { margin-top: 20px; }
        .faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-item summary { padding: 16px 20px; cursor: pointer; font-weight: 700; color: #fff; font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; background: #111; transition: background 0.2s; }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after { content: "+"; color: var(--red); font-size: 1.4rem; font-family: var(--font-display); flex-shrink: 0; margin-left: 12px; }
        .faq-item[open] summary { background: #1a0000; }
        .faq-item[open] summary::after { content: "−"; }
        .faq-item > div { padding: 16px 20px; background: #0a0a0a; }
        .faq-item > div p { color: #aaa; font-size: 1rem; line-height: 1.7; margin: 0; }

        /* FOOTER */
        footer { background: #000; border-top: 2px solid var(--red); padding: 60px 20px; text-align: center; margin-top: 60px; }
        .footer-logo { font-family: var(--font-display); font-size: 3rem; color: #fff; margin-bottom: 25px; }
        .footer-logo span { color: var(--red); }
        .footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-links a { color: #666; font-weight: 700; text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
        .footer-links a:hover { color: var(--red); }
        .footer-copy { color: #222; font-size: 0.75rem; letter-spacing: 1px; margin-top: 20px; }

        /* RESPONSIVE */
        @media (max-width: 480px) {
            .header-inner { flex-direction: column; gap: 12px; padding: 10px 5px; }
            .logo { font-size: 1.8rem; }
            .header-nav { width: 100%; justify-content: center; }
            .header-nav a { flex: 1; text-align: center; font-size: 0.9rem; padding: 8px 5px; }
            .hero { padding: 40px 15px; }
            .hero h1 { font-size: 1.9rem; }
            .movie-details-box { padding: 20px; }
            .prose { padding: 30px 20px; }
            .prose h2 { font-size: 1.8rem; }
        }