.trailer-watch-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #151515;
}

.trailer-watch-main {
    flex: 1 0 auto;
}

.trailer-watch-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 0%, rgba(207, 36, 72, 0.16), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(63, 88, 98, 0.20), transparent 30%),
        linear-gradient(135deg, #141414 0%, #252525 54%, #191919 100%);
}

.trailer-watch-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 247, 236, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 247, 236, 0.018) 1px, transparent 1px);
    background-size: 100% 3px, 4px 100%;
    pointer-events: none;
}

.trailer-watch-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.trailer-watch-title {
    margin: 0 auto 30px;
    padding-bottom: 15px;
    position: relative;
    color: var(--cream-light);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.trailer-watch-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.trailer-watch-description {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #F5F1E8;
    font-size: 1.2rem;
    line-height: 1.75;
}

.trailer-watch-page .trailer-container {
    margin: 0 auto;
    opacity: 1;
    transform: none;
    animation: none;
}

.trailer-watch-page .local-video video {
    z-index: 1;
    background: #000;
}

.trailer-watch-actions {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.trailer-watch-actions .btn {
    min-width: 210px;
}

.trailer-watch-page footer {
    flex-shrink: 0;
    margin-top: 0;
}

.trailer-watch-page.rtl .footer-heading::after {
    right: 0;
    left: auto;
}

@media (max-width: 700px) {
    .trailer-watch-hero {
        min-height: 0;
        padding: 115px 0 64px;
    }

    .trailer-watch-content {
        width: 96%;
        padding: 0 5px;
    }

    .trailer-watch-title {
        margin-bottom: 24px;
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

    .trailer-watch-description {
        margin-bottom: 30px;
        font-size: 1rem;
        line-height: 1.65;
    }

    .trailer-watch-page .trailer-container {
        padding: 7px;
    }

    .trailer-watch-actions {
        margin-top: 30px;
    }

    .trailer-watch-actions .btn {
        width: min(100%, 320px);
    }
}
