/* Cinematic Showreel Widget Styles (CSR Namespace) */
.csr-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.csr-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
}

.csr-overlay-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 40%, transparent 100%),
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.csr-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
}

.csr-content {
    max-width: 700px;
}

.csr-title {
    font-family: serif;
    font-size: 85px;
    line-height: 1.05;
    margin-bottom: 30px;
}

.csr-title-dark {
    color: #222;
}

.csr-title-amber {
    color: #E87722;
}

.csr-line {
    width: 40px;
    height: 2px;
    background: #E87722;
    margin-bottom: 40px;
}

.csr-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 450px;
    margin-bottom: 50px;
}

/* PLAY BUTTON */
.csr-play-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    cursor: pointer;
}

.csr-play-circle {
    width: 70px;
    height: 70px;
    border: 1px solid #E87722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.csr-play-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #E87722;
    margin-left: 5px;
}

.csr-play-text {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
}

.csr-arrow {
    font-size: 18px;
    color: #E87722;
    transition: transform 0.4s ease;
}

.csr-play-wrap:hover .csr-play-circle {
    background: #E87722;
    box-shadow: 0 0 30px rgba(232, 119, 34, 0.4);
    transform: scale(1.1);
}

.csr-play-wrap:hover .csr-play-triangle {
    border-left-color: #fff;
}

.csr-play-wrap:hover .csr-arrow {
    transform: translateX(8px);
}

/* VIDEO MODAL */
.csr-video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.csr-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
}

.csr-modal-iframe-wrap {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#csr-video-player {
    width: 100%;
    height: 100%;
}

#csr-video-player iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* ENTRANCE ANIMATIONS (Handled by GSAP) */
.csr-title,
.csr-line,
.csr-sub,
.csr-play-wrap {
    will-change: transform, opacity;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .csr-title {
        font-size: 60px;
    }

    .csr-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .csr-title {
        font-size: 40px;
    }

    .csr-wrapper {
        padding: 80px 30px;
    }

    .csr-container {
        text-align: left;
    }
}