

        /* Основной контейнер – флекс-колонка на всю высоту */
        .deep_fullscreen-slider {
            display: flex;
            flex-direction: column;
            width: 100vw;
            height: 90vh;
            overflow: hidden;
            background: #000; /* фон на случай загрузки */
        }

        /* Обёртка слайдера со стрелками – занимает всё свободное место */
        .deep_slider-wrapper {
            flex: 1;
            position: relative;
            overflow: hidden;
            min-height: 0; /* важно для правильного расчёта flex */
        }

        .deep_slides-container {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .deep_slide {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .deep_slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .deep_slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            max-width: 800px;
            text-align: center;
            color: white;
            z-index: 2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            animation: deep_fadeInUp 0.8s ease-out;
        }

        .deep_slide-content h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .deep_slide-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .deep_buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .deep_btn {
            display: inline-block;
            padding: 12px 32px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 40px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .deep_btn-primary {
            background: #ffffff;
            color: #111;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .deep_btn-primary:hover {
            background: #f0f0f0;
            transform: translateY(-3px);
        }

        .deep_btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            backdrop-filter: blur(4px);
        }

        .deep_btn-outline:hover {
            background: white;
            color: #111;
            transform: translateY(-3px);
        }

        /* Стрелки навигации – позиционируются внутри слайдера */
        .deep_slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(6px);
            border-radius: 50%;
            display: flex;
            align-items: center;

            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: 0.2s;
            font-size: 2rem;
            color: white;
            user-select: none;
        }

        .deep_slider-arrow:hover {
            background: rgba(255,255,255,0.4);
            transform: translateY(-50%) scale(1.05);
        }

        .deep_arrow-left {
            left: 24px;
        }

        .deep_arrow-right {
            right: 24px;
        }

        /* Кнопка автоплея – внутри области слайдера */
        .deep_auto-toggle {
            position: absolute;
            bottom: 20px;
            right: 30px;
            z-index: 25;
            background: rgba(0,0,0,0.6);
            color: white;
            border: none;
            border-radius: 40px;
            padding: 8px 18px;
            font-size: 0.8rem;
            cursor: pointer;
            backdrop-filter: blur(4px);
            font-weight: 500;
            transition: 0.2s;
        }

        .deep_auto-toggle:hover {
            background: rgba(0,0,0,0.8);
        }

        /* ЛЕНТА МИНИАТЮР – теперь НЕ absolute, а обычный блок внизу */
        .deep_thumbnails-bar {
            flex-shrink: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            padding: 12px 20px;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            scroll-behavior: smooth;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .deep_thumbnails-bar::-webkit-scrollbar {
            height: 4px;
        }
        .deep_thumbnails-bar::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
        }
        .deep_thumbnails-bar::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.5);
            border-radius: 10px;
        }

        .deep_thumbnails-container {
            display: flex;
            gap: 15px;
            justify-content: flex-start;
            align-items: center;
        }

        .deep_thumbnail-item {
            flex: 0 0 auto;
            width: 100px;
            cursor: pointer;
            text-align: center;
            transition: transform 0.2s, opacity 0.2s;
            opacity: 0.7;
            border-radius: 12px;
            overflow: hidden;
        }

        .deep_thumbnail-item:hover {
            opacity: 1;
            transform: translateY(-4px);
        }

        .deep_thumbnail-item.active {
            opacity: 1;
            transform: scale(1.02);
            box-shadow: 0 0 0 2px white, 0 0 0 4px #3b82f6;
            border-radius: 12px;
        }

        .deep_thumbnail-img {
            width: 100%;
            height: 60px;
            object-fit: cover;
            display: block;
            border-radius: 8px;
        }

        .deep_thumbnail-title {
            font-size: 0.7rem;
            color: white;
            margin-top: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 0 4px;
            font-weight: 500;
        }

        @keyframes deep_fadeInUp {
            from {
                opacity: 0;
                transform: translate(-50%, 60%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        @media (max-width: 768px) {
            .deep_slide-content h2 { font-size: 2rem; }
            .deep_slide-content p { font-size: 1rem; }
            .deep_btn { padding: 8px 20px; font-size: 0.9rem; }
            .deep_slider-arrow { width: 40px; height: 40px; font-size: 1.6rem; }
            .deep_arrow-left { left: 12px; }
            .deep_arrow-right { right: 12px; }
            .deep_thumbnail-item { width: 75px; }
            .deep_thumbnail-img { height: 45px; }
            .deep_thumbnail-title { font-size: 0.6rem; }
            .deep_auto-toggle { bottom: 20px; right: 15px; }
        }

        @media (max-width: 480px) {
            .deep_thumbnail-item { width: 65px; }

            .deep_thumbnail-img { height: 40px; }
        }