.film-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 4rem;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.8);
}

.film-poster {
    width: 45%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border: 2px solid rgba(211, 104, 213, 0.3);
    margin-left: 2rem;
    animation: pinkOrangeGlowSweep 6s ease-in-out infinite;
}

.film-info {
    width: 50%;
    text-align: right;
    padding-right: 4rem;
    margin-top: -4rem;  /* This will pull the title up to align with the poster top */
}

.film-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #D368D5, #D38953, #D26F55);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    text-align: right;
}

.film-metadata {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: flex-end;
}

.metadata-item {
    text-align: right;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.metadata-label {
    font-weight: bold;
    color: #888;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.metadata-value {
    color: #fff;
    font-size: 1.2rem;
}

.film-description p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.film-warning {
    color: #ff4444;
    font-style: italic;
    font-size: 1.4rem;
    margin-top: 1.5rem;
}

.text-center {
    text-align: center;
    margin: 1.5rem 0;
}

.video-container {
    position: relative;
    padding-bottom: 35%;
    height: 0;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    background: #000;
    border-radius: 8px;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .film-header {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .film-poster {
        width: 60%;
        max-width: 300px;
        margin-bottom: 2rem;
    }

    .film-info {
        width: 100%;
        text-align: center;
        padding-right: 0;
        margin-top: 0;
    }

    .film-info h1 {
        text-align: center !important;
        font-size: 2.5rem !important;
        padding-right: 0 !important;
    }

    .film-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .film-metadata {
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .metadata-item {
        text-align: center;
    }

    .film-description p {
        font-size: 1.2rem;
        text-align: left;
    }

    .video-container {
        padding-bottom: 56.25%;
    }
}