/* ==========================================
   UFF BHABHI
   CONTENT CARDS
========================================== */

/* ==========================================
   SECTION
========================================== */

.content-section{

    position:relative;

    padding:40px 0 10px;

}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.section-header h2{

    font-size:32px;

    font-weight:700;

    color:var(--heading);

}

.section-header a{

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.section-header a:hover{

    color:var(--gold);

}

/* ==========================================
   HORIZONTAL SLIDER
========================================== */

.content-slider{

    display:flex;

    gap:24px;

    overflow-x:auto;

    overflow-y:hidden;

    scroll-behavior:smooth;

    padding-bottom:20px;

}

.content-slider::-webkit-scrollbar{

    display:none;

}

/* ==========================================
   CARD
========================================== */

.movie-card{

    min-width:270px;

    flex:none;

    transition:.35s;

}

.movie-card:hover{

    transform:translateY(-10px);

}

/* ==========================================
   THUMBNAIL
========================================== */

.movie-thumb{

    position:relative;

    height:380px;

    border-radius:22px;

    overflow:hidden;

    background:#000;

    box-shadow:var(--shadow);

}

.movie-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.movie-card:hover img{

    transform:scale(1.08);

}

/* ==========================================
   BADGES
========================================== */

.premium-badge{

    position:absolute;

    top:14px;

    left:14px;

    padding:6px 12px;

    border-radius:100px;

    font-size:11px;

    font-weight:700;

    color:#111;

    background:linear-gradient(

        135deg,

        #FFE16B,

        #F5C542

    );

    box-shadow:

        0 0 18px rgba(245,197,66,.45);

}

.quality-badge{

    position:absolute;

    top:14px;

    right:14px;

    padding:6px 10px;

    border-radius:100px;

    font-size:11px;

    font-weight:700;

    background:rgba(0,0,0,.75);

    color:#fff;

}

/* ==========================================
   OVERLAY
========================================== */

.movie-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:

        linear-gradient(

            rgba(0,0,0,.10),

            rgba(0,0,0,.70)

        );

    opacity:0;

    transition:.35s;

}

.movie-card:hover .movie-overlay{

    opacity:1;

}

.movie-overlay button{

    width:72px;

    height:72px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    color:#fff;

    font-size:22px;

    background:

        linear-gradient(

            135deg,

            var(--primary),

            var(--primary-hover)

        );

    box-shadow:

        0 0 30px rgba(224,0,108,.45);

    transition:.35s;

}

.movie-overlay button:hover{

    transform:scale(1.12);

}

/* ==========================================
   INFO
========================================== */

.movie-info{

    padding-top:15px;

}

.movie-info h3{

    font-size:20px;

    font-weight:700;

    color:var(--heading);

    margin-bottom:8px;

}

.movie-info p{

    color:var(--text-light);

    font-size:14px;

}

/* ==========================================
   HOVER GLOW
========================================== */

.movie-thumb::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    border:2px solid transparent;

    transition:.35s;

}

.movie-card:hover .movie-thumb::after{

    border-color:var(--gold);

    box-shadow:

        0 0 35px rgba(245,197,66,.35);

}

/* ==========================================
   PREMIUM SHINE
========================================== */

.premium-badge::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:

        linear-gradient(

            transparent,

            rgba(255,255,255,.75),

            transparent

        );

    transform:skewX(-25deg);

}

.movie-card:hover .premium-badge::before{

    animation:premiumShine 1s;

}

@keyframes premiumShine{

    to{

        left:180%;

    }

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.movie-card{

    min-width:220px;

}

.movie-thumb{

    height:320px;

}

}

@media(max-width:768px){

.content-section{

    padding:30px 0;

}

.section-header h2{

    font-size:25px;

}

.movie-card{

    min-width:180px;

}

.movie-thumb{

    height:260px;

}

.movie-info h3{

    font-size:17px;

}

}

@media(max-width:480px){

.movie-card{

    min-width:150px;

}

.movie-thumb{

    height:220px;

}

.section-header{

    margin-bottom:18px;

}

}