.angie-video-slider-f62d3ef2 {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #000;
}

.avs-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.avs-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avs-slide.avs-slide-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

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

.avs-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: -2;
}

.avs-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.avs-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    width: 100%;
}

.avs-slide-title {
    color: #fff;
    margin: 0 0 15px;
    font-size: 2.5rem;
    font-weight: 700;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.2s;
}

.avs-slide-desc {
    color: #fff;
    margin: 0 0 25px;
    font-size: 1.1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.4s;
}

.avs-slide-button {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.6s, background-color 0.3s;
}

.avs-slide-button:hover {
    background-color: #005177;
    color: #fff;
}

.avs-slide.avs-slide-active .avs-slide-title,
.avs-slide.avs-slide-active .avs-slide-desc,
.avs-slide.avs-slide-active .avs-slide-button {
    transform: translateY(0);
    opacity: 1;
}

.avs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.avs-nav:hover {
    background: rgba(0,0,0,0.7);
}

.avs-prev { left: 20px; }
.avs-next { right: 20px; }

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

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

.avs-dot.active, .avs-dot:hover {
    background: #fff;
}