/* =========================================
           VIDEO SECTION
           ========================================= */
.video-section {
    width: 100%;
    padding: 110px 180px 110px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1064px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.video-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(90% 85% at 50% 35%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 76%, rgba(0, 0, 0, 0.35) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0) 68%, rgba(0, 0, 0, 0.25));
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.glass-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.glass-btn--play:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translate(-50%, -50%) scale(1.03);
}

.glass-btn--play:active {
    transform: translate(-50%, -50%) scale(0.98);
}

.glass-btn .icon {
    width: 26px;
    height: 26px;
    fill: currentColor;
    color: #fff;
}

.hidden {
    display: none !important;
}

.video-wrapper.is-playing .glass-btn--play {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper:hover .glass-btn--play {
    opacity: 1;
    pointer-events: auto;
}

.glass-btn--mute {
    left: auto;
    top: auto;
    right: 18px;
    bottom: 18px;
    transform: none;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 1px 0 rgba(255, 255, 255, 0.18) inset;
    transition: opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.glass-btn--mute .icon {
    width: 22px;
    height: 22px;
    opacity: 0.95;
}

.glass-btn--mute:focus-visible {
    outline: none;
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.55),
        0 0 0 2px rgba(255, 255, 255, 0.22),
        0 0 0 6px rgba(255, 255, 255, 0.10),
        0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

@media (max-width: 1200px) {
    .video-section {
        padding: 80px 32px 110px;
    }

    .video-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 24px 90px;
    }

    .video-title {
        text-align: left;
        margin-bottom: 22px;
    }

    .video-title h2 {
        text-align: center;
        font-size: 28px;
        letter-spacing: -0.6px;
        line-height: 30px;
        margin-left: 0;
        margin-right: 0;
    }

    .video-title p {
        text-align: center;
        line-height: 20px;
        font-size: 15px;
        margin-left: 0;
        margin-right: 0;
    }

    .video-wrapper {
        border-radius: 14px;
        height: 400px;
    }

    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .glass-btn {
        width: 66px;
        height: 66px;
    }

    .glass-btn--mute {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 14px;
    }
}