body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #12182a;
  color: #fff;
  display: flex;
  flex-direction: row;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

.video-container {
  width: 75%;
  padding: 20px;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.video-player {
  width: 100%;
  height: 90vh;
  background-color: #000;
  object-fit: contain;
  border-radius: 10px;
}

.audio-player {
  background-image: url('https://i.ibb.co/m5rWFqfQ/raryo.jpg'); /* Placeholder image */
  background-size: cover;
  background-position: center;
  height: 90vh; /* Same height as the video player */
  width: 100%;
  border-radius: 10px;
}

#viewerCounter {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
  z-index: 20;
}

#viewerCounter i {
  font-size: 1.5rem;
  color: #4f8cff; /* Fish-eye icon color */
}

.watermark {
  position: absolute;
  top: 10px;
  left: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
  z-index: 10;
}

.right-side {
  width: 20%;
  padding: 10px;
  background-color: #2a3043;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.channel-name-date {
  text-align: center;
  margin-bottom: 10px;
}

#dateTime {
  font-size: 14px;
}

.category-drawer {
  display: flex;
  justify-content: space-evenly;
  margin-top: 10px;
}

.category-box {
  background-color: #4f8cff;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  color: white;
  transition: background-color 0.3s ease;
  width: 22%;
  margin-bottom: 10px;
}

.category-box:hover {
  background-color: #2a3043;
}

.channel-list {
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
  background-color: #12182a;
  border-radius: 5px;
  margin-top: 10px;
}

.channel-list div {
  padding: 10px;
  background-color: #2a3043;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.channel-list div:hover {
  background-color: #4f8cff;
}

.search-bar {
  width: 100%;
  padding: 10px;
  background-color: #0f1320;
  border-radius: 5px;
  color: #fff;
  border: 1px solid #2a3043;
  margin-bottom: 15px;
}

.search-bar input {
  width: 100%;
  padding: 12px;
  background: #12182a;
  color: #fff;
  border: none;
  border-radius: 5px;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 768px) {
  body {
    flex-direction: column;
    height: auto;
  }

  .video-container {
    width: 100%;
    padding: 0;
  }

  .video-player, .audio-player, iframe {
    height: 45vh;
    object-fit: contain;
  }

  .right-side {
    width: 100%;
    padding: 10px;
    background-color: #2a3043;
    height: auto;
    position: relative;
  }

  .category-drawer {
    width: 100%;
    margin-top: 20px;
    flex-wrap: nowrap;
  }

  .category-box {
    width: 22%;
    font-size: 12px;
    padding: 8px;
  }

  .channel-list {
    max-height: 300px;
    overflow-y: auto;
  }

  .channel-name-date {
    text-align: center;
  }

  #dateTime {
    font-size: 14px;
  }
}
