/*==============================
RATH YATRA BANNER
==============================*/

.rath-banner-card{

    width:100%;

    margin-top:10px;          /* Gap from header */

    margin-bottom:10px;

    overflow:hidden;

    background:#fff;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.rath-banner-img{

    width:100%;

    height:auto;              /* Show full image */

    display:block;

    object-fit:contain;       /* Entire image visible */

    object-position:center;

}

/* Tablet */

@media(max-width:991px){

    .rath-banner-card{

        margin-top:15px;

        border-radius:14px;

    }

}

/* Mobile */

@media(max-width:768px){

    .rath-banner-card{

        
margin-top: 60px;
        border-radius:10px;

    }

}

/*=========================================
RATH EVENT SECTION
=========================================*/

.rath-widget{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    border:1px solid #eee;

}

.widget-header{

    background:linear-gradient(90deg,#8b0000,#c10000);

    color:#fff;

    padding:16px 22px;

    font-size:22px;

    font-weight:700;

}

.widget-body{

    padding:18px;

}

/*============================
SCHEDULE
============================*/

.schedule-line{

    display:flex;

    gap:18px;

    align-items:center;

    padding:18px 0;

    border-bottom:1px dashed #ddd;

}

.schedule-date-box{

    width:70px;

    min-width:70px;

    height:70px;

    border-radius:18px;

    background:#8b0000;

    color:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 8px 18px rgba(139,0,0,.25);

}

.schedule-date-box span{

    font-size:26px;

    font-weight:700;

    line-height:1;

}

.schedule-date-box small{

    font-size:12px;

    letter-spacing:1px;

}

.schedule-content h5{

    font-size:20px;

    margin-bottom:6px;

    font-weight:700;

}

.schedule-content p{

    margin:0;

    color:#666;

}



/*==============================
SCHEDULE HOVER BOX
==============================*/

.schedule-line{

    position:relative;

    display:flex;

    gap:18px;

    align-items:center;

    cursor:pointer;

    transition:.3s;

}

.schedule-line:hover{

    background:#fff8ef;

    border-radius:12px;

}

.schedule-content{

    position:relative;

}

.schedule-tooltip{

    position:absolute;

    left:0;

    top:105%;

    width:320px;

    background:#fff;

    border-radius:16px;

    padding:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

    border-left:5px solid #b30000;

    opacity:0;

    visibility:hidden;

    transform:translateY(12px);

    transition:.3s;

    z-index:999;

}

.schedule-content:hover .schedule-tooltip{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.schedule-tooltip h6{

    color:#b30000;

    font-size:18px;

    font-weight:700;

    margin-bottom:10px;

}

.schedule-tooltip p{

    margin:0;

    color:#555;

    font-size:14px;

    line-height:1.7;

}

.schedule-tooltip::before{

    content:"";

    position:absolute;

    top:-10px;

    left:30px;

    border-left:10px solid transparent;

    border-right:10px solid transparent;

    border-bottom:10px solid #fff;

}

@media(max-width:768px){

    .schedule-tooltip{

        width:250px;

    }

}



/* ==========================
   LAST SCHEDULE TOOLTIP
========================== */

.last-schedule .schedule-tooltip{

    top:auto;

    bottom:105%;

    left:0;

    transform:translateY(-10px);

}

.last-schedule:hover .schedule-tooltip{

    transform:translateY(0);

}

.last-schedule .schedule-tooltip::before{

    top:auto;

    bottom:-10px;

    left:30px;

    border-top:10px solid #fff;

    border-bottom:none;

    border-left:10px solid transparent;

    border-right:10px solid transparent;

}

/*============================
LIVE TV
============================*/

.live-frame{

    width:100%;

    height:470px;

    border:none;

}

.live-badge{

    display:flex;

    align-items:center;

    gap:8px;

    background:#ff0000;

    color:#fff;

    padding:6px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}

.live-circle{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#fff;

    animation:livePulse 1s infinite;

}

@keyframes livePulse{

0%,100%{

transform:scale(1);

opacity:1;

}

50%{

transform:scale(.5);

opacity:.4;

}

}

@media(max-width:991px){

.live-frame{

height:260px;

}

.schedule-line{

padding:14px 0;

}

.schedule-date-box{

width:60px;

height:60px;

}

.schedule-content h5{

font-size:18px;

}

}

/* Shorts Card */
.short-item .card{
    border-radius:16px;
    overflow:hidden;
    transition:.3s;
}

.short-item .card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* Portrait thumbnail */
.short-thumb{
    width:100%;
    height:420px;
    object-fit:cover;
    cursor:pointer;
}

/* Play Button */
.play-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:60px;
    height:60px;
    border-radius:50%;
    background:#ff0000;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    cursor:pointer;
}

/* Mobile */
@media(max-width:768px){

    .short-thumb{
        height:280px;
    }

}



/* ===========================
   LOAD MORE BUTTON
=========================== */

.load-more-btn{

    background: linear-gradient(135deg,#c40000,#ff3d3d);

    color:#fff;

    border:none;

    border-radius:50px;

    padding:12px 35px;

    font-size:16px;

    font-weight:600;

    letter-spacing:.3px;

    transition:.3s ease;

    box-shadow:0 6px 20px rgba(196,0,0,.25);

}

.load-more-btn:hover{

    background:linear-gradient(135deg,#a00000,#e00000);

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(196,0,0,.35);

    color:#fff;

}

.load-more-btn:active{

    transform:scale(.97);

}

.load-more-btn i{

    font-size:15px;

}

#loadMoreShortsWrap,
#loadMoreVideosWrap{

    margin-top:30px;

    text-align:center;

}


@media (max-width:768px){

.load-more-btn{

    width:100%;

    max-width:260px;

    padding:12px 20px;

    font-size:15px;

}

}




/*==================================
RATH NEWS HEADING
==================================*/

.rath-news-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

    border-bottom:3px solid #d32f2f;

    padding-bottom:15px;

}

.rath-news-title{

    display:flex;

    align-items:center;

    gap:15px;

}

.news-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:linear-gradient(135deg,#b30000,#ff5722);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    box-shadow:0 8px 20px rgba(179,0,0,.25);

}

.news-tag{

    display:inline-block;

    background:#ffebee;

    color:#b30000;

    padding:4px 12px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:6px;

}

.rath-news-title h2{

    margin:0;

    font-size:34px;

    font-weight:800;

    color:#222;

}

.view-all-btn{

    text-decoration:none;

    background:#b30000;

    color:#fff;

    padding:10px 22px;

    border-radius:30px;

    font-weight:600;

    transition:.3s;

}

.view-all-btn:hover{

    background:#7f0000;

    color:#fff;

}

@media(max-width:768px){

.rath-news-header{

flex-direction:column;

align-items:flex-start;

gap:15px;

}

.rath-news-title h2{

font-size:26px;

}

}


/*====================================
VIDEOS
====================================*/

.video-card{

    border-radius:16px;

    overflow:hidden;

    transition:.35s;

    background:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    height:100%;

}

.video-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.video-thumb{

    width:100%;

    height:230px;

    object-fit:cover;

    cursor:pointer;

    display:block;

    transition:.4s;

}

.video-card:hover .video-thumb{

    transform:scale(1.05);

}

/* Same Play Button as Shorts */

.video-play-icon{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:65px;

    height:65px;

    border-radius:50%;

    background:#ff0000;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 8px 20px rgba(255,0,0,.35);

}

.video-play-icon:hover{

    transform:translate(-50%,-50%) scale(1.12);

    background:#d60000;

}

.video-title{

    font-size:17px;

    font-weight:700;

    line-height:1.5;

    margin:0;

    color:#222;

}

@media(max-width:768px){

.video-thumb{

height:190px;

}

.video-play-icon{

width:55px;

height:55px;

font-size:20px;

}

.video-title{

font-size:15px;

}

}





/* ===========================
   Divine Flower Rain
=========================== */

.flower-rain {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 999;
}

.flower {
    position: absolute;
    top: -80px;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .9;
    animation-name: flowerFall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

@keyframes flowerFall {

    0% {
        transform:
            translateY(-80px) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform:
            translateY(50vh) translateX(40px) rotate(180deg);
    }

    100% {
        transform:
            translateY(110vh) translateX(-40px) rotate(360deg);
        opacity: 0;
    }

}

