        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: #000;
            color: #e8e8e8;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
            background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 70%);
        }

        .poster-container {
            max-width: 400px;
            width: 100%;
            margin-bottom: 2rem;
            position: relative;
            animation: fadeIn 1.5s ease-in;
        }

        .poster-container img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            transition: transform 0.3s ease;
        }

        .poster-container:hover img {
            transform: scale(1.02);
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 300;
            letter-spacing: 0.3rem;
            margin-bottom: 1rem;
            color: #f5f5f5;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            animation: fadeIn 2s ease-in;
            text-transform: uppercase;
        }

        .tagline {
            font-size: 1.5rem;
            font-style: italic;
            color: #b8b8b8;
            margin-bottom: 2rem;
            animation: fadeIn 2.5s ease-in;
        }

        .status {
            font-size: 1rem;
            color: #c9a961;
            text-transform: uppercase;
            letter-spacing: 0.2rem;
            margin-bottom: 3rem;
            padding: 0.5rem 1.5rem;
            border: 1px solid #c9a961;
            display: inline-block;
            animation: fadeIn 3s ease-in;
        }

        /* About Section */
        .about {
            padding: 4rem 2rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            animation: fadeIn 3.5s ease-in;
        }

        .about h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #f5f5f5;
            letter-spacing: 0.1rem;
        }

        .about p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #c8c8c8;
            margin-bottom: 1.5rem;
        }

        .synopsis {
            font-style: italic;
            border-left: 3px solid #c9a961;
            padding-left: 1.5rem;
            margin: 2rem 0;
            text-align: left;
        }

        /* Credits Section */
        .credits {
            padding: 3rem 2rem;
            background: #0a0a0a;
            text-align: center;
        }

        .credits h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #f5f5f5;
            letter-spacing: 0.1rem;
        }

        .crew {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .crew-member {
            padding: 1rem;
        }

        .crew-member .role {
            font-size: 0.9rem;
            color: #c9a961;
            text-transform: uppercase;
            letter-spacing: 0.1rem;
            margin-bottom: 0.5rem;
        }

        .crew-member .name {
            font-size: 1.2rem;
            color: #f5f5f5;
        }
		
        /* Related Projects */
        .related {
            padding: 4rem 2rem;
            text-align: center;
            background: #000000;
        }

        .related h2 {
			font-size: 2rem;
			margin-bottom: 2rem;
			color: #f5f5f5;
        }

        .related a {
            color: #c9a961;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 0.75rem 2rem;
            border: 1px solid #c9a961;
            transition: all 0.3s ease;
        }

        .related a:hover {
            background: #c9a961;
            color: #000;
        }

        .film-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        /* Contact Section */
        .contact {
            padding: 3rem 2rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #f5f5f5;
        }

        .contact p {
            font-size: 1.1rem;
            color: #c8c8c8;
            margin-bottom: 2rem;
        }

        .contact-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-links a {
            color: #c9a961;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 0.75rem 2rem;
            border: 1px solid #c9a961;
            transition: all 0.3s ease;
        }

        .contact-links a:hover {
            background: #c9a961;
            color: #000;
        }

        /* Footer */
        footer {
            padding: 2rem;
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            border-top: 1px solid #222;
        }

        footer a {
            color: #c9a961;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #d8c18d;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
                letter-spacing: 0.2rem;
            }

            .tagline {
                font-size: 1.2rem;
            }

            .about h2, .credits h2, .contact h2 {
                font-size: 1.5rem;
            }

            .poster-container {
                max-width: 300px;
            }
        }