.videoprojector-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    background: #111111;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.vp-slides-wrapper {
    position: relative;
    width: 100%;
}

.vp-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease-in-out;
}

.vp-slide.active {
    display: block;
    opacity: 1;
}

/* Пропорциональный бокс 16:9 под видео */
.vp-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000000;
}

.vp-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vp-slide-title {
    color: #ffffff;
    margin: 18px 0 6px 0;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

.vp-slide-description {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

/* Панель управления */
.vp-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.vp-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.1s ease;
}

.vp-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.vp-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.vp-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vp-dot.active {
    background: #e50914; /* Акцентный красный цвет */
    transform: scale(1.3);
}