.is-2b8df727-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.is-2b8df727-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.is-2b8df727-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.is-2b8df727-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.is-2b8df727-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.is-2b8df727-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.2s;
}

.is-2b8df727-slide.is-active .is-2b8df727-content {
    transform: translateY(0);
    opacity: 1;
}

.is-2b8df727-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.is-2b8df727-desc {
    font-size: 1.2rem;
    color: #f0f0f0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.is-2b8df727-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.is-2b8df727-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.is-2b8df727-prev { left: 1rem; }
.is-2b8df727-next { right: 1rem; }

.is-2b8df727-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.is-2b8df727-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.is-2b8df727-dot.is-active,
.is-2b8df727-dot:hover {
    background: #fff;
}