.fc-carousel-wrapper-dacd201e {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.fc-carousel-container {
    overflow: hidden;
    width: 100%;
}

.fc-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.fc-carousel-slide {
    flex-shrink: 0;
    padding: 15px;
    box-sizing: border-box;
}

/* Card Styling */
.fc-carousel-card {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fc-carousel-card:hover {
    transform: translateY(-5px);
}

.fc-media-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.fc-media-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fc-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.fc-video-wrapper video,
.fc-video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glassy Overlay */
.fc-glass-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.fc-carousel-card:hover .fc-glass-overlay {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.fc-text-content {
    color: #fff;
}

.fc-title {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.fc-desc {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Nav Buttons */
.fc-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.fc-nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.fc-nav-prev {
    left: -25px;
}

.fc-nav-next {
    right: -25px;
}

@media (max-width: 1024px) {
    .fc-nav-prev { left: -10px; }
    .fc-nav-next { right: -10px; }
}

/* Lightbox Modal */
.fc-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fc-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.fc-lightbox-close:hover {
    color: #ff3333;
}

.fc-lightbox-body {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-lightbox-media {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    object-fit: contain;
}

.fc-lightbox-title {
    color: #fff;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}
