.slider-container {
    width: 48cqw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5cqh;
    margin-bottom: 3cqh;
    padding: 3cqh 4cqw;
    background: linear-gradient(135deg, rgba(8, 15, 36, 0.7) 0%, rgba(4, 8, 20, 0.85) 100%);
    border: 0.15cqh solid rgba(255, 255, 255, 0.12);
    border-radius: 2.5cqh;
    backdrop-filter: blur(2.5cqh);
    -webkit-backdrop-filter: blur(2.5cqh);
    box-shadow: 0 2cqh 5cqh rgba(0, 0, 0, 0.6), 
                inset 0 0.1cqh 0.2cqh rgba(255, 255, 255, 0.15);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.slider-container:hover {
    background: linear-gradient(135deg, rgba(12, 22, 50, 0.75) 0%, rgba(6, 12, 28, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2.5cqh 6cqh rgba(0, 0, 0, 0.7), 
                0 0 2cqh rgba(255, 255, 255, 0.05),
                inset 0 0.1cqh 0.2cqh rgba(255, 255, 255, 0.2);
}

.phase-label {
    color: #fffae8;
    font-size: 2.5cqh;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3cqw;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 
                 0 0 1.5cqh rgba(255, 250, 232, 0.4), 
                 0 0 3cqh rgba(218, 165, 32, 0.25);
    margin-bottom: 0.5cqh;
    user-select: none;
    transition: transform var(--transition-duration-normal) ease-out;
}

.slider-carousel-container {
    position: relative;
    width: 100%;
    height: 12cqh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    user-select: none;
}

.carousel-wheel {
    position: relative;
    width: 8cqh;
    height: 8cqh;
}

.carousel-item {
    position: absolute;
    width: 8cqh;
    height: 8cqh;
    left: 50%;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    pointer-events: auto;
    transition: opacity 0.5s ease, transform 0.5s ease;
    --spacing: 7cqw;
    transform: translate(-50%, -50%) translateX(calc(var(--diff) * var(--spacing))) scale(var(--scale, 1));
    opacity: var(--opacity, 1);
}

.carousel-item[data-offset="0"] {
    --scale: 1.25;
    --opacity: 1;
    z-index: 10;
}

.carousel-item[data-offset="1"] {
    --scale: 0.85;
    --opacity: 0.7;
    z-index: 5;
}

.carousel-item:hover {
    --scale-hover-factor: 1.15;
    --opacity-hover-factor: 1.3;
    transform: translate(-50%, -50%) translateX(calc(var(--diff) * var(--spacing))) scale(calc(var(--scale, 1) * var(--scale-hover-factor)));
    opacity: calc(var(--opacity, 1) * var(--opacity-hover-factor));
}

.carousel-item:hover .tick-icon {
    filter: brightness(1.1) drop-shadow(0 0 1cqh rgba(255, 223, 128, 0.6)) sepia(0.1);
    opacity: 0.95;
}

.carousel-item[data-offset="2"] {
    --scale: 0.65;
    --opacity: 0.35;
    z-index: 3;
}

.carousel-item[data-offset="3"] {
    --scale: 0.5;
    --opacity: 0.15;
    z-index: 2;
}

.carousel-item[data-offset="4"] {
    --scale: 0.4;
    --opacity: 0.05;
    z-index: 1;
}

.tick-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: brightness(0.8) sepia(0.15) contrast(1.1);
    opacity: 0.65;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.tick-icon.new-moon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 0.15cqh dashed rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.65;
}

.carousel-item.active {
    z-index: 10;
}

.carousel-item.active .tick-icon {
    opacity: 1;
    filter: brightness(1.3) drop-shadow(0 0 1.5cqh rgba(255, 223, 128, 0.95)) sepia(0.1) saturate(1.3);
}

.carousel-item.active .tick-icon.new-moon {
    border-color: rgba(255, 223, 128, 0.8);
    box-shadow: 0 0 1.8cqh rgba(255, 223, 128, 0.7);
    background: rgba(255, 223, 128, 0.15);
}
