
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background: #000000;
            color: #c8d4d8;
            overflow-x: hidden;
        }

        /* Subtle hospital flicker effect */
        @keyframes flicker {
            0%, 100% { opacity: 1; }
            41.99% { opacity: 1; }
            42% { opacity: 0.8; }
            43% { opacity: 1; }
            45.99% { opacity: 1; }
            46% { opacity: 0.85; }
            46.5% { opacity: 1; }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
            position: relative;
            background: radial-gradient(ellipse at center, #0a1214 0%, #000000 70%);
        }

        /* Subtle teal glow from top */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: radial-gradient(ellipse at top, rgba(76, 175, 180, 0.08) 0%, transparent 70%);
            pointer-events: none;
            animation: flicker 8s infinite;
        }

        .poster-container {
            max-width: 600px;
            width: 100%;
            margin-bottom: 3rem;
            position: relative;
            animation: fadeIn 1.5s ease-in;
            filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.9));
        }

        .poster-container img {
            width: 100%;
            height: auto;
            border: 1px solid #1a2426;
        }

        h1 {
            font-size: 5rem;
            font-weight: 300;
            letter-spacing: 0.8rem;
            margin-bottom: 0.5rem;
            color: #8b2e2e;
            text-shadow: 0 0 30px rgba(139, 46, 46, 0.4);
            animation: fadeIn 2s ease-in;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
        }

        .subtitle {
            font-size: 0.9rem;
            color: #5a6a6e;
            letter-spacing: 0.4rem;
            text-transform: uppercase;
            margin-bottom: 3rem;
            animation: fadeIn 2.5s ease-in;
        }

        /* Info bars - hospital aesthetic */
        .info-bars {
            display: flex;
            gap: 3rem;
            margin: 2rem auto;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeIn 3s ease-in;
        }

        .info-item {
            text-align: center;
            padding: 1rem 1.5rem;
            background: rgba(76, 175, 180, 0.03);
            border-left: 2px solid #3a5558;
        }

        .info-item .label {
            font-size: 0.7rem;
            color: #4a5a5e;
            text-transform: uppercase;
            letter-spacing: 0.15rem;
            margin-bottom: 0.5rem;
        }

        .info-item .value {
            font-size: 1rem;
            color: #b8c8cc;
            font-weight: 300;
        }

        /* Laurels Section */
        .laurels {
            padding: 5rem 2rem;
            text-align: center;
            background: #050808;
            border-top: 1px solid #0f1516;
        }

        .laurels h2 {
            font-size: 1.2rem;
            color: #6a7a7e;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 0.4rem;
            font-weight: 300;
        }

        .laurel-grid {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .laurel-item {
            padding: 2rem;
            background: rgba(76, 175, 180, 0.02);
            border: 1px solid #1a2426;
            text-align: left;
        }

        .laurel-item .award {
            font-size: 1rem;
            color: #8b2e2e;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1rem;
            font-weight: 400;
        }

        .laurel-item .festival {
            font-size: 0.9rem;
            color: #6a7a7e;
            line-height: 1.6;
        }

        /* Synopsis Section */
        .synopsis {
            padding: 5rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            background: #000000;
        }

        .synopsis h2 {
            font-size: 1.8rem;
            margin-bottom: 2.5rem;
            color: #8b2e2e;
            text-transform: uppercase;
            letter-spacing: 0.3rem;
            font-weight: 300;
            border-bottom: 1px solid #1a2426;
            padding-bottom: 1rem;
        }

        .synopsis .logline {
            font-size: 1.3rem;
            line-height: 2;
            color: #b8c8cc;
            margin-bottom: 3rem;
            padding-left: 2rem;
            border-left: 3px solid #3a5558;
            font-style: italic;
            font-weight: 300;
        }

        .synopsis p {
            font-size: 1rem;
            line-height: 1.9;
            color: #7a8a8e;
            margin-bottom: 1.5rem;
        }

        /* Credits Section */
        .credits {
            padding: 5rem 2rem;
            background: #050808;
            text-align: center;
        }

        .credits h2 {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: #6a7a7e;
            text-transform: uppercase;
            letter-spacing: 0.4rem;
            font-weight: 300;
        }

        .credit-grid {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .credit-item {
            padding: 2rem;
            background: rgba(76, 175, 180, 0.02);
            border-top: 2px solid #3a5558;
        }

        .credit-item .role {
            font-size: 0.75rem;
            color: #4a5a5e;
            text-transform: uppercase;
            letter-spacing: 0.15rem;
            margin-bottom: 1rem;
        }

        .credit-item .name {
            font-size: 1.1rem;
            color: #b8c8cc;
            font-weight: 300;
            line-height: 1.6;
        }

        /* Related Projects */
        .related {
            padding: 4rem 2rem;
            text-align: center;
            background: #000000;
        }

        .related h2 {
            font-size: 1rem;
            color: #5a6a6e;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.3rem;
            font-weight: 300;
        }

        .related a {
            display: inline-block;
            padding: 1.2rem 3rem;
            border: 1px solid #3a5558;
            color: #8a9a9e;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.2rem;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            background: rgba(76, 175, 180, 0.02);
        }

        .related a:hover {
            border-color: #4cafb4;
            color: #b8c8cc;
            background: rgba(76, 175, 180, 0.05);
            box-shadow: 0 0 20px rgba(76, 175, 180, 0.1);
        }

        .film-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background: #050808;
            text-align: center;
            border-top: 1px solid #0f1516;
        }

        .contact h2 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: #6a7a7e;
            text-transform: uppercase;
            letter-spacing: 0.4rem;
            font-weight: 300;
        }

        .contact p {
            color: #5a6a6e;
            margin-bottom: 2.5rem;
            font-size: 0.9rem;
            letter-spacing: 0.05rem;
        }

        .contact-link {
            display: inline-block;
            padding: 1.2rem 3.5rem;
            border: 1px solid #8b2e2e;
            color: #8b2e2e;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.25rem;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            background: transparent;
        }

        .contact-link:hover {
            background: rgba(139, 46, 46, 0.1);
            box-shadow: 0 0 30px rgba(139, 46, 46, 0.2);
            border-color: #a83e3e;
        }

        /* Footer */
        footer {
            padding: 2.5rem;
            text-align: center;
            color: #2a3a3e;
            font-size: 0.75rem;
            letter-spacing: 0.1rem;
            background: #000000;
        }

        footer a {
            color: #8b2e2e;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #a83e3e;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 3rem;
                letter-spacing: 0.4rem;
            }

            .info-bars {
                flex-direction: column;
                gap: 1rem;
            }

            .poster-container {
                max-width: 340px;
            }

            .laurel-grid {
                grid-template-columns: 1fr;
            }
        }