html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      width: 100%;
      overflow: hidden;
      font-family: 'Inter', sans-serif;
    }
    .video-container {
      width: 100%;
      height: 100%;
      position: relative;
    }
    video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #000;
    }

    #player_id {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #000;
    }

    /* Hide video timeline/progress bar for live stream */
    video::-webkit-media-controls-timeline {
      display: none !important;
    }
    
    video::-webkit-media-controls-current-time-display {
      display: none !important;
    }
    
    video::-webkit-media-controls-time-remaining-display {
      display: none !important;
    }

    /* For Firefox */
    video::-moz-media-controls-timeline {
      display: none !important;
    }

    .countdown-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('https://net88.bingo/wp-content/uploads/2025/04/background-live-2.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      font-family: Arial, sans-serif;
      z-index: 100;
      display: flex;
    }
    #header-image {
      position: absolute;
      top: -10px;
      left: 0;
      width: 100%;
      height: auto;
    }
    .countdown-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .countdown-message {
      font-size: 1.5rem;
      text-align: center;
      max-width: 80%;
    }

    #logo {
      width: 263px;
      height: 45px;
      margin-bottom: 1.5rem;
    }

    #viewers-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 0 20px;
      position: absolute;
      top: 20px;
      left: 0;
      right: 0;
      z-index: 1; 
      display: none;
    }

    #viewers-title {
        font-size: 14px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        background-color: #e53935;
        border-radius: 4px;
        padding: 3px 5px;
    }

    #viewers {
      font-size: 12px;
      font-weight: bold;
      color: white;
    }

    #viewers-wrapper {
        display: flex;
        align-items: center;
        justify-content: start;
        color: white;
        background-color: #874c4a;
        border-radius: 4px;
        padding: 2px 5px;
        max-width: 80px;
        gap: 5px;
    }

    #viewers-icon {
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    @media (min-width: 768px) {
        .countdown-title {
            font-size: 4rem;
        }
    }

    @media (max-width: 768px) {
      #viewers-wrapper {
        padding: 0px 3px;
        gap: 3px;
      }

      #viewers {
        font-size: 8px;
      }

      #viewers-icon svg {
        width: 12px;
      }

      #viewers-title {
        font-size: 8px;
        padding: 3px 5px;
      }

      #viewers-container {
        padding: 0 5px;
        top: 5px;
      }
    }
