#player-buttons-bar,
.player-buttons-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 2px !important;
}

#player-buttons-bar .nav-btn,
#player-buttons-bar .btnss,
#players-list {
  flex-shrink: 0;
  border-radius: 2px !important;
}

#players-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#players-list li {
  flex-shrink: 0;
}

#players-list .fsctab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 5px;
    font-size: 11px;
    white-space: nowrap;
    border-radius: 2px;
    transition: all 0.3s;
    height: 22px;
    margin-bottom: -2px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 1px solid #333;
}

#players-list .fsctab:hover {
  background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
  border-color: #ff4500;
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}

#players-list .fsctab.fscactive {
  border: 1px solid #000000;
  background: linear-gradient(135deg, #ff450020, #292929);
  border-bottom: 2px solid #ff4500;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.2);
}

.button, .pagi-load a, .up-second li a, .up-edit a, .qq-upload-button, button:not(.color-btn):not([class*=fr]), html input[type="button"], input[type="reset"], input[type="submit"], .meta-fav a {
    height: 25px !important;
    line-height: 25px !important;
}

.nav-btn {
  background: linear-gradient(135deg, #ff450015, #ff000010) !important;
  color: white !important;
  border: 1px solid #ff450030 !important;
  width: 25px !important;
  height: 30px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-radius: 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 14px !important;
  font-size: 14px !important;
  white-space: nowrap !important;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #ff450050, #ff000030) !important;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.4), inset 0 0 10px rgba(255, 69, 0, 0.1) !important;
  transform: translateY(-2px);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed !important;
}

.iframe-container {
  position: relative;
}

.iframe {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

#seriePlayer {
  display: block;
  background: #000;
}

.current-episode-indicator {
  position: absolute;
  top: 55px;
  left: 15px;
  background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(30,0,0,0.9));
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  border-left: 3px solid #ff4500;
}

.current-episode-indicator.visible {
  opacity: 1;
  visibility: visible;
}

.autoplay-indicator {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(30,0,0,0.9));
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: 1px solid #ff450030;
}

.autoplay-indicator:hover {
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}

.autoplay-indicator:hover .autoplay-text {
  opacity: 1 !important;
  width: auto !important;
  visibility: visible !important;
}

.autoplay-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #ff6b00, #ff4500);
  border-radius: 50%;
  box-shadow: 0 0 12px #ff4500, 0 0 20px #ff450050;
  transition: all 0.3s;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 12px #ff4500, 0 0 20px #ff450050; }
  50% { box-shadow: 0 0 20px #ff4500, 0 0 35px #ff450080; }
}

.autoplay-dot.off {
  background: linear-gradient(135deg, #666, #444);
  box-shadow: 0 0 8px #666;
  animation: none;
}

.autoplay-text {
  color: #fff;
  transition: opacity 0.3s, width 0.3s, visibility 0.3s;
  white-space: nowrap;
  overflow: hidden;
}

.autoplay-text.hidden {
  opacity: 0;
  width: 0;
  visibility: hidden;
}

.fullscreen-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(30,0,0,0.9));
  color: #fff;
  width: 40px;
  height: 40px;
  border: 1px solid #ff450030;
  border-radius: 6px;
  cursor: pointer;
  z-index: 100;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-btn:hover {
  background: linear-gradient(135deg, #ff4500, #ff6b00);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 69, 0, 0.5);
}

.episodes-wrapper {
  display: flex;
  gap: 15px;
  margin-block: 10px;
}

.episodes-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.column-header {
  background: linear-gradient(135deg, #1a0a0a, #0d0505);
  color: #fff;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid #ff450030;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 8px 8px 0 0;
  position: relative;
  overflow: hidden;
}

.column-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, #ff0000, #ff0000, transparent);
	}

.column-header * {
  flex-shrink: 0;
  white-space: nowrap;
}

.column-header i {
  color: #ff4500;
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.select-all-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: normal;
  text-transform: none;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s;
}

.select-all-label:hover {
  opacity: 1;
  color: #ff6b00;
}

.select-all-label input {
  cursor: pointer;
  accent-color: #ff4500;
  width: 14px;
  height: 14px;
}

.episodes-list {
    max-height: 999px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ff0000 #121212;
    border: 1px solid #ff450020;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(180deg, #0d0505, #141010);
    padding: 1px;
}

.episodes-list::-webkit-scrollbar {
  width: 6px;
}

.episodes-list::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #1a0a0a, #0d0505);
  border-radius: 3px;
}

.episodes-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff4500, #ff6b00);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.episodes-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff6b00, #ff8c00);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.7);
}

.episode-row {
  display: flex;
  align-items: center;
  border: 1px solid #ff450015;
  margin: 5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #141010, #1a1212);
  position: relative;
  border-radius: 1px;
  overflow: hidden;
}

.episode-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #ff450020, transparent);
  transition: width 0.3s ease;
}

.episode-row:hover::before {
  width: 100%;
}

.episode-row:hover {
  background: linear-gradient(135deg, #1a1010, #251515);
  border-color: #ff450040;
  transform: translateX(5px);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.15), -5px 0 15px rgba(255, 69, 0, 0.1);
}

.episode-row.active {
    background: linear-gradient(90deg, #ff450015, #ff6b0020);
    border-left: 2px solid #ff00001a;
    box-shadow: inset 0 0 20px rgba(255, 69, 0, 0.1), 0 0 25px rgba(255, 69, 0, 0.2);
}}

.episode-row.active .ep-title span {
  color: #ff6b00;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.episode-row.active .ep-title i {
  display: none;
}

.episode-row.active .ep-title::before {
  content: "";
  display: flex;
  align-items: flex-end;
  gap: 2px;
  width: 16px;
  height: 14px;
  margin-right: 8px;
  background: 
    linear-gradient(#ff4500, #ff6b00) 0 100%/3px var(--bar1, 60%) no-repeat,
    linear-gradient(#ff4500, #ff6b00) 5px 100%/3px var(--bar2, 100%) no-repeat,
    linear-gradient(#ff4500, #ff6b00) 10px 100%/3px var(--bar3, 40%) no-repeat;
  animation: equalizer 1s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.5));
}

.episode-row.active .ep-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

@keyframes equalizer {
  0%, 100% {
    --bar1: 60%;
    --bar2: 100%;
    --bar3: 40%;
  }
  25% {
    --bar1: 100%;
    --bar2: 50%;
    --bar3: 80%;
  }
  50% {
    --bar1: 40%;
    --bar2: 70%;
    --bar3: 100%;
  }
  75% {
    --bar1: 80%;
    --bar2: 100%;
    --bar3: 50%;
  }
}

.episode-row .ep-download {
  padding: 12px 10px;
  color: #ff6b00;
  cursor: pointer;
  transition: all 0.3s;
  border-right: 1px solid #ff450020;
  position: relative;
  z-index: 1;
}

.episode-row .ep-download:hover {
  color: #ff8c00;
  text-shadow: 0 0 15px rgba(255, 140, 0, 0.7);
  transform: scale(1.1);
}

.episode-row .ep-title {
  flex: 1;
  padding: 12px 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  min-width: 0;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.episode-row:hover .ep-title {
  color: #ffccaa;
}

.episode-row .ep-title i {
  color: #ff4500;
  font-size: 11px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.episode-row:hover .ep-title i {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.7);
}

.episode-row .ep-title span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.episode-row .ep-checkbox {
  padding: 12px 8px;
  position: relative;
  z-index: 1;
}

.episode-row .ep-checkbox input {
  cursor: pointer;
  width: 14px;
  height: 14px;
  accent-color: #ff4500;
  transition: all 0.3s;
}

.episode-row .ep-checkbox input:hover {
  transform: scale(1.2);
}

.episode-row .ep-info {
  padding: 12px 10px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s;
  border-left: 1px solid #ff450020;
  position: relative;
  z-index: 1;
}

.episode-row .ep-info:hover {
  color: #ff6b00;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.episode-row .ep-add {
  padding: 12px 10px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s;
  border-left: 1px solid #ff450020;
  position: relative;
  z-index: 1;
}

.episode-row .ep-add:hover {
  color: #ff4500;
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
  transform: rotate(90deg);
}

.episode-row .ep-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff00001f, #ff000078, #ff0000);
    width: 0%;
    transition: width 0.3s;
    box-shadow: 0 0 10px #ff000000;
}

.bulk-download-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a0a0a, #0d0505);
  padding: 15px 20px;
  border-top: 2px solid #ff4500;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 -5px 30px rgba(255, 69, 0, 0.3);
}

.bulk-download-bar.visible {
  display: flex;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.bulk-download-bar span {
  color: #fff;
  font-size: 14px;
}

.bulk-download-bar button {
  background: linear-gradient(135deg, #ff4500, #ff6b00);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

.bulk-download-bar button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 69, 0, 0.5);
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
}

.episode-info-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.episode-info-modal.visible {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.episode-info-content {
  background: linear-gradient(145deg, #1a0a0a, #0d0505);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  border: 1px solid #ff450030;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 50px rgba(255, 69, 0, 0.2), inset 0 0 30px rgba(255, 69, 0, 0.05);
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.episode-info-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ff450030, #ff000020);
  border: 1px solid #ff450050;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.episode-info-close:hover {
  background: linear-gradient(135deg, #ff4500, #ff6b00);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.episode-info-poster {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-color: #1a0a0a;
  position: relative;
}

.episode-info-poster::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 230px;
  background: linear-gradient(transparent, #1a0a0a);
}

.episode-info-details {
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ff4500 #1a1a1a;
}

.episode-info-details::-webkit-scrollbar {
  width: 4px;
}

.episode-info-details::-webkit-scrollbar-track {
  background: #1a0a0a;
}

.episode-info-details::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff4500, #ff6b00);
  border-radius: 2px;
}

.episode-info-details h3 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ff450030;
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.episode-info-details p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.episode-info-details .no-info {
  color: #666;
  font-style: italic;
  text-align: center;
  padding: 30px 0;
}

.countdown-modal {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(0,0,0,0.98), rgba(30,10,10,0.95));
  padding: 15px 20px;
  border-radius: 10px;
  z-index: 99999;
  border-left: 4px solid #ff4500;
  box-shadow: 0 4px 30px rgba(255, 69, 0, 0.3);
  backdrop-filter: blur(10px);
}

.countdown-modal.visible {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.countdown-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
}

.countdown-icon {
  color: #ff4500;
  font-size: 18px;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.countdown-number {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(135deg, #ff4500, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 30px;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.countdown-cancel {
  background: linear-gradient(135deg, #ff450020, #ff000015);
  border: 1px solid #ff450050;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  margin-left: 10px;
  transition: all 0.3s;
}

.countdown-cancel:hover {
  background: linear-gradient(135deg, #ff4500, #ff6b00);
  transform: scale(1.05);
}

.chapter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff4500, #ff6b00);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.4);
}

.chapter-new {
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 69, 0, 0.4); }
  50% { box-shadow: 0 0 25px rgba(255, 69, 0, 0.8), 0 0 40px rgba(255, 107, 0, 0.4); }
}

.reading-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff4500, #ff6b00);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
  transition: width 0.5s ease;
}

@media (max-width: 900px) {
  .episodes-wrapper {
    gap: 10px;
  }
  
  .episodes-list {
    max-height: 500px;
  }
  
  .episode-row .ep-title {
    font-size: 12px;
    padding: 10px 8px;
  }
  
  .episode-row .ep-download,
  .episode-row .ep-info,
  .episode-row .ep-add,
  .episode-row .ep-checkbox {
    padding: 10px 6px;
  }
}

@media (max-width: 768px) {
  #player-buttons-bar,
  .player-buttons-bar {
    gap: 6px;
  }
  
  .nav-btn {
    padding: 6px 10px !important;
    font-size: 13px !important;
  }
  
  #players-list {
    gap: 4px;
  }
  
  #players-list .fsctab {
    padding: 6px 10px;
    font-size: 12px;
  }
  
  #players-list .fsctab i {
    display: none;
  }
  
  .column-header {
    padding: 10px 12px;
    font-size: 13px;
    gap: 6px;
  }
  
  .episodes-list {
    max-height: 450px;
  }
}

@media (max-width: 600px) {
  .episodes-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .episodes-column {
    flex: none;
    width: 100%;
  }
  
  .column-header {
    padding: 10px 8px;
    font-size: 12px;
    gap: 5px;
  }
  
  .episodes-list {
    max-height: 350px;
  }
  
  .episode-row .ep-title {
    font-size: 11px;
    padding: 8px 5px;
  }
  
  .episode-row .ep-download,
  .episode-row .ep-checkbox {
    padding: 8px 5px;
  }
  
  .episode-row .ep-info,
  .episode-row .ep-add {
    display: none;
  }
  
  .nav-btn {
    width: 36px !important;
    height: 36px !important;
  }
  
  .episode-row:hover {
    transform: translateX(3px);
  }
}

@media (max-width: 480px) {
  #player-buttons-bar,
  .player-buttons-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    justify-content: flex-start;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff4500 #1a1a1a;
  }
  
  #player-buttons-bar::-webkit-scrollbar,
  .player-buttons-bar::-webkit-scrollbar {
    height: 3px;
  }
  
  #player-buttons-bar::-webkit-scrollbar-track,
  .player-buttons-bar::-webkit-scrollbar-track {
    background: #1a0a0a;
    border-radius: 3px;
  }
  
  #player-buttons-bar::-webkit-scrollbar-thumb,
  .player-buttons-bar::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff4500, #ff6b00);
    border-radius: 3px;
  }
  
  #players-list {
    flex-wrap: nowrap;
    gap: 3px;
  }
  
  .nav-btn {
    padding: 6px 8px !important;
    font-size: 12px !important;
  }
  
  #players-list .fsctab {
    padding: 5px 8px;
    font-size: 13px;
  }
  
  .column-header {
    padding: 8px 10px;
    font-size: 11px;
    gap: 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .column-header::-webkit-scrollbar {
    height: 2px;
  }
  
  .column-header::-webkit-scrollbar-track {
    background: #1a0a0a;
  }
  
  .column-header::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff4500, #ff6b00);
    border-radius: 2px;
  }
  
  .column-header input[type="checkbox"] {
    width: 14px;
    height: 14px;
  }
  
  .column-header label {
    font-size: 10px;
  }
  
  .episodes-list {
    max-height: 300px;
  }
  
  .episode-row {
    margin: 3px;
    border-radius: 4px;
  }
}

@media (max-width: 360px) {
  .nav-btn {
    padding: 5px 8px !important;
    font-size: 11px !important;
  }
  
  #players-list .fsctab {
    padding: 5px 6px;
    font-size: 12px;
  }
  
  #players-list {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
  }
  
  #players-list::-webkit-scrollbar {
    height: 2px;
  }
  
  #players-list::-webkit-scrollbar-track {
    background: #1a0a0a;
  }
  
  #players-list::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff4500, #ff6b00);
    border-radius: 2px;
  }
  
  .column-header {
    padding: 6px 8px;
    font-size: 10px;
    gap: 4px;
  }
  
  .episodes-list {
    max-height: 280px;
  }
  
  .episode-row .ep-title {
    font-size: 10px;
    padding: 6px 4px;
  }
  
  .episode-row .ep-download,
  .episode-row .ep-checkbox {
    padding: 6px 4px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .episode-row:hover {
    transform: none;
    background: linear-gradient(135deg, #141010, #1a1212);
  }
  
  .episode-row:active {
    background: linear-gradient(135deg, #1a1010, #251515);
    transform: scale(0.98);
  }
  
  .episode-row:hover::before {
    width: 0;
  }
  
  .episode-row:active::before {
    width: 100%;
  }
}