.player-container {
  padding: 20px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.video3-details-title {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.video3-details-title h1 {
  font-size: 36px;
  line-height: 44px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}
.video3-details-title.back-box {
    justify-content: space-between;
    width: 70%;
}
a.back-to-show-btn
 {
    background-color: #E21C21;
    border-color: #E21C21;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
a.back-to-show-btn:hover{
	background-color: #ac1217;
    border-color: #ac1217;
	 color: #fff !important;
}

.video3-details-title .date {
  color: #bbb;
  font-size: 20px;
  margin: 0;
}

.content-area {
  display: flex;
  margin-top: 20px;
  gap: 20px;
}
.video-play-cont {
  flex: 3;
  background: #1a1a1a;
  border-radius: 10px;
  text-align: center;
  margin-right: 20px;
}
.locked-content {
  padding: 80px 40px 40px 40px;
}

.locked-content .video-play-title {
  font-size: 30px;
  margin-bottom: 20px !important;
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
}

.btn-patreon {
  padding: 12px 40px;
  margin: 15px 0;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #d60000;
  color: white;
  font-size: 16px;
  white-space: nowrap;
}

.btn-beyond {
  margin: 15px 0 0 0;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #3d506b;
  color: white;
  font-size: 16px;
  padding: 20px 35px;
}
.vid-btn:hover {
  background: #3d506b;
}
.btn-beyond:hover {
  background: #1e2c42;
}
.locked-txt {
  font-size: 18px;
  line-height: 26px;
}
.video3-details-title .date i,
.ep-date i {
  color: #d60000;
}
.ep-date i {
  padding-right: 4px;
}

.locked-txt-link {
  color: #d60000;
  text-decoration: none;
}

.vide-sidebar-season {
  flex: 1;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.dropdown {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 20px;
  background: transparent;
  color: #fff;
  height: 44px;
  border: 0.5px solid #9e9e9e;
}
.dropdown option {
  color: #fff;
  background: #0b1a2f;
  font-size: 14px;
}
.episode img {
  width: 80px;
  object-fit: cover;
}
.episode-list {
  max-height: 440px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #fff #434444;
}
.episode-list::-webkit-scrollbar {
  width: 8px;
}

.episode-list::-webkit-scrollbar-track {
  background: #102a42;
}

.episode-list::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #102a42;
}

.episode {
  margin: 10px 0;
  background-color: #2e2e2e;
  padding: 10px;
}
.episode-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  cursor: pointer;
	width:100%;
}
.video-comment-con {
    width: 70%;
}
.video-comment-con textarea#comment {
    background: transparent;
    color: #fff;
    border: 0.5px solid #9e9e9e;
}
.episode.selected {
  background-color: #2a2a2a;
}

.ep-date {
  font-size: 0.85rem;
  color: #ccc;
}

.navigate-pre-next {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.prev,
.next {
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.prev {
  background-color: #3b4c66;
  color: white;
}

.next {
  background-color: #1e2c42;
  color: gray;
}
.vid-btn {
  padding: 15px 25px;
  border-radius: 6px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  background-color: #1e2c42;
  color: #fff;
}

.video-details-episode {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.btn-like,
.btn-share {
  padding: 10px 15px;
  background: #375dff;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .video-play-cont {
    flex: 2.5;
  }
  .vide-sidebar-season {
    flex: 1.5;
  }
}
@media (max-width: 991px) {
  .content-area {
    margin-top: 20px;
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }

  .locked-content .video-play-title {
    font-size: 22px;
  }
  .locked-content {
    padding: 60px 30px 30px 30px;
  }
}
@media (max-width: 767px) {
  .video3-details-title h1 {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .video3-details-title .date {
    font-size: 18px;
    margin-top: 0;
  }
  .btn-patreon {
    padding: 12px 20px;
  }
  .locked-content {
    padding: 30px;
  }
}

.toggle-reaction-container {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  position: relative;
}

.label {
  color: #94a3b8;
  font-size: 16px;
  transition: color 0.3s ease;
}

.label.active {
  color: #fff;
}

.switch-reaction {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch-reaction input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-reaction {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e7eb;
  transition: 0.4s;
  border-radius: 34px;
}

.slider-reaction::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #d60000;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider-reaction::before {
  transform: translateX(24px);
}

/* Overlay styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 15, 24, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

@keyframes pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.video-reaction-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.bubble-icon {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  animation: pop 0.5s ease-out;
}

.loader {
  border: 6px solid #e5e7eb;
  border-top: 6px solid #d60000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



#short-length{
    display: none;
}
.short-length-cont{
    max-height: 550px;
    height: 100%;
    min-height: 544px;
}
