/*=========================================================
SHORTS PAGE
=========================================================*/

.shorts-page{
    width:100%;
    min-height:100vh;
    background:#000;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:20px 0;
}

/*=========================================================
SHORT ITEM
=========================================================*/

.short-item{
    position:relative;
    width:100%;
    max-width:430px;
    height:92vh;
    background:#000;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.45);
}

/*=========================================================
PLAYER
=========================================================*/

.short-player{
    position:relative;
    width:100%;
    height:100%;
    background:#000;
}

.short-player video,
.short-player iframe{
    width:100%;
    height:100%;
    object-fit:cover;
    border:none;
}

/*=========================================================
GRADIENT
=========================================================*/

.short-player::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:220px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.35),
        rgba(0,0,0,.85)
    );
    pointer-events:none;
}

/*=========================================================
INFO
=========================================================*/

.short-info{
    position:absolute;
    left:18px;
    bottom:28px;
    right:80px;
    color:#fff;
    z-index:10;
}

.short-info h3{
    font-size:20px;
    margin-bottom:10px;
    line-height:1.4;
}

.short-info p{
    font-size:14px;
    line-height:1.7;
    color:#ddd;
    max-height:65px;
    overflow:hidden;
}

.short-meta{
    margin-top:12px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    color:#ccc;
}

/*=========================================================
ACTIONS
=========================================================*/

.short-actions{
    position:absolute;
    right:15px;
    bottom:40px;
    display:flex;
    flex-direction:column;
    gap:16px;
    z-index:20;
}

.short-btn{
    width:56px;
    height:56px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    border:none;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
    text-decoration:none;
}

.short-btn:hover{
    background:#ff0000;
    transform:scale(1.08);
}

.short-btn i{
    font-size:20px;
}

.short-btn span{
    margin-top:4px;
    font-size:11px;
}

/*=========================================================
CHANNEL
=========================================================*/

.short-channel{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}

.short-channel img{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:cover;
}

.short-channel strong{
    font-size:15px;
}

.short-channel .verified{
    color:#3ea6ff;
    margin-left:4px;
}

/*=========================================================
EMPTY
=========================================================*/

.empty-videos{
    text-align:center;
    color:#fff;
    padding:100px 20px;
}

.empty-videos i{
    font-size:70px;
    margin-bottom:20px;
}

.empty-videos h2{
    margin-bottom:10px;
}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:768px){

.short-item{
    width:100%;
    height:100vh;
    border-radius:0;
    margin:0;
}

.short-info{
    right:75px;
    left:15px;
}

.short-info h3{
    font-size:18px;
}

.short-actions{
    right:10px;
}

.short-btn{
    width:52px;
    height:52px;
}

}