html, body { margin: 0; height: 100%; background-color: #000; }
        #playerContainer { width: 100%; height: 100%; }
        .hidden { opacity: 0; transition: opacity 0.5s; }
        .shaka-spinner-container { display: none; }
		.shaka-controls-container .shaka-play-button::before {
                display: inline-block;
            }

            .shaka-controls-container .shaka-pause-button::before {
                display: inline-block;
            }

            html,
            body {
                height: 100%;
                width: 100%;
                margin: 0;
                background-color: #000;
            }

            .shaka-controls {
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                align-items: flex-end;
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 100%;
                transition: opacity 0.3s ease;
                opacity: 1;
            }

            .hidden {
                opacity: 0 !important;
                pointer-events: none;
            }
             .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  position: relative;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 40px;
  color: #888;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #333;
}

.modal-body {
  margin-bottom: 20px;
  font-size: 14px;
  color: #333;
}

.modal-body p {
  font-weight: 300;
  color: #444;
  font-size: 14px;
  margin-bottom: 20px;
}

.modal-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.modal-buttons button {
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  flex: 1;
  transition: background-color 0.3s, transform 0.3s;
}

#joinChannel {
  background-color: #1a73e8;
  color: #fff;
  font-weight: bold;
}

#alreadyJoined {
  background-color: #f44336;
  color: #fff;
  font-weight: bold;
}

#joinChannel,
#alreadyJoined {
  padding: 15px 20px;
  border-radius: 5px;
  border: none;
  font-size: 13px;
  cursor: pointer;
  flex: 1;
  transition: background-color 0.3s, transform 0.3s;
  height: 45px;
  width: 150px;
}

#joinChannel:hover,
#alreadyJoined:hover {
  transform: scale(1.05);
}

#joinChannel:active,
#alreadyJoined:active {
  transform: scale(1);
}

.modal-content h2 {
  font-size: 18px;
  font-weight: bold;
}

.modal-content p {
  font-size: 11px;
  color: #444;
}
