.halykfund-arc-carousel-wrapper {
    position: relative;
    padding: 10vh 0 20vh 0; /* Huge bottom padding to prevent arc cutoff */
    --arc-curve: 120px;
}

.arc-force-fullwidth {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    position: relative;
}

.halykfund-arc-carousel-container {
    width: 100%;
    overflow: visible !important; 
    clip-path: none !important;
}

.arc-carousel-inner {
    overflow: visible !important;
}

.swiper-wrapper .swiper-slide.arc-slide {
    width: var(--arc-slide-width, 28vw) !important;
    max-width: 480px !important; 
    min-width: 280px !important;
    aspect-ratio: 9 / 16;
    height: auto !important;
    border-radius: 16px;
    background: transparent !important; 
    visibility: visible !important;
}

@media (max-width: 768px) {
    .swiper-wrapper .swiper-slide.arc-slide {
        width: var(--arc-slide-width-mobile, 65vw) !important;
        max-width: 380px !important;
        min-width: 260px !important;
    }
}

.arc-slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    background: transparent;
    /* Removed hardware acceleration hacks here to prevent Safari video blackout bugs */
}

.arc-slide-inner video,
.arc-slide-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    background: transparent;
}

.arc-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.arc-carousel-controls button {
    background: transparent;
    border: 2px solid #ccc;
    color: #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.arc-carousel-controls button:hover {
    border-color: #000;
    color: #000;
}
