/* Slider wrapper */
.nas-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: hidden;
}

.nas-slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    width: 100% !important;
    min-height: 400px;
    background: #1a1a2e;
}

/* Each slide */
.nas-slide {
    min-width: 100%;
    flex: 0 0 100%;
    position: relative;
}

.nas-slide-inner {
    display: block;
    position: relative;
    height: 400px;
    background: #1a1a2e;
    width: 100%;
}

.nas-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
    color: #fff !important;
    position: relative;
}

.nas-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.8s ease;
    position: relative;
}

.nas-slide:hover .nas-slide-image {
    transform: scale(1.05);
}

.nas-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.nas-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px 40px;
    z-index: 2;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

/* Post Date */
.nas-post-date {
    display: inline-block;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #ff6b6b !important;
    background: rgba(255,255,255,0.15);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
}

.nas-slide-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 0 10px !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nas-slide-excerpt {
    font-size: 16px !important;
    color: rgba(255,255,255,0.9) !important;
    margin: 0 0 12px !important;
    opacity: 0.9;
    line-height: 1.5 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nas-read-more {
    display: inline-block;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #ff6b6b !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.nas-slide:hover .nas-read-more {
    color: #fff !important;
    border-bottom-color: #fff;
    padding-bottom: 6px;
}

/* Navigation buttons */
.nas-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nas-nav-btn:hover {
    background: #ff6b6b;
    border-color: #ff6b6b;
    transform: translateY(-50%) scale(1.1);
}

.nas-prev-btn {
    left: -10px;
}

.nas-next-btn {
    right: -10px;
}

/* Dots */
.nas-dots-container {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 10px 0;
}

.nas-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nas-dot.active {
    background: #ff6b6b;
    border-color: #ff6b6b;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255,107,107,0.4);
}

.nas-dot:hover {
    background: #ff6b6b;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nas-slider-wrapper {
        padding: 0 15px;
    }
    .nas-slide-inner {
        height: 300px;
    }
    .nas-slide-content {
        padding: 20px;
    }
    .nas-slide-title {
        font-size: 20px !important;
    }
    .nas-slide-excerpt {
        font-size: 14px !important;
    }
    .nas-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .nas-prev-btn {
        left: 5px;
    }
    .nas-next-btn {
        right: 5px;
    }
    .nas-post-date {
        font-size: 11px !important;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .nas-slide-inner {
        height: 250px;
    }
    .nas-slide-title {
        font-size: 17px !important;
    }
    .nas-read-more {
        font-size: 12px !important;
    }
    .nas-slide-excerpt {
        display: none !important;
    }
    .nas-post-date {
        font-size: 10px !important;
        padding: 2px 8px;
    }
}