:root {
    --bg-color: #050505;
    --text-color: #f5f5f5;
    --accent-color: #8b0000; /* Deep Blood Red */
    --accent-glow: rgba(139, 0, 0, 0.4);
    --secondary-color: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-med: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Cinzel', serif;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for custom cursor */
}

/* Typography */
h1, h2, h3, .nav-logo, .footer-logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Grain Overlay */
.grain {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 9999;
    pointer-events: none;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0); }
    70% { transform: translate(0, 10%); }
    80% { transform: translate(-15%, 0); }
    90% { transform: translate(10%, 5%); }
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition-med);
}

.nav-link:hover, .nav-link.highlight {
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.9)), url('assets/hero.png') center/cover no-repeat;
    z-index: -1;
    transform: scale(1.1);
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--secondary-color);
    letter-spacing: 0.3em;
    font-weight: 300;
}

.tagline .accent {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--secondary-color);
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sections */
.section {
    padding: 140px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-title.center {
    display: block;
    text-align: center;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    height: 600px;
    overflow: hidden;
}

.story-text .content {
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Director Vision */
.vision {
    background-color: #0a0a0a;
    text-align: center;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.eyebrow {
    display: block;
    color: var(--accent-color);
    letter-spacing: 0.4em;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.title-large {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 30px;
}

.author {
    color: var(--secondary-color);
    letter-spacing: 0.2em;
    font-size: 0.9rem;
}

/* Premium Cast Accordion */
.cast-premium {
    padding: 140px 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #0a0a0a 0%, var(--bg-color) 100%);
}

.cast-header {
    text-align: center;
    margin-bottom: 60px;
}

.cast-accordion {
    display: flex;
    gap: 10px;
    height: 600px;
    width: 100%;
}

.cast-panel {
    position: relative;
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    cursor: none;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.cast-panel:hover {
    flex: 4;
}

.cast-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.8) brightness(0.5);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.cast-panel:hover .cast-bg {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

.cast-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.cast-panel:hover .cast-overlay {
    opacity: 1;
}

.cast-name-vertical {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cast-panel:hover .cast-name-vertical {
    opacity: 0;
}

.cast-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.1s;
}

.cast-panel:hover .cast-content {
    transform: translateY(0);
    opacity: 1;
}

.cast-role {
    display: block;
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    font-weight: 700;
}

.cast-name {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.cast-handle {
    display: inline-block;
    margin-top: 8px;
    color: #d9d9d9;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: var(--transition-med);
}

.cast-handle:hover {
    color: #ffffff;
    text-shadow: 0 0 14px var(--accent-glow);
}

/* Gallery Strip */
.container-fluid {
    padding: 0 60px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background-color: #1a1a1a;
    border-radius: 4px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1) rotate(1deg);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: var(--transition-med);
}

.gallery-item:hover .img-caption {
    transform: translateY(0);
}

/* Bento Sizing */
.item-1 { grid-column: span 2; grid-row: span 2; }
.item-2 { grid-column: span 1; grid-row: span 1; }
.item-3 { grid-column: span 1; grid-row: span 2; }
.item-4 { grid-column: span 1; grid-row: span 1; }
.item-5 { grid-column: span 2; grid-row: span 1; }
.item-6 { grid-column: span 2; grid-row: span 1; }

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .container-fluid { padding: 0 20px; }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 18px 40px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: var(--transition-med);
    margin-top: 40px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #b30000;
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.05);
}

.btn-outline {
    display: inline-block;
    border: 1px solid white;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 30px;
    transition: var(--transition-med);
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-logo { font-size: 2rem; }

.footer-socials {
    display: flex;
    gap: 30px;
}

.footer-socials a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.75rem;
}

.footer-legal a {
    color: #555;
    margin-left: 20px;
    text-decoration: none;
}

/* Image Placeholders */
.poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cast-img-1 { background-image: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?q=80&w=1000&auto=format&fit=crop'); }
.cast-img-2 { background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?q=80&w=1000&auto=format&fit=crop'); }
.cast-img-3 { background-image: url('https://images.unsplash.com/photo-1519345182560-3f2917c472ef?q=80&w=1000&auto=format&fit=crop'); }

.gallery-1 { background-image: url('https://images.unsplash.com/photo-1512070670213-9a72183c3a4c?q=80&w=1000&auto=format&fit=crop'); }
.gallery-2 { background-image: url('https://images.unsplash.com/photo-1478720568477-152d9b164e26?q=80&w=1000&auto=format&fit=crop'); }
.gallery-3 { background-image: url('https://images.unsplash.com/photo-1533488765986-dfa2a9939acd?q=80&w=1000&auto=format&fit=crop'); }
.gallery-4 { background-image: url('https://images.unsplash.com/photo-1524712245354-2c4e5e7121c0?q=80&w=1000&auto=format&fit=crop'); }


/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #030303;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.8s ease;
}

/* TV Static Overlay inside Preloader */
.preloader-static-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
    animation: static-noise 0.2s steps(4) infinite;
}

@keyframes static-noise {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 2%); }
    30% { transform: translate(-2%, -2%); }
    40% { transform: translate(1%, 3%); }
    50% { transform: translate(-1%, 1%); }
    60% { transform: translate(2%, -1%); }
    70% { transform: translate(-2%, 1%); }
    80% { transform: translate(1%, -2%); }
    90% { transform: translate(-1%, 3%); }
    100% { transform: translate(0, 0); }
}

/* Spooky Background Handprint */
.preloader-spooky-bg {
    position: absolute;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 0;
}

.handprint-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.8));
    animation: handprint-pulse 4s infinite alternate ease-in-out;
}

@keyframes handprint-pulse {
    0% { transform: scale(0.9); opacity: 0.3; filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5)); }
    100% { transform: scale(1.05); opacity: 0.7; filter: drop-shadow(0 0 30px rgba(139, 0, 0, 0.9)); }
}

.preloader-content {
    text-align: center;
    width: 320px;
    z-index: 2;
    position: relative;
}

.preloader-logo {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 0.4em;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 15px var(--accent-glow);
}

/* Haunted Violent Light Flicker */
.preloader-logo.haunted-flicker {
    animation: haunted-flicker-anim 4s infinite;
}

@keyframes haunted-flicker-anim {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
        text-shadow: 0 0 15px rgba(139, 0, 0, 0.8), 0 0 30px rgba(139, 0, 0, 0.4);
        color: #fff;
    }
    19%, 21%, 23%, 24%, 54%, 56% {
        opacity: 0.15;
        text-shadow: none;
        color: rgba(139, 0, 0, 0.4);
    }
}

.preloader-bar {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 1px;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
}

.preloader-status {
    font-size: 0.7rem;
    color: var(--secondary-color);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: monospace;
}

/* TV Collapse effect on unload */
.preloader.fade-out-tv {
    animation: tv-shutdown 0.8s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@keyframes tv-shutdown {
    0% {
        transform: scale(1, 1);
        filter: brightness(1) contrast(1);
        opacity: 1;
    }
    50% {
        transform: scale(1, 0.01);
        filter: brightness(3) contrast(2);
        opacity: 1;
    }
    100% {
        transform: scale(0, 0.01);
        filter: brightness(10) contrast(5);
        opacity: 0;
        visibility: hidden;
    }
}

/* Glitch Effect */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.hero-content h1:hover {
    animation: glitch 0.3s cubic-bezier(.25,.46,.45,.94) both infinite;
    color: #fff;
    text-shadow: 2px 0 var(--accent-color), -2px 0 #0ff;
}

/* Spotlight V2 */
.spotlight-v2 {
    position: relative;
    padding: 180px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #050505 0%, #0a0505 50%, #050505 100%);
}

.spotlight-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    text-transform: uppercase;
}

.relative {
    position: relative;
    z-index: 2;
}

.spotlight-hero {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.spotlight-portrait {
    position: relative;
}

.portrait-frame {
    position: relative;
    padding: 15px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.portrait-frame::before, .portrait-frame::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    transition: var(--transition-med);
}

.portrait-frame::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.portrait-frame::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

.portrait-frame:hover::before, .portrait-frame:hover::after {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
}

.spotlight-hero-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(0.5) contrast(1.1);
    transition: var(--transition-med);
}

.portrait-frame:hover .spotlight-hero-img {
    filter: grayscale(0) contrast(1);
}

.eyebrow.glow {
    text-shadow: 0 0 15px var(--accent-glow);
}

.title-massive {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 40px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.glass-panel {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.bio-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.spotlight-deep-dive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.spotlight-sticky-col {
    position: sticky;
    top: 140px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.subject-stats {
    padding: 30px;
}

.subject-stats h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
    font-family: 'Cinzel', serif;
}

.subject-stats ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subject-stats li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.subject-stats li span {
    color: var(--secondary-color);
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.video-cinematic {
    position: relative;
    border: 1px solid rgba(139, 0, 0, 0.3);
    padding: 5px;
    background: #000;
}

.video-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 5px 15px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.classified-dossier {
    padding: 40px;
}

.dossier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.dossier-header h3 {
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.2em;
}

.dossier-status {
    color: var(--accent-color);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dossier-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dossier-item {
    position: relative;
    padding-left: 20px;
}

.dossier-item::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-family: monospace;
    font-weight: bold;
}

.dossier-q {
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    font-family: monospace;
}

.dossier-a {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 300;
    font-style: italic;
}

.reveal-text {
    background-color: var(--text-color);
    color: var(--text-color);
    padding: 0 5px;
    user-select: none;
    transition: var(--transition-med);
}

.reveal-text:hover {
    background-color: transparent;
    color: var(--accent-color);
}

/* Posters Section */
.posters-section {
    background: radial-gradient(circle at 70% 30%, #150505 0%, #050505 80%);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    padding: 140px 0;
}

.posters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.posters-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.poster-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.poster-frame-3d {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 27 / 40;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(139, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    cursor: pointer;
}

.poster-frame-3d:hover {
    box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 50px rgba(139, 0, 0, 0.25);
}

.poster-frame-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.5s ease;
    transform: translateZ(20px);
}

.poster-frame-3d:hover img {
    filter: brightness(1) contrast(1);
}

.poster-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
    transform: translateZ(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.poster-frame-3d:hover .poster-glow {
    opacity: 1;
}

.poster-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline-large {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tagline-large .accent-red {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
}

.poster-desc {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
}

.poster-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary-glow {
    position: relative;
    background-color: var(--accent-color);
    color: white;
    padding: 18px 36px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: var(--transition-med);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

.btn-primary-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary-glow:hover::before {
    left: 100%;
}

.btn-primary-glow:hover {
    background-color: #b30000;
    box-shadow: 0 0 35px var(--accent-glow);
    transform: translateY(-3px);
}

.btn-link-interactive {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 10px 0;
    transition: var(--transition-med);
}

.btn-link-interactive::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-link-interactive:hover {
    color: var(--accent-color);
}

.btn-link-interactive:hover::after {
    transform: scaleX(1);
    background-color: var(--accent-color);
}

/* Premium Cinematic Glitch Typography */
.glitch-active {
    animation: chromatic-shudder 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes chromatic-shudder {
    0% {
        transform: translate(0);
        text-shadow: none;
    }
    20% {
        transform: translate(-2px, 2px);
        text-shadow: 2px 0 rgba(139, 0, 0, 0.8), -2px 0 rgba(0, 150, 255, 0.6);
    }
    40% {
        transform: translate(-1px, -1px);
        text-shadow: -1px 0 rgba(139, 0, 0, 0.8), 2px 0 rgba(0, 150, 255, 0.6);
    }
    60% {
        transform: translate(2px, 1px);
        text-shadow: 1px 0 rgba(139, 0, 0, 0.8), -1px 0 rgba(0, 150, 255, 0.6);
    }
    80% {
        transform: translate(-1px, 2px);
        text-shadow: -2px 0 rgba(139, 0, 0, 0.8), 1px 0 rgba(0, 150, 255, 0.6);
    }
    100% {
        transform: translate(0);
        text-shadow: none;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; }
    .spotlight-hero { grid-template-columns: 1fr; }
    .spotlight-deep-dive { grid-template-columns: 1fr; }
    .cast-accordion { flex-direction: column; height: 800px; }
    .gallery-strip { grid-template-columns: 1fr 1fr; }
    .nav { padding: 20px 30px; }
    .posters-grid { grid-template-columns: 1fr; gap: 50px; }
    .poster-display { order: -1; }
}

@media (max-width: 600px) {
    .cast-accordion { height: 600px; }
    .gallery-strip { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .poster-actions { flex-direction: column; align-items: stretch; gap: 15px; }
    .btn-primary-glow { text-align: center; }
    .btn-link-interactive { text-align: center; }
}

/* ====================================================
   Premium Horror Scrollbar & Side Navigation Indicators
   ==================================================== */

/* Custom Chrome/Safari/Edge Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
    border-left: 1px solid rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1f0303 0%, var(--accent-color) 50%, #1f0303 100%);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent-glow);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-color) 0%, #ff1a1a 50%, var(--accent-color) 100%);
}

/* Side Dot Scroller */
.side-scroll-indicator {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 14px;
    height: 14px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 12px var(--accent-color), 0 0 4px var(--accent-color);
}

.scroll-dot.active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Tooltips */
.scroll-dot .tooltip {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--glass-border);
    color: var(--secondary-color);
    font-size: 0.65rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.15em;
    padding: 4px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-dot:hover .tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    color: #fff;
    border-color: rgba(139, 0, 0, 0.4);
}


/* ====================================================
   Interactive Horror Object: The Hanging Bolt
   ==================================================== */
.horror-bolt-container {
    position: fixed;
    right: 35px;
    top: 10%;
    width: 60px;
    height: 160px;
    z-index: 998;
    pointer-events: auto;
    transform-origin: top center;
    transition: transform 0.1s ease-out;
}

/* Chains hanging the bolt */
.chain-link {
    width: 6px;
    height: 25px;
    background: linear-gradient(90deg, #111 0%, #444 50%, #111 100%);
    border-radius: 3px;
    margin: 0 auto;
    border: 1px solid #000;
}

.link-2 {
    margin-top: -8px;
    height: 30px;
}

/* The actual steel bolt body */
.bolt-body {
    position: relative;
    width: 44px;
    height: 80px;
    background: linear-gradient(135deg, #151515 0%, #2a2a2a 50%, #0d0d0d 100%);
    border: 2px solid #000;
    border-radius: 4px;
    margin: -5px auto 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    overflow: hidden;
    cursor: grab;
}

.bolt-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05) 0%, transparent 60%);
}

/* Brackets holding the sliding bar */
.bolt-bracket {
    position: absolute;
    width: 12px;
    height: 18px;
    background: #111;
    border: 1px solid #333;
    border-radius: 2px;
}

.bracket-left { left: 4px; top: 30px; }
.bracket-right { right: 4px; top: 30px; }

/* The horizontal lock bar */
.bolt-bar {
    position: absolute;
    left: 8px;
    top: 34px;
    width: 24px;
    height: 10px;
    background: linear-gradient(180deg, #222 0%, #555 50%, #111 100%);
    border-radius: 1px;
    border: 1px solid #000;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* The grab handle */
.bolt-handle {
    position: absolute;
    left: 17px;
    top: 26px;
    width: 6px;
    height: 26px;
    background: linear-gradient(90deg, #111, #8b0000, #111);
    border: 1px solid #000;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Red pulsating aura around the bolt */
.bolt-glow-effect {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse-glow 2.5s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
    0% { transform: translateX(-50%) scale(0.9); opacity: 0.3; }
    100% { transform: translateX(-50%) scale(1.2); opacity: 0.7; }
}

/* Hover Violent Rattling / Shuddering */
.horror-bolt-container:hover {
    animation: bolt-rattle 0.15s infinite;
}

.horror-bolt-container:hover .bolt-glow-effect {
    background: radial-gradient(circle, rgba(230, 0, 0, 0.6) 0%, transparent 70%);
    animation: pulse-glow 0.5s infinite alternate;
}

.horror-bolt-container:hover .bolt-handle {
    background: linear-gradient(90deg, #222, #ff0000, #222);
}

@keyframes bolt-rattle {
    0% { transform: rotate(2deg) translate(1px, 1px); }
    25% { transform: rotate(-2deg) translate(-1px, -1px); }
    50% { transform: rotate(1deg) translate(-1px, 1px); }
    75% { transform: rotate(-1deg) translate(1px, -1px); }
    100% { transform: rotate(2deg) translate(1px, 1px); }
}

/* Active Grab state */
.horror-bolt-container.locked .bolt-bar {
    transform: translateX(-6px);
}

.horror-bolt-container.locked .bolt-handle {
    transform: translateX(-6px);
}

/* Mobile Adjustments for Indicators and Bolt */
@media (max-width: 768px) {
    .side-scroll-indicator {
        right: 15px;
    }
    .horror-bolt-container {
        display: none; /* Hide interactive bolt on smaller viewports to keep space clear */
    }
}
