
    /* --- FULLSCREEN BUTTON STYLE --- */
    #fsBtn {
        position: fixed;
        bottom: 20px; right: 20px;
        width: 40px; height: 40px;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid #ffcc00; /* Gold Color */
        border-radius: 50%;
        color: white;
        display: flex; align-items: center; justify-content: center;
        font-size: 25px;
        z-index: 2147483647 !important; /* Maximum Z-Index */
        backdrop-filter: blur(5px);
        box-shadow: 0 0 15px rgba(0,0,0,0.5);
        transition: all 0.3s ease;
        animation: btnPulse 2s infinite;
        -webkit-tap-highlight-color: transparent;
    }
    #fsBtn:active { transform: scale(0.9); background: #ffcc00; color: black; }
    
    @keyframes btnPulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(255, 204, 0, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
    }

    /* --- MOBILE FULLSCREEN MODE TWEAKS --- */
    /* Jab Fullscreen active ho, tab UI ko adjust karo */
    #tv-wrapper.mobile-active { width: 100% !important; height: 100% !important; position: fixed !important; top:0 !important; left:0 !important; transform: none !important; z-index: 99999; }
    #tv-wrapper.mobile-active #fsBtn { bottom: 10px; right: 10px; width: 40px; height: 40px; font-size: 20px; animation: none; border-color: white; opacity: 0.5; }
    
    
    
    
    
    
    
    

    
    
    
    
    
    
    
    /* Mobile Fullscreen me Header ko chhota karo */
    #tv-wrapper.mobile-active .company-name { display: none !important; }
    #tv-wrapper.mobile-active .logo-box { width: 60px !important; height: 60px !important; margin-top: 5px !important; margin-left:-10px;}
    #tv-wrapper.mobile-active .live-meta { flex-direction: column-reverse; gap: 0; padding: 2px; min-width: auto; height: auto; }
    #tv-wrapper.mobile-active .live-badge { font-size: 18px !important; padding: 1px 12px !important; min-width: auto; }
    #tv-wrapper.mobile-active #time { font-size: 12px !important; }
    
    /* Slider Animation Fix included */
    .breaking-text { animation: slide 5s linear infinite !important; }
    #breakingFlashBody {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 40px;
    }

.footer {
  height: 40px;
}


@media (max-width: 768px) {
    
      #fsBtn {
        position: fixed;
        bottom: 20px; right: 20px;
        width: 100px; height: 100px;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid #ffcc00; /* Gold Color */
        border-radius: 50%;
        color: white;
        display: flex; align-items: center; justify-content: center;
        font-size: 35px;
      }
}