/* =========================================
   VIDEO32 MASAÜSTÜ CSS
   MOBİLDE GİZLENİR
========================================= */

/* MOBİLDE TAMAMEN GİZLE */

@media screen and (max-width:991px){

    .video32-section{
        display:none !important;
    }

}

/* MASAÜSTÜ */

.video32-section{
    width:100%;
    max-width:940px;
    margin:25px auto;
    background:#fff;
    border:1px solid #ececec;
    border-radius:28px;
    padding:22px;
    box-sizing:border-box;
    display:flex;
    position:relative;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(0,0,0,.05);
}

/* SOL */

.video32-left{
    width:220px;
    flex:none;
    position:relative;
    z-index:5;
}

.video32-logo img{
    width:165px;
    display:block;
}

.video32-line{
    width:80px;
    height:4px;
    background:#ececec;
    border-radius:20px;
    margin:16px 0;
}

.video32-playtext{
    font-size:34px;
    font-weight:900;
    letter-spacing:8px;
    color:#ff4fa3;
    margin-bottom:22px;
}

.video32-desc{
    font-size:15px;
    line-height:1.8;
    color:#111;
    font-weight:700;
    margin-bottom:22px;
}

.video32-btn{
    display:inline-block;
    padding:14px 22px;
    background:#ff0f57;
    color:#fff !important;
    text-decoration:none !important;
    border-radius:14px;
    font-size:13px;
    font-weight:900;
}

/* OKLAR */

.video32-nav{
    position:absolute;
    left:225px;
    top:100px;
    z-index:50;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.video32-prev,
.video32-next{
    width:54px;
    height:54px;
    border:none;
    border-radius:12px;
    background:#ff0f57;
    color:#fff;
    font-size:38px;
    line-height:54px;
    font-weight:bold;
    cursor:pointer;
    box-shadow:0 5px 14px rgba(0,0,0,.18);
}

/* SAĞ */

.video32-right{
    width:calc(100% - 240px);
    margin-left:22px;
    overflow:hidden;
}

#video32-slider{
    display:flex;
    gap:16px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    scrollbar-width:none;
    height:385px;
}

#video32-slider::-webkit-scrollbar{
    display:none;
}

/* KART */

.video32-card{
    width:190px;
    min-width:190px;
    height:385px;
    border-radius:26px;
    overflow:hidden;
    position:relative;
    flex:none;
    cursor:pointer;
    background:#000;
}

.video32-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.video32-overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.15));
}

/* PLAY */

.video32-play{
    position:absolute;
    left:50%;
    top:110px;
    transform:translateX(-50%);
    width:84px;
    height:84px;
    border:4px solid #fff;
    border-radius:50%;
}

.video32-play:before{
    content:'';
    position:absolute;
    left:33px;
    top:23px;
    border-left:28px solid #fff;
    border-top:18px solid transparent;
    border-bottom:18px solid transparent;
}

/* İZLE */

.video32-watch{
    position:absolute;
    top:208px;
    width:100%;
    text-align:center;
    color:#fff;
    font-size:20px;
    font-weight:900;
    letter-spacing:4px;
}

/* ETİKET */

.video32-category{
    position:absolute;
    left:14px;
    bottom:86px;
    padding:9px 14px;
    border-radius:10px;
    color:#fff;
    font-size:12px;
    font-weight:900;
}

.cat-red{
    background:#c40000;
}

.cat-yellow{
    background:#a59b00;
}

.cat-green{
    background:#00796b;
}

/* BAŞLIK */

.video32-title{
    position:absolute;
    left:14px;
    right:14px;
    bottom:18px;
    color:#fff;
    font-size:16px;
    line-height:1.4;
    font-weight:900;
}

/* POPUP */

.video32-popup{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.92);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999999;
}

.video32-popup-content{
    width:90%;
    max-width:950px;
    position:relative;
}

.video32-popup iframe{
    width:100%;
    height:540px;
    border:none;
    border-radius:18px;
    background:#000;
}

.video32-popup-close{
    position:absolute;
    top:-45px;
    right:0;
    color:#fff;
    font-size:42px;
    cursor:pointer;
}