/* Movie Grid Wrapper */
.custom-movies-section-94f52b34 {
    display: grid;
    grid-template-columns: 24% 1fr;
    gap: 30px;
    width: 100%;
    margin-bottom: 50px;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .custom-movies-section-94f52b34 {
        grid-template-columns: 1fr;
    }
}

/* 1. Title Card Section Mimic */
.custom-title-card-con-94f52b34 {
    border-radius: 60px;
    background-image: linear-gradient(125deg, #C96CF2 5%, #8EC6E2 105%);
    padding: 3px;
    height: 100%;
    min-height: 250px;
    display: flex;
    box-sizing: border-box;
}

.custom-title-card-inner-94f52b34 {
    background-color: #110B3B; /* Secondary color match */
    border-radius: 57px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

.custom-section-title-94f52b34 {
    color: #ffffff;
    font-family: "Encode Sans Expanded", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 768px) {
    .custom-title-card-con-94f52b34 {
        border-radius: 40px;
        min-height: 180px;
    }
    .custom-title-card-inner-94f52b34 {
        border-radius: 37px;
        padding: 20px;
    }
    .custom-section-title-94f52b34 {
        font-size: 1.4rem;
    }
}

/* 2. Grid Area */
.custom-loop-grid-94f52b34 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .custom-loop-grid-94f52b34 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .custom-loop-grid-94f52b34 {
        grid-template-columns: 1fr;
    }
}

/* 3. Single Loop Card Mimic */
.single-movie-item-94f52b34 {
    border-radius: 60px;
    background-image: linear-gradient(125deg, #C96CF2 5%, #8EC6E2 105%);
    padding: 3px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.movie-inner-box-94f52b34 {
    background-color: #110B3B; /* Secondary background */
    border-radius: 57px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

/* Image Widget mimics */
.movie-image-wrapper-94f52b34 {
    position: relative;
    overflow: hidden;
    border-radius: 57px;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.movie-image-wrapper-94f52b34 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.single-movie-item-94f52b34:hover .movie-image-wrapper-94f52b34 img {
    transform: scale(1.05);
}

/* Completed Overlay */
.completed-caption-overlay-94f52b34 {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    padding: 0 40px;
    background: rgba(23, 13, 65, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 57px;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    z-index: 2;
    box-sizing: border-box;
}

.movie-image-wrapper-94f52b34:hover .completed-caption-overlay-94f52b34 {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.caption-text-94f52b34 {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

/* Details Section */
.movie-details-content-94f52b34 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 30px 40px 40px 40px;
    box-sizing: border-box;
}

/* Status specific padding mimics */
.status-completed .movie-details-content-94f52b34 {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px 30px 40px;
}

.movie-title-94f52b34 {
    margin: 0 0 15px 0;
    font-family: "Encode Sans Expanded", sans-serif;
}

.movie-title-94f52b34 a {
    color: #C96CF2; /* Primary Global color match */
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
}

.status-completed .movie-title-94f52b34 {
    margin: 0;
    max-width: 80%;
}

.status-completed .movie-title-94f52b34 a {
    font-size: 1.1rem;
}

.movie-excerpt-94f52b34 {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.85;
}

/* Buttons and play structures */
.movie-action-con-94f52b34 {
    margin-top: auto;
}

.status-completed .movie-action-con-94f52b34 {
    margin-top: 0;
}

.movie-button-link-94f52b34 {
    display: inline-block;
    background-color: #C96CF2; /* Accent match */
    color: #110B3B;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

/* "More" standard Button */
.more-btn-94f52b34 {
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.more-btn-94f52b34:hover {
    background-color: #ffffff;
    color: #C96CF2;
    transform: translateY(-2px);
}

/* "Play" Icon Button */
.play-btn-94f52b34 {
    background-color: #8EC6E2;
    color: #110B3B;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.play-icon-94f52b34 {
    width: 16px;
    height: 16px;
}

.play-btn-94f52b34:hover {
    color: #8EC6E2;
    background-color: #ffffff;
    transform: scale(1.1);
}

/* Responsiveness adjustments */
@media (max-width: 1024px) {
    .single-movie-item-94f52b34 {
        border-radius: 50px;
    }
    .movie-inner-box-94f52b34 {
        border-radius: 47px;
    }
    .movie-image-wrapper-94f52b34 {
        border-radius: 47px;
    }
    .movie-details-content-94f52b34 {
        padding: 25px 30px 30px 30px;
    }
    .status-completed .movie-details-content-94f52b34 {
        padding: 20px 30px 20px 30px;
    }
}

@media (max-width: 767px) {
    .single-movie-item-94f52b34 {
        border-radius: 40px;
    }
    .movie-inner-box-94f52b34 {
        border-radius: 37px;
    }
    .movie-image-wrapper-94f52b34 {
        border-radius: 37px;
    }
    .status-completed .movie-details-content-94f52b34 {
        flex-direction: row;
        padding: 15px 20px;
    }
}
