.asp-slider {
    position: relative;
    max-width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.asp-slides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s ease-in-out;
}

.asp-slides.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.asp-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asp-caption {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    animation: slideUp 1.5s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.asp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
}

.asp-nav.prev { left: 20px; }
.asp-nav.next { right: 20px; }

.asp-nav:hover {
    background: rgba(0,0,0,0.8);
}
