.sticky-slides-container {
    display: flex;
    min-height: 100vh;
    direction: rtl;
    position: relative;
    gap: 4rem;
}

.sticky-slides-content {
    flex: 1;
    padding: 0;
    max-width: 50%;
    padding-top: 20vh;
}

.sticky-slide-item {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 0;
    opacity: 0.3;
    transition: opacity 0.6s ease;
}

.sticky-slide-item:first-child {
    margin-top: 0;
}

.sticky-slide-item:last-child {
    margin-bottom: 20vh;
}

.sticky-slide-item.active {
    opacity: 1;
}

.sticky-slide-badge {
    background-color: #9ca3af;
    color: white;
    padding: 0 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 1rem;
    width: fit-content;
}

.sticky-slide-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    color: #333;
    margin: 0;
    max-width: 90%;
}

.sticky-slide-display {
    flex: 1;
    position: sticky;
    top: 20vh;
    height: 60vh;
    max-width: 45%;
    flex-basis: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4a4a4a;
    border-radius: 20px;
    margin: 10vh 0;
    padding: 2rem;
    box-sizing: border-box;
    z-index: 2;
}

.sticky-slide-number {
    font-size: 8rem;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: opacity 0.6s ease;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sticky-slide-number.active {
    opacity: 1;
}

/* Slide Indicator */
.slide-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
}

.slide-indicator.indicator-right {
    right: -40px;
}

.slide-indicator.indicator-left {
    left: -40px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cccccc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator-dot.active {
    background-color: #333333;
    transform: scale(1.2);
}

.indicator-dot:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-slides-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .sticky-slides-content {
        max-width: 100%;
        order: 2;
    }
    
    .sticky-slide-display {
        position: static;
        top: auto;
        margin: 1rem;
        height: 300px;
        max-width: 100%;
        order: 1;
    }
    
    .sticky-slide-item {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .sticky-slide-title {
        font-size: 1.8rem;
        max-width: 100%;
    }
    
    .sticky-slide-number {
        font-size: 4rem;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .slide-indicator {
        bottom: -50px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        justify-content: center;
    }
    
    .slide-indicator.indicator-right,
    .slide-indicator.indicator-left {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .sticky-slide-title {
        font-size: 1.5rem;
    }
    
    .sticky-slide-number {
        font-size: 3rem;
    }
    
    .sticky-slides-content {
        padding: 0;
    }
    
    .sticky-slide-display {
        height: 250px;
    }
}