        /* Основные стили слайдера */
        .alternative-slider {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            margin: 20px 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slider-container {
            width: 100%;
            max-width: 1200px; /* Ограничиваем максимальную ширину */
            height: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            margin: 0 auto;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s ease-in-out;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            will-change: transform, opacity;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 15px;
        }

        /* Состояния слайдов */
        .slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 3;
        }

        .slide.prev {
            transform: translateX(-30%) scale(0.85);
            opacity: 0.6;
            z-index: 2;
        }

        .slide.next {
            transform: translateX(30%) scale(0.85);
            opacity: 0.6;
            z-index: 2;
        }

        /* Оверлей и текст */
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
            z-index: 1;
            border-radius: 15px;
        }

        .slide-info {
            position: absolute;
            bottom: 20px;
            left: 203px;
            right: 20px;
            color: white;
            z-index: 2;
            text-align: left;
        }

        .slide-info h3 {
            font-size: 2em;
            margin: 0 0 10px 0;
            font-weight: bold;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }

        .slide-info p {
            font-size: 1.2em;
            margin: 5px 0;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }

        .watch-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #ffcc00;
            color: #000;
            text-decoration: none;
            border-radius: 20px;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.3s;
        }

        .watch-button:hover {
            background-color: #e6b800;
            transform: translateY(-2px);
        }

        /* Навигация */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ffcc00, #e6b800);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            z-index: 10;
            font-size: 1.2em;
        }

        .slider-nav:hover {
            background: linear-gradient(135deg, #e6b800, #ffcc00);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev-nav {
            left: 20px;
        }

        .slider-nav.next-nav {
            right: 20px;
        }

        /* Индикаторы */
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 4;
        }

        .dot {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: #ffcc00;
            transform: scale(1.3);
        }

        .dot:hover {
            background-color: #ffcc00;
            transform: scale(1.3);
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .alternative-slider {
                height: 300px;
            }

            .slide-info h3 {
                font-size: 1.5em;
            }

            .slide-info p {
                font-size: 1em;
            }

            .watch-button {
                padding: 8px 16px;
                font-size: 0.9em;
            }

            .slider-dots {
                bottom: 10px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }

            .slide.prev {
                transform: translateX(-25%) scale(0.85);
            }

            .slide.next {
                transform: translateX(25%) scale(0.85);
            }
        }

        @media (max-width: 480px) {
            .alternative-slider {
                height: 250px;
            }

            .slide.prev {
                transform: translateX(-20%) scale(0.85);
            }

            .slide.next {
                transform: translateX(20%) scale(0.85);
            }
        }