        body {
            background-image: linear-gradient(135deg, #4bbd00 0%, #090979 35%, #bbff88 100%);
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: #ffffff;
            line-height: 1.6;
            font-family: Verdana, Geneva, sans-serif;
        }

      header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        nav a:hover {
            color: #fe0;
        }

        .section {
            padding: 80px 8%;
        }

        .section-title {
            font-size: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 40px;
            position: relative;
        }

        .card {
            background: #161616;
            border-radius: 5px;
            border: 1px solid #222;
            width: 100%;
            max-width: 500px;
            aspect-ratio: 16 / 9;
        }

        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-body {
            padding: 20px;
        }

        .card-body h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .card-body p {
            color: #888;
            font-size: 0.9rem;
        }

        .card-body a {
            margin-bottom: 10px;
            font-size: 1.2rem;
            color: #fff;
        }

        .contact-body p {
            color: #fff;
            font-size: 0.9rem;
            text-align: center;
        }

        .contact-body a {
            color: #fff;
            font-size: 0.9rem;
            text-align: center;
        }

        .productions-body p {
            color: #fff;
            font-size: 0.9rem;
            text-align: center;
        }

        .productions-body a {
            color: #fff;
            font-size: 0.9rem;
            text-align: center;
        }

        .contact-body img {
            max-width: 500px;
            height: auto;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        footer {
            text-align: center;
            padding: 40px 8%;
            font-size: 0.8rem;
            color: #fff
        }
        
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -2;
            background-color: #000;
        }

        .video-background video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover;
            
            opacity: 1;
            transition: opacity 1.5s ease-in-out;
        }

        .video-background video.fade-out {
            opacity: 0;
        }

        .video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.65);
            z-index: -1;
        }

        .production-hero {
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 10;
        }

        .tagline {
            color: #fe0;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .movie-title {
            font-size: 3.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

        .meta-info {
            display: flex;
            gap: 20px;
            font-size: 0.9rem;
            color: #ccc;
            margin-bottom: 20px;
        }

        .synopsis {
            max-width: 650px;
            font-size: 1.05rem;
            margin-bottom: 25px;
            background: rgba(0, 0, 0, 0.4);
            padding: 20px;
            border-left: 3px solid #fe0;
            border-radius: 0 4px 4px 0;
        }

        .watch-btn {
            display: inline-block;
            align-self: flex-start;
            padding: 12px 30px;
            background-color: #fe0;
            color: #000;
            font-weight: bold;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-bottom: 35px;
            transition: background 0.3s, transform 0.2s;
        }

        .watch-btn:hover {
            background-color: #ffd700;
            transform: scale(1.03);
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
            position: relative;
            z-index: 10;
        }

        .detail-item h4 {
            color: #fe0;
            font-size: 0.85rem;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .detail-item p {
            font-size: 0.95rem;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 100;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background-color: #161616;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 30px;
            width: 90%;
            max-width: 450px;
            position: relative;
            box-shadow: 0 10px 25px rgba(0,0,0,0.8);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
        }

        .modal-header h3 {
            font-size: 1.3rem;
            color: #fe0;
            text-transform: uppercase;
        }

        .close-btn {
            background: none;
            border: none;
            color: #aaa;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }

        .close-btn:hover {
            color: #fff;
        }

        .platform-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .platform-item a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            background-color: #222;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            font-size: 0.95rem;
            transition: background-color 0.2s, border-color 0.2s;
            border: 1px solid #333;
        }

        .platform-item a:hover {
            background-color: #2a2a2a;
            border-color: #fe0;
            color: #fe0;
        }

        .platform-badge {
            font-size: 0.75rem;
            text-transform: uppercase;
            padding: 3px 8px;
            background: #333;
            border-radius: 3px;
            color: #ccc;
        }