/* Wrapper & Fog/Fade Effects */
.cc-28de43f2-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 40px 0;
}

.cc-28de43f2-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.cc-28de43f2-fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(10,10,15,1), transparent);
}

.cc-28de43f2-fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(10,10,15,1), transparent);
}

/* Swiper overrides */
.cc-28de43f2-carousel {
    padding: 20px 0;
    overflow: visible !important;
}

/* Card Styling */
.cc-28de43f2-slide {
    display: flex;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.cc-28de43f2-card {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 520px;
    border-radius: 6px;
    overflow: hidden;
    background: #0a0a0f;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cc-28de43f2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(185, 28, 28, 0.2), 0 0 20px rgba(255,255,255,0.05);
}

.cc-28de43f2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.cc-28de43f2-card:hover .cc-28de43f2-bg {
    transform: scale(1.05);
}

/* Cinematic Dark Gradient */
.cc-28de43f2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #0a0a0f 10%, rgba(10,10,15,0.7) 40%, transparent 100%);
    z-index: 1;
}

/* Soft Light Sweep on Hover */
.cc-28de43f2-light-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    transition: none;
}

.cc-28de43f2-card:hover .cc-28de43f2-light-sweep {
    animation: lightSweep-28de43f2 1s forwards;
}

@keyframes lightSweep-28de43f2 {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Text Content */
.cc-28de43f2-content {
    position: relative;
    z-index: 3;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc-28de43f2-genre {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.cc-28de43f2-title {
    color: #e5e5e5;
    font-size: 28px;
    font-family: "Playfair Display", serif;
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.cc-28de43f2-synopsis {
    color: #a3a3a3;
    font-size: 13px;
    line-height: 1.5;
    margin: 5px 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Buttons */
.cc-28de43f2-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cc-28de43f2-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 15px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cc-28de43f2-btn-primary {
    color: #fff;
    background: transparent;
    border: 1px solid transparent;
}

.cc-28de43f2-btn-secondary {
    color: #a3a3a3;
    border: 1px solid #333;
    background: rgba(0,0,0,0.4);
}

.cc-28de43f2-btn-secondary:hover {
    color: #fff;
    border-color: #666;
    background: rgba(0,0,0,0.8);
}

/* Navigation */
.cc-28de43f2-nav {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.cc-28de43f2-nav:hover {
    color: #fff;
}
