.angie-slider-d3dd744d {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    touch-action: pan-y;
}

.angie-slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.angie-slide-d3dd744d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    text-decoration: none;
}

.angie-slide-d3dd744d:hover {
    text-decoration: none;
}

.angie-slide-d3dd744d.angie-slide-active {
    opacity: 1;
    z-index: 2;
}

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

.angie-slide-content {
    padding: 20px;
    max-width: 80%;
    z-index: 3;
    position: relative;
}

.angie-slide-title {
    margin: 0 0 10px;
    color: #333;
    font-size: 2em;
}

.angie-slide-desc {
    font-size: 1.1em;
    color: #333;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.8);
}

/* Navigation Arrows */
.angie-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    padding: 0 20px;
}

.angie-slider-arrow {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 32px;
    cursor: pointer;
    padding: 10px;
    pointer-events: auto;
    transition: color 0.3s, transform 0.3s;
    /* text-shadow handled by widget controls */
    box-shadow: none !important;
}

.angie-slider-arrow:hover {
    color: #ffffff;
    transform: scale(1.1);
    background: transparent;
}

/* Navigation Dots */
.angie-slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.angie-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.angie-slider-dot.active, .angie-slider-dot:hover {
    background-color: white;
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .angie-slider-arrows {
        display: none;
    }
}