.np-container {
    position: relative;
    width: 100%;
    height: var(--np-height, 450px);
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    font-family: var(--np-font, 'Oswald', sans-serif);
    margin-bottom: 5px;
}

.np-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.np-slide.active {
    opacity: 1;
    display: block;
}

.np-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.np-spot {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: none !important;
}

.np-overlay {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    padding: 15px 25px 15px;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    backdrop-filter: blur(var(--np-blur, 5px));
    -webkit-backdrop-filter: blur(var(--np-blur, 5px));
}

.np-title {
    color: var(--np-title-color, #ffffff);
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    text-transform: none !important;
}

.np-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: #fff;
    z-index: 10;
    border-top: 1px solid #eee;
}

.np-btn {
    border: none;
    background: transparent;
    color: #000;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}

.np-btn:last-child {
    border-right: none;
}

.np-btn.active {
    background: #ff0000;
    color: #fff;
}

/* Nav Style: Circles */
.np-nav.np-nav-circles {
    justify-content: center;
    padding: 12px;
    background: #fff;
    border-top: 1px solid #eee;
}

.np-nav-circles .np-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex: none;
    background: #f5f5f5;
    color: #333;
    margin: 0 5px;
    border: 1px solid #ddd;
}

.np-nav-circles .np-btn.active {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

/* Nav Style: Dots */
.np-nav.np-nav-dots {
    justify-content: center;
    padding: 18px;
    background: #fff;
    border-top: 1px solid #eee;
}

.np-nav-dots .np-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    min-width: 0;
    flex: none;
    background: #ddd;
    color: transparent;
    font-size: 0;
    margin: 0 8px;
    border: none;
}

.np-nav-dots .np-btn.active {
    width: 25px;
    border-radius: 10px;
    background: #ff0000;
}

.np-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.np-arrow:hover {
    background: #e74c3c;
}

.np-prev {
    left: 15px;
}

.np-next {
    right: 15px;
}

@media (max-width: 768px) {
    .np-title {
        font-size: 24px;
    }

    .np-spot {
        font-size: 12px;
        padding: 4px 8px;
        margin-bottom: 5px;
    }

    .np-overlay {
        padding: 15px;
    }

    .np-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}