.full-width-video-banner-two {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.full-width-video-banner-two__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 100vh;
}

.full-width-video-banner-two__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.full-width-video-banner-two__controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.65);
    padding: 0.9rem 2rem;
    border-radius: 999px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.full-width-video-banner-two__btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition:
        background 0.2s,
        color 0.2s;
    cursor: pointer;
    padding: 0;
}

.full-width-video-banner-two__btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.full-width-video-banner-two__btn:active {
    background: rgba(255, 255, 255, 0.35);
}

.full-width-video-banner-two__btn--play {
    font-size: 2rem;
}

.full-width-video-banner-two__progress-wrap {
    width: 180px;
    height: 5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    margin: 0 0.2rem;
}

.full-width-video-banner-two__progress-bar {
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: 10px;
    transition: width 0.05s linear;
}

.full-width-video-banner-two__time {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 45px;
    text-align: center;
    user-select: none;
}

.full-width-video-banner-two__volume-wrap {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.full-width-video-banner-two__volume-slider {
    width: 70px;
    accent-color: #fff;
    height: 4px;
    cursor: pointer;
}

/* Мобильная адаптация (768px и меньше) */
@media (max-width: 768px) {
    .full-width-video-banner-two__media {
        aspect-ratio: auto;
        min-height: 60vh; /* Уменьшаем высоту на мобильных */
        height: 60vh;
    }

    .full-width-video-banner-two__controls {
        gap: 0.6rem;
        padding: 0.5rem 1rem;
        bottom: 1rem;
        width: calc(100% - 2rem);
        border-radius: 50px;
        justify-content: space-between;
    }

    .full-width-video-banner-two__progress-wrap {
        width: auto;
        flex: 1;
        min-width: 60px;
    }

    .full-width-video-banner-two__volume-wrap {
        display: none;
    }

    .full-width-video-banner-two__btn {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }

    .full-width-video-banner-two__time {
        font-size: 0.75rem;
        min-width: 38px;
    }

    .full-width-video-banner-two__center-play {
        width: 60px;
        height: 60px;
    }

    .full-width-video-banner-two__center-play i {
        font-size: 2.2rem;
    }
}

/* Очень маленькие экраны (480px и меньше) */
@media (max-width: 480px) {
    .full-width-video-banner-two__media {
        min-height: 50vh;
        height: 50vh;
    }

    .full-width-video-banner-two__controls {
        gap: 0.4rem;
        padding: 0.4rem 0.8rem;
        bottom: 0.8rem;
    }

    .full-width-video-banner-two__btn {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .full-width-video-banner-two__time {
        font-size: 0.7rem;
        min-width: 32px;
    }
    
    .full-width-video-banner-two__progress-wrap {
        min-width: 50px;
    }
}

/* Ландшафтная ориентация на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .full-width-video-banner-two__media {
        min-height: 100vh;
        height: 100vh;
    }
    
    .full-width-video-banner-two__controls {
        padding: 0.4rem 1rem;
        bottom: 0.5rem;
    }
}