* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(120, 200, 255, 0.2) 0%, transparent 50%);
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  position: sticky;
  top: 0;
  z-index: 50;
  margin: 0 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
}
.logo img {
  height: 30px;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.nav-link.active {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.mobile-menu-btn {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.mobile-menu-btn:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  transform: scale(1.05);
}

.mobile-nav {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav.show {
  display: flex;
}
.mobile-nav .nav-link {
  padding: 1rem;
  border-radius: 16px;
}
.mobile-nav .nav-link:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
}

.hero-section, .search-section, .category-section {
  padding: 2rem 0;
  position: relative;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border-left: 4px solid transparent;
  border-image: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%) 1;
  padding-left: 1rem;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.category-count {
  color: #fff;
  font-size: 0.875rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.category-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.view-more {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}
.view-more:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.video-card {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px 0 rgba(31, 38, 135, 0.5);
  border-color: rgba(255, 107, 157, 0.4);
}
.video-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.video-card img {
  width: 100%;
  height: 9rem;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 20px 20px 0 0;
}

.video-card-content {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
}

.video-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.video-episodes {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.search-container {
  max-width: 32rem;
  margin: 0 auto;
  position: relative;
}

.search-form {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  overflow: hidden;
}

.search-input {
  width: 100%;
  padding: 1rem 4rem 1rem 3rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
}
.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-input:focus {
  outline: none;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}
.search-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.hot-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
.hot-tags span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

.hot-tag {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.hot-tag:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.page-header {
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
}

.page-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.page-stats {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: inline-block;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 3rem 0;
}

.pagination-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.pagination-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  gap: 0.5rem;
}

.page-number {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.page-number.active {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
  transform: scale(1.1);
}
.page-number:not(.active):hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
}
.pagination-container ul {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}
.pagination-container ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.pagination-container ul li a:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}
.pagination-container ul li a.active {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

main {
  padding: 1rem 0;
}

.video-player video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  background: black;
}

.iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
}
.iframeBox .iframe {
  width: 100%;
  height: 100%;
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.video-player {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0a0a;
  margin-bottom: 24px;
  --plyr-color-main: #000000;
  --plyr-video-background: #0a0a0a;
  --plyr-menu-background: #FFFFFF;
  --plyr-menu-color: #000000;
  --plyr-tooltip-background: #FFFFFF;
  --plyr-tooltip-color: #000000;
  --plyr-range-fill-background: #000000;
  --plyr-video-controls-background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  --plyr-progress-loading-background: rgba(255, 255, 255, 0.2);
  --plyr-control-icon-size: 18px;
  --plyr-control-spacing: 10px;
  --plyr-control-radius: 4px;
  --plyr-control-toggle-checked-background: #000000;
}

.plyr--video .plyr__control:hover {
  background: rgba(0, 0, 0, 0.8);
}
.plyr--video .plyr__control--overlaid {
  background: rgba(0, 0, 0, 0.9);
}
.plyr--video .plyr__control--overlaid:hover {
  background: #000000;
}

.trending-section .poster-scroll,
.latest-section .poster-scroll,
.search-result-section .poster-scroll,
.featured-section .poster-scroll,
.video-grid .poster-scroll,
.related-videos .poster-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 8px 0;
}
@media (max-width: 1024px) {
  .trending-section .poster-scroll,
  .latest-section .poster-scroll,
  .search-result-section .poster-scroll,
  .featured-section .poster-scroll,
  .video-grid .poster-scroll,
  .related-videos .poster-scroll {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .trending-section .poster-scroll,
  .latest-section .poster-scroll,
  .search-result-section .poster-scroll,
  .featured-section .poster-scroll,
  .video-grid .poster-scroll,
  .related-videos .poster-scroll {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
.trending-section .poster-item,
.latest-section .poster-item,
.search-result-section .poster-item,
.featured-section .poster-item,
.video-grid .poster-item,
.related-videos .poster-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  gap: 8px;
  background: transparent;
}
.trending-section .poster-item:hover,
.latest-section .poster-item:hover,
.search-result-section .poster-item:hover,
.featured-section .poster-item:hover,
.video-grid .poster-item:hover,
.related-videos .poster-item:hover {
  transform: translateY(-4px);
  background: transparent;
}
.trending-section .poster-item .poster-thumbnail,
.latest-section .poster-item .poster-thumbnail,
.search-result-section .poster-item .poster-thumbnail,
.featured-section .poster-item .poster-thumbnail,
.video-grid .poster-item .poster-thumbnail,
.related-videos .poster-item .poster-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
}
.trending-section .poster-item .poster-thumbnail img,
.latest-section .poster-item .poster-thumbnail img,
.search-result-section .poster-item .poster-thumbnail img,
.featured-section .poster-item .poster-thumbnail img,
.video-grid .poster-item .poster-thumbnail img,
.related-videos .poster-item .poster-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trending-section .poster-item .poster-thumbnail .hot-tag,
.latest-section .poster-item .poster-thumbnail .hot-tag,
.search-result-section .poster-item .poster-thumbnail .hot-tag,
.featured-section .poster-item .poster-thumbnail .hot-tag,
.video-grid .poster-item .poster-thumbnail .hot-tag,
.related-videos .poster-item .poster-thumbnail .hot-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #000000;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
  z-index: 10;
}
.trending-section .poster-item .poster-info,
.latest-section .poster-item .poster-info,
.search-result-section .poster-item .poster-info,
.featured-section .poster-item .poster-info,
.video-grid .poster-item .poster-info,
.related-videos .poster-item .poster-info {
  padding: 0;
  text-align: center;
}
.trending-section .poster-item .poster-info h4,
.latest-section .poster-item .poster-info h4,
.search-result-section .poster-item .poster-info h4,
.featured-section .poster-item .poster-info h4,
.video-grid .poster-item .poster-info h4,
.related-videos .poster-item .poster-info h4 {
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin: 0;
}

.detail .main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.detail .sidebar-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.detail .sidebar-section .sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 0.75rem;
}
.detail .sidebar-section .sidebar-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  border-radius: 1.5px;
}
.detail .sidebar-section .current-episode {
  font-size: 0.875rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}
.detail .episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}
.detail .episode-grid .episode-item {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.detail .episode-grid .episode-item:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.detail .episode-grid .episode-item.active {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.tabs {
  width: 100%;
}
.tabs .tab-buttons {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px 20px 0 0;
  padding: 0.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.tabs .tab-button {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 16px;
  font-weight: 500;
}
.tabs .tab-button.active {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}
.tabs .tab-button:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.tabs .tab-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 20px 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.tabs .tab-content.hidden {
  display: none;
}
.tabs .tab-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.tabs .tab-content p:first-child {
  font-size: 1.5rem !important;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
}

.search-header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  position: relative;
}
.search-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff6b9d, #c377e0);
  border-radius: 0 2px 2px 0;
}

.search-title {
  font-size: 2rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-weight: 700;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
}

.search-keyword, .search-count {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.search-keyword em, .search-keyword .count, .search-count em, .search-count .count {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.action-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.action-btn {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.action-btn:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .video-card img {
    height: 10rem;
  }
  .video-title {
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .logo {
    font-size: 1.75rem;
  }
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  .category-title {
    font-size: 1.75rem;
  }
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .video-card img {
    height: 12rem;
  }
  .detail .main-grid {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .container {
    padding: 0 2rem;
  }
  .search-container {
    max-width: 40rem;
  }
  .episode-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (min-width: 1280px) {
  .video-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .detail .main-grid {
    grid-template-columns: 2fr 1fr;
  }
  .sidebar {
    order: 2;
  }
  .content-area {
    order: 1;
  }
}
.footer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  border-radius: 24px 24px 0 0;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  border-radius: 24px 24px 0 0;
}

.footer-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.footer-nav a {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.footer-nav a:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}
.footer-copyright p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.footer-copyright p.footer-notice {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.video-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.breadcrumb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #ff6b9d;
}
.breadcrumb .current {
  color: #fff;
  font-weight: 600;
}

.video-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
.video-meta .status-complete {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.video-meta .status-ongoing {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.cast-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cast-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cast-item:last-child {
  border-bottom: none;
}

.cast-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  min-width: 4rem;
  font-weight: 500;
}

.cast-value {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  flex: 1;
}

.recommended-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recommended-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.recommended-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}
.recommended-item:hover .recommended-title {
  color: #ff6b9d;
}

.recommended-thumb {
  width: 4rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.recommended-info {
  flex: 1;
  min-width: 0;
}

.recommended-title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  overflow: hidden;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recommended-episodes {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading {
  width: 3rem;
  height: 3rem;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: #ff6b9d;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.alert {
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.alert.alert-success {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}
.alert.alert-error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}
.alert.alert-info {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.modal .modal-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 15px 35px 0 rgba(31, 38, 135, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.modal .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.modal .modal-content .modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.modal .modal-content .modal-header .modal-close {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal .modal-content .modal-header .modal-close:hover {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  color: #fff;
}
.modal .modal-content .modal-body {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
.modal.show .modal-content {
  transform: scale(1);
}

@media (hover: none) {
  .video-card:hover {
    transform: none;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  }
  .video-card:active {
    transform: scale(0.98);
  }
  .episode-item:not(.active):hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .episode-item:not(.active):active {
    background: rgba(255, 255, 255, 0.1);
  }
  .recommended-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
  }
  .recommended-item:active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.98);
  }
}
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.transition {
  transition: all 0.3s ease;
}

.gradient-text {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
}

.glass-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.glass-btn:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c377e0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: all 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px 0 rgba(31, 38, 135, 0.5);
}

.detail .main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.detail .content-area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.detail .sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .video-card img {
    height: 10rem;
  }
  .video-title {
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .logo {
    font-size: 1.75rem;
  }
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  .category-title {
    font-size: 1.75rem;
  }
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .video-card img {
    height: 12rem;
  }
  .video-card-content {
    padding: 0.75rem;
  }
  .hero-section, .search-section {
    padding: 2rem 0;
  }
  .category-section {
    padding: 3rem 0;
  }
  .category-section-item {
    margin-bottom: 3rem;
  }
  .detail .main-grid {
    gap: 2rem;
  }
  .detail .content-area {
    gap: 1.5rem;
  }
  .detail .sidebar {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
  .container {
    padding: 0 2rem;
  }
  .search-container {
    max-width: 40rem;
  }
  .episode-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1280px) {
  .video-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .detail .main-grid {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
  .detail .sidebar {
    order: 2;
  }
  .detail .content-area {
    order: 1;
  }
  .detail .episode-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 640px) {
  .video-card img {
    height: 12rem;
  }
  .video-card .video-title {
    font-size: 0.8rem;
  }
  .video-card .video-episodes {
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .pagination-container {
    transform: scale(0.7) !important;
  }
  main {
    padding: 1rem !important;
  }
}

/*# sourceMappingURL=index.css.map */
