.naxel-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.naxel-carousel-wrapper {
    position: relative;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.naxel-carousel-slide {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.naxel-carousel-slide-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

.naxel-carousel-slide-content h1,
.naxel-carousel-slide-content h2,
.naxel-carousel-slide-content h3 {
    margin-bottom: 20px;
}

.naxel-carousel-slide-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Placeholder styles */
.naxel-carousel-placeholder {
    background: #f5f5f5;
    border: 2px dashed #ddd;
}

.naxel-carousel-placeholder-content {
    text-align: center;
    padding: 40px;
}

.naxel-carousel-placeholder-content p {
    font-size: 16px;
    color: #999;
    margin: 0;
}

/* Navigation Styles */
.naxel-carousel-navigation {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
}

.naxel-carousel-nav-right {
    right: 30px;
}

.naxel-carousel-nav-left {
    left: 30px;
}

.naxel-carousel-nav-dot {
    width: 4px;
    height: 60px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.naxel-carousel-nav-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #0E55AC;
    transition: height 0.4s ease;
    border-radius: 2px;
}

.naxel-carousel-nav-dot.active::before {
    height: 100%;
}

.naxel-carousel-nav-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.naxel-carousel-nav-dot:hover::before {
    background-color: #1a6bc4;
}

/* Responsive */
@media (max-width: 768px) {
    .naxel-carousel-navigation {
        gap: 10px;
        padding: 15px;
    }

    .naxel-carousel-nav-right {
        right: 10px;
    }

    .naxel-carousel-nav-left {
        left: 10px;
    }
    
    .naxel-carousel-placeholder-content p {
        font-size: 14px;
    }
}

/* Scrolling State */
.naxel-carousel-container.is-scrolling {
    pointer-events: none;
}

.naxel-carousel-container.is-active {
    position: relative;
}
