/* Trailer Section Styles */
.trailer-section {
    width: calc(100% - 5vh);
    max-width: 1440px;
    margin: -15vh auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.trailer-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.trailer-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .trailer-section {
        margin: -8vh auto 0;
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .trailer-section {
        margin: -6vh auto 0;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 480px) {
    .trailer-section {
        margin: -5vh auto 0;
        padding: 0 0.75rem;
    }
}
