/* Trailer Section Styles */
.trailer {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: #00040D;
    text-align: center;
}

.trailer-container {
    position: relative;
    width: 1440px;
    margin: 0 auto;
}

.trailer-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 44px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.trailer-description {
    max-width: 808px;
    margin: 0 auto 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 0.6;
}

.trailer-video-wrapper {
    position: relative;
    width: 1200px;
    height: 675px;
    margin: 0 auto;
    box-shadow: 0px 0px 110px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

/* Dark overlay for trailer image */
.trailer-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: background 0.3s ease;
}

.trailer-poster-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.trailer-video-wrapper:hover .trailer-poster-img {
    transform: scale(1.03);
}

.trailer-play-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 84px;
    height: 64px;
    background: #FF0000;
    border-radius: 16px;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease, background 0.3s ease;
}

.trailer-video-wrapper:hover .trailer-play-btn {
    transform: scale(1.1);
    background: #cc0000;
}

.trailer-play-btn img {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 4;
}
