.hs-8f63-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-8f63-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hs-8f63-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hs-8f63-slide.hs-8f63-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hs-8f63-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hs-8f63-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hs-8f63-content {
    max-width: 800px;
    padding: 20px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease-out 0.3s, opacity 0.6s ease-out 0.3s;
}

.hs-8f63-slide.hs-8f63-active .hs-8f63-content {
    transform: translateY(0);
    opacity: 1;
}

.hs-8f63-title {
    margin-bottom: 15px;
    font-size: 3em;
}

.hs-8f63-subtitle {
    margin-bottom: 25px;
    font-size: 1.2em;
}

.hs-8f63-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.hs-8f63-btn:hover {
    opacity: 0.9;
}

.hs-8f63-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
    transition: background 0.3s, opacity 0.3s;
}

.hs-8f63-nav:hover {
    background: rgba(255,255,255,0.5);
}

.hs-8f63-prev { left: 20px; }
.hs-8f63-next { right: 20px; }

.hs-8f63-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hs-8f63-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.hs-8f63-dot.hs-8f63-dot-active,
.hs-8f63-dot:hover {
    background: #fff;
}