.custom-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.custom-slider-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.custom-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.custom-slider-slide {
    flex: 0 0 100%;
    position: relative;
    width: 100%;
    height: 100%;
}

.custom-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
	object-position: center;
    display: block;
}

.custom-slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
}

.custom-slider-caption h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
}

.custom-slider-caption p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.custom-slider-prev,
.custom-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.custom-slider-prev:hover,
.custom-slider-next:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

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

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

.custom-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.custom-slider-dot.active,
.custom-slider-dot:hover {
    background: white;
    border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-slider-prev,
    .custom-slider-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .custom-slider-prev {
        left: 10px;
    }
    
    .custom-slider-next {
        right: 10px;
    }
    
    .custom-slider-caption {
        padding: 20px 15px 15px;
    }
    
    .custom-slider-caption h3 {
        font-size: 18px;
    }
    
    .custom-slider-caption p {
        font-size: 14px;
    }
}