/* Основной контейнер */
.circle-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    margin-top: 1030px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
}

.circle-slider__inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Кнопки навигации */
.circle-slider__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.3s;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-slider__control:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.2);
}

.circle-slider__control svg {
    width: 30px;
    height: 16px;
}

.circle-slider__control--prev {
    left: 50px;
}

.circle-slider__control--next {
    right: 50px;
}

/* Метка активного слайда */
.circle-slider__label {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    font-weight: 700;
    color: #FFD700; /* Желтый как в примере */
    text-align: center;
    z-index: 50;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Times New Roman', serif;
    transition: all 0.5s ease;
}

/* Колесо слайдов */
.circle-slider__wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Внешний круг */
.circle-slider__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    border: 2px solid;
}

/* Отдельный слайд */
.circle-slider__item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 400px;
    transform-origin: 0 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.circle-slider__item-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    transition: all 0.8s ease;
    border-radius: 20px;
    cursor: grab;
}

.circle-slider__item-inner:active {
    cursor: grabbing;
}

/* Изображение */
.circle-slider__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: rotate(90deg);
    border-radius: 20px;
}

.circle-slider__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Активный слайд */
.circle-slider__item[data-active="true"] {
    z-index: 3;
}

.circle-slider__item[data-active="true"] .circle-slider__item-inner {
    transform: translateY(-50%) scale(1);
    filter: blur(0px);
}

/* Неактивные слайды */
.circle-slider__item[data-active="false"] .circle-slider__item-inner {
    transform: translateY(-50%) scale(0.8);
    filter: blur(10px);
    opacity: 0.7;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .circle-slider__label {
        font-size: 40px;
        top: 15%;
    }
    
    .circle-slider__wheel {
        width: 500px;
        height: 500px;
    }
    
    .circle-slider__circle {
        width: 400px;
        height: 400px;
    }
    
    .circle-slider__item {
        width: 250px;
        height: 350px;
    }
    
    .circle-slider__control {
        width: 50px;
        height: 50px;
    }
    
    .circle-slider__control--prev {
        left: 20px;
    }
    
    .circle-slider__control--next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .circle-slider {
        height: 70vh;
        min-height: 600px;
    }
    
    .circle-slider__label {
        font-size: 30px;
        top: 10%;
    }
    
    .circle-slider__wheel {
        width: 400px;
        height: 400px;
    }
    
    .circle-slider__circle {
        width: 300px;
        height: 300px;
    }
    
    .circle-slider__item {
        width: 200px;
        height: 280px;
    }
}