*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    overflow:hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.video-page-wrapper{
    position:relative;
    width:38%;
    height:100vh;
    margin:0 auto;
    background:#f1eeee;
}

@media(max-width:768px){
    .video-page-wrapper{
        width:100%;
    }
}

.video-feed{
    width:100%;
    height:100vh;
    overflow-y:scroll;
    scroll-snap-type:y mandatory;
}

.video-feed::-webkit-scrollbar{
    width:0;
}


.video-item{
    width:100%;
    height:100vh;
    position:relative;
    scroll-snap-align:start;
    background:#000;
    border:2px solid rgba(255,122,191,0.5);
}


.video-player{
    width:100%;
    height:100%;
    object-fit:cover;
}


.video-info{
    position:absolute;
    left:15px;
    bottom:25px;
    color:#fff;
    max-width:70%;
    z-index:5;
}

.video-info h3{
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
}

.video-info p{
    font-size:13px;
    line-height:1.5;
    color:#e5e7eb;
}


.tags{
    margin-top:8px;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.tag{
    padding:4px 10px;
    font-size:12px;
    border-radius:999px;
    background:#374151;
    color:#fff;
}

.tag.orange{
    background:#f97316;
}

.tag.gray{
    background:#6b7280;
}


.video-actions{
    position:absolute;
    right:12px;
    bottom:140px;
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:5;
}

.act{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    text-decoration:none;
    box-shadow:0 0 12px rgba(0,0,0,.6);
    transition:.25s;
}

.act:hover{
    transform:scale(1.12);
}


.act.pink{
    background:#ff4fa3;
}

.act.green{
    background:#22c55e;
}

.act.blue{
    background:#3b82f6;
}


@media(max-width:768px){
    .video-info{
        max-width:80%;
    }
}
.video-feed{
    scrollbar-width:none;       
    -ms-overflow-style:none;     
}

.video-feed::-webkit-scrollbar{
    display:none;                
}


.video-nav{
    position:absolute;
    right:14px;
    top:45%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:50;
}

.video-nav button{
    width:52px;
    height:58px;
    border-radius:14px;
    border:none;
    background:rgba(0,0,0,0.6);
    color:#fff;
    font-size:13px;
    cursor:pointer;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;

    transition:all .25s ease;
}

.video-nav button i{
    font-size:18px;
}

.video-nav button:hover{
    background:#ff7abf;
    transform:scale(1.08);
    box-shadow:0 0 12px rgba(255,122,191,0.8);
}

@media(max-width:768px){
    .video-nav button{
        width:46px;
        height:54px;
        font-size:12px;
    }

    .video-nav button i{
        font-size:16px;
    }
}


.video-loading{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.85);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    z-index:5;
    color:#fff;
}

.spinner{
    width:48px;
    height:48px;
    border:4px solid rgba(255,255,255,.3);
    border-top:4px solid #ff5fa2;
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin-bottom:10px;
}

@keyframes spin{
    to{ transform:rotate(360deg); }
}

.loading-text{
    font-size:14px;
    letter-spacing:1px;
}

.video-back-btn{
    position:absolute;
    top:14px;
    left:14px;
    z-index:200;

    color:#fff;
    font-size:14px;
    text-decoration:none;

    background:rgba(0,0,0,0.6);
    padding:8px 14px;
    border-radius:20px;

    transition:0.25s;
}

.video-back-btn:hover{
    background:#ff5fa2;
}

