@charset "UTF-8";
/* Reset and base styles */
* {
  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, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.8) 25%, rgba(255, 255, 255, 0.95) 50%, rgba(249, 250, 251, 0.8) 75%, rgba(255, 255, 255, 0.9) 100%), radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.02) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(156, 163, 175, 0.015) 0%, transparent 50%);
  background-attachment: fixed;
  color: #374151;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.015) 0%, transparent 30%), radial-gradient(circle at 90% 80%, rgba(31, 41, 55, 0.01) 0%, transparent 30%);
  z-index: -1;
  pointer-events: none;
  animation: gentle-drift 20s ease-in-out infinite alternate;
}

@keyframes gentle-drift {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-3px) translateY(-2px);
    opacity: 0.8;
  }
  100% {
    transform: translateX(2px) translateY(1px);
    opacity: 0.6;
  }
}
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header styles */
header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.3s ease;
}
.logo:hover {
  color: #3b82f6;
}
.logo img {
  height: 30px;
}

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

.nav-link {
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
}
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
  border-radius: 1px;
}
.nav-link:hover {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
}
.nav-link:hover::before {
  width: 60%;
}
.nav-link.active {
  color: #1f2937;
  background: rgba(31, 41, 55, 0.05);
}
.nav-link.active::before {
  width: 60%;
  background: #1f2937;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: 1px solid rgba(229, 231, 235, 0.6);
  color: #374151;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.mobile-menu-btn:hover {
  background: rgba(249, 250, 251, 0.8);
  border-color: rgba(156, 163, 175, 0.4);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(229, 231, 235, 0.5);
  padding: 1rem 0;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.mobile-nav.show {
  display: flex;
}

/* Section styles */
.hero-section {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(249, 250, 251, 0.6) 100%);
}

.search-section {
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.6);
}

.category-section {
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.4);
}

/* Typography */
.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
}

.category-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  border-left: 4px solid #3b82f6;
  padding-left: 1rem;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.category-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-count {
  color: #6b7280;
  font-size: 0.75rem;
  background: rgba(156, 163, 175, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(229, 231, 235, 0.6);
}

.category-desc {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.view-more {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
  padding: 6px 12px;
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.6);
  background: rgba(255, 255, 255, 0.8);
}
.view-more:hover {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
}

/* Grid layouts */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

/* Video card styles */
.video-card {
  display: block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.8) 100%);
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(229, 231, 235, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

.video-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover img {
  transform: scale(1.02);
}

.video-card-content {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
}

.video-title {
  color: #1f2937;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-episodes {
  color: #6b7280;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Search form */
.search-container {
  max-width: 32rem;
  margin: 0 auto;
}

.search-form {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: 0.5rem;
  color: #374151;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.search-input::placeholder {
  color: #d1d5db;
}
.search-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #d1d5db;
}

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #3b82f6 0%, rgb(107.7609756098, 161.0975609756, 248.2390243902) 100%);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}
.search-btn:hover {
  background: linear-gradient(135deg, rgb(34.6195121951, 114.4512195122, 244.8804878049) 0%, #3b82f6 100%);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
  transform: translateY(-50%) translateY(-1px);
}

.hot-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hot-tags span {
  color: #6b7280;
  font-size: 0.75rem;
}

.hot-tag {
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
}
.hot-tag:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
}

.category-section-item {
  margin-bottom: 2rem;
}

/* Main content */
main {
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.6);
}

.page-header {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(229, 231, 235, 0.4);
}

.page-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.page-description {
  color: #6b7280;
  font-size: 0.875rem;
}

.page-stats {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #d1d5db;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: #374151;
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination-btn:hover:not(:disabled) {
  background: rgba(249, 250, 251, 0.9);
  border-color: rgba(156, 163, 175, 0.4);
  transform: translateY(-1px);
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.page-number {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  color: #374151;
}
.page-number.active {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}
.page-number:not(.active):hover {
  background: rgba(249, 250, 251, 0.9);
  border-color: rgba(156, 163, 175, 0.4);
  transform: translateY(-1px);
}

/* Detail page styles */
.detail .main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.content-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

/* Video player */
.video-player video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  background: black;
  border-radius: 0.5rem;
}

.iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.iframeBox .iframe {
  width: 100%;
  height: 100%;
}

.player-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(55, 65, 81, 0.9), rgba(17, 24, 39, 0.9));
  border-radius: 0.5rem;
}

.player-info {
  text-align: center;
  padding: 1rem;
}

.play-button {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, #3b82f6 0%, rgb(107.7609756098, 161.0975609756, 248.2390243902) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}
.play-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.episode-title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.episode-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

/* Video info */
.video-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(229, 231, 235, 0.4);
}

.breadcrumb {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #3b82f6;
}

.breadcrumb .current {
  color: #1f2937;
}

.video-title {
  font-weight: bold;
  color: #1f2937;
  line-height: 1.4;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.status-complete {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.status-ongoing {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Action buttons */
.action-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.action-btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(229, 231, 235, 0.6);
  background: rgba(255, 255, 255, 0.9);
  color: #374151;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.action-btn:hover {
  background: rgba(249, 250, 251, 0.9);
  border-color: rgba(156, 163, 175, 0.4);
  transform: translateY(-1px);
}

/* Tabs */
.tabs {
  width: 100%;
}

.tab-buttons {
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  border: 1px solid rgba(229, 231, 235, 0.4);
}

.tab-button {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-button:first-child {
  border-radius: 0.5rem 0 0 0.5rem;
}
.tab-button:last-child {
  border-radius: 0 0.5rem 0.5rem 0;
}
.tab-button.active {
  background: #3b82f6;
  color: #fff;
}
.tab-button:not(.active):hover {
  background: rgba(59, 130, 246, 0.05);
  color: #3b82f6;
}

.tab-content {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  padding: 0.75rem;
  border: 1px solid rgba(229, 231, 235, 0.4);
}
.tab-content.hidden {
  display: none;
}
.tab-content p {
  color: #374151;
  line-height: 1.6;
  font-size: 0.875rem;
}

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

.cast-item {
  display: flex;
  gap: 0.5rem;
}

.cast-label {
  color: #6b7280;
  font-size: 0.875rem;
  min-width: 3rem;
}

.cast-value {
  color: #1f2937;
  font-size: 0.875rem;
}

/* Sidebar components */
.sidebar-section {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  padding: 0.75rem;
  border: 1px solid rgba(229, 231, 235, 0.4);
}

.sidebar-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.current-episode {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Episode list */
.episode-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  max-height: 12rem;
  overflow-y: auto;
}

.episode-item {
  width: 100%;
  padding: 0.5rem;
  font-size: 0.75rem;
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.9);
  color: #374151;
}
.episode-item.active {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}
.episode-item:not(.active):hover {
  background: rgba(249, 250, 251, 0.9);
  border-color: rgba(156, 163, 175, 0.4);
}

/* Recommended videos */
.recommended-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.recommended-item {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(229, 231, 235, 0.3);
}
.recommended-item:hover {
  background: rgba(249, 250, 251, 0.8);
  border-color: rgba(156, 163, 175, 0.4);
  transform: translateY(-1px);
}

.recommended-thumb {
  width: 4rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 0.25rem;
  flex-shrink: 0;
}

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

.recommended-title {
  color: #1f2937;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recommended-episodes {
  color: #6b7280;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Search styles */
.search-keyword {
  color: #6b7280;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-keyword em {
  color: #1f2937;
  font-style: normal;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.search-count {
  color: #6b7280;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-count::before {
  content: "📊";
  font-size: 0.9rem;
}
.search-count .count {
  color: #1f2937;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.search-header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 30px;
  border: 1px solid rgba(229, 231, 235, 0.4);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.search-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3b82f6, #9ca3af);
  border-radius: 0 2px 2px 0;
}

.search-title {
  font-size: 1.8rem;
  color: #1f2937;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
}
.search-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #9ca3af);
  border-radius: 1px;
}

.footer {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(55, 65, 81, 0.9) 100%);
  color: #fff;
  padding: 50px 0 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), rgba(156, 163, 175, 0.3), transparent);
  opacity: 0.8;
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.02) 0%, transparent 40%), radial-gradient(circle at 75% 75%, rgba(156, 163, 175, 0.015) 0%, transparent 40%);
  z-index: -1;
}

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

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-nav {
    gap: 25px;
  }
}
@media (max-width: 480px) {
  .footer-nav {
    gap: 20px;
  }
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 16px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.footer-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), rgba(255, 255, 255, 0.05));
  transition: left 0.3s ease;
  z-index: -1;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #3b82f6, rgba(255, 255, 255, 0.6));
  transition: width 0.3s ease;
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.4);
}
.footer-nav a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.08);
}
.footer-nav a:hover::before {
  left: 0;
}
.footer-nav a:hover::after {
  width: 60%;
}
.footer-nav a:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}
.footer-copyright p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 400;
}
.footer-copyright p.footer-notice {
  font-size: 0.8rem;
  opacity: 0.6;
  color: rgba(255, 255, 255, 0.7);
}

.pagination-container {
  text-align: center;
  margin: 30px 0;
}
.pagination-container ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.8) 100%);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(229, 231, 235, 0.4);
  backdrop-filter: blur(5px);
}
.pagination-container li {
  margin: 0 2px;
}
.pagination-container a {
  display: block;
  min-width: 40px;
  padding: 8px 0;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-size: 18px;
  background: rgba(249, 250, 251, 0.6);
  text-align: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.pagination-container a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.3s ease;
  z-index: -1;
}
.pagination-container a:hover, .pagination-container a:focus {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, rgb(83.3804878049, 145.5487804878, 247.1195121951) 100%);
  border-color: #3b82f6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
.pagination-container a:hover::before, .pagination-container a:focus::before {
  left: 0;
}
.pagination-container a.active {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, rgb(83.3804878049, 145.5487804878, 247.1195121951) 100%);
  border-color: #3b82f6;
  cursor: default;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}
.pagination-container .page-options a {
  font-weight: bold;
  background: linear-gradient(135deg, rgba(250, 173, 20, 0.1) 0%, rgba(255, 235, 230, 0.8) 100%);
  color: #d97706;
  border: 1px solid rgba(250, 173, 20, 0.2);
  min-width: 60px;
}
.pagination-container .page-options a:hover {
  background: linear-gradient(135deg, rgba(250, 173, 20, 0.15) 0%, rgba(255, 229, 102, 0.3) 100%);
  color: #b45309;
  border-color: rgba(255, 214, 102, 0.4);
  box-shadow: 0 4px 12px rgba(250, 173, 20, 0.2);
}

/* 响应式设计优化 */
@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .video-card img {
    height: 10rem;
  }
  .video-title {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .search-header {
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .search-keyword {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .logo {
    font-size: 1.75rem;
  }
  .section-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
  .category-title {
    font-size: 1.5rem;
    padding-left: 1rem;
  }
  .category-header {
    margin-bottom: 1.5rem;
  }
  .category-info {
    gap: 1rem;
  }
  .category-count {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
  }
  .category-desc {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
  }
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .video-card img {
    height: 16rem;
  }
  .video-card-content {
    padding: 0.75rem;
  }
  .hero-section {
    padding: 2rem 0;
  }
  .search-section {
    padding: 2rem 0;
  }
  .category-section {
    padding: 3rem 0;
  }
  .category-section-item {
    margin-bottom: 3rem;
  }
  .search-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  .search-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .hot-tags span, .hot-tag {
    font-size: 0.875rem;
  }
  main {
    padding: 2rem 0;
  }
  .page-header {
    margin-bottom: 2rem;
    padding: 2rem;
  }
  .page-title {
    font-size: 1.875rem;
  }
  .page-description {
    font-size: 1rem;
  }
  .page-stats {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
  .video-grid {
    margin-bottom: 2rem;
  }
  .episode-grid {
    grid-template-columns: repeat(8, 1fr);
  }
  .content-area {
    gap: 1.5rem;
  }
  .sidebar {
    gap: 1.5rem;
  }
  .video-player {
    min-height: 300px;
  }
  .play-button {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
  }
  .episode-title {
    font-size: 1.125rem;
  }
  .episode-subtitle {
    font-size: 0.875rem;
  }
  .breadcrumb {
    font-size: 0.875rem;
  }
  .video-meta {
    font-size: 0.875rem;
    gap: 1rem;
  }
  .action-buttons {
    display: flex;
    gap: 0.75rem;
  }
  .action-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    gap: 0.5rem;
  }
  .tab-button {
    font-size: 0.875rem;
  }
  .tab-content {
    padding: 1rem;
  }
  .tab-content p {
    font-size: 1rem;
  }
  .cast-label, .cast-value {
    font-size: 1rem;
  }
  .sidebar-section {
    padding: 1rem;
  }
  .sidebar-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  .current-episode {
    font-size: 0.875rem;
  }
  .episode-grid {
    grid-template-columns: repeat(6, 1fr);
    max-height: 16rem;
  }
  .recommended-thumb {
    width: 5rem;
    height: 3.75rem;
  }
  .recommended-title {
    font-size: 0.875rem;
  }
  .recommended-episodes {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .video-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;
  }
  .sidebar {
    order: 2;
  }
  .content-area {
    order: 1;
  }
  .episode-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* 移动端触摸优化 */
@media (hover: none) {
  .video-card:hover {
    transform: none;
  }
  .video-card:active {
    transform: scale(0.98);
  }
  .episode-item:not(.active):hover {
    background: rgba(249, 250, 251, 0.9);
  }
  .episode-item:not(.active):active {
    background: rgba(243, 244, 246, 0.9);
  }
  .recommended-item:hover {
    background: rgba(255, 255, 255, 0.6);
  }
  .recommended-item:active {
    background: rgba(249, 250, 251, 0.8);
  }
}
/* 滚动条样式优化 */
.episode-grid::-webkit-scrollbar {
  width: 4px;
}

.episode-grid::-webkit-scrollbar-track {
  background: rgba(229, 231, 235, 0.3);
  border-radius: 2px;
}

.episode-grid::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.5);
  border-radius: 2px;
}
.episode-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(156, 163, 175, 0.7);
}

/* 加载动画 */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.video-card,
.recommended-item,
.episode-item {
  animation: fade-in 0.3s ease-out;
}

/* 焦点样式优化 */
.search-input:focus,
.episode-item:focus,
.page-number:focus,
.action-btn:focus {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

/* 分页器优化 - 现代简约风格 */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  padding: 0 20px;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(229, 231, 235, 0.6);
  backdrop-filter: blur(10px);
  position: relative;
}
.pagination-container ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2) 20%, rgba(59, 130, 246, 0.3) 50%, rgba(59, 130, 246, 0.2) 80%, transparent);
  border-radius: 16px 16px 0 0;
}
.pagination-container li {
  margin: 0;
}
.pagination-container li:not(:last-child) {
  margin-right: 4px;
}
.pagination-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  color: #374151;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}
.pagination-container a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}
.pagination-container a:not(.page-link) {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-variant-numeric: tabular-nums;
}
.pagination-container a:hover:not(.active) {
  color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.12) 100%);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15), 0 2px 8px rgba(59, 130, 246, 0.1);
}
.pagination-container a:hover:not(.active)::before {
  left: 100%;
}
.pagination-container a.active {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, rgb(98.0087804878, 154.8780487805, 247.7912195122) 50%, #3b82f6 100%);
  border-color: #3b82f6;
  cursor: default;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3), 0 2px 8px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  font-weight: 600;
}
.pagination-container a.active::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
  border-radius: 14px;
  z-index: -2;
  opacity: 0.6;
  animation: pulse-glow 2s ease-in-out infinite;
}
.pagination-container a:active:not(.active) {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2), 0 1px 4px rgba(59, 130, 246, 0.1);
}
.pagination-container .pagination-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: default;
}
.pagination-container .pagination-ellipsis::before {
  content: "⋯";
  font-size: 18px;
  line-height: 1;
}
.pagination-container .page-options {
  margin-left: 8px;
}
.pagination-container .page-options a.page-link {
  min-width: auto;
  padding: 0 16px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(253, 186, 116, 0.08) 100%);
  color: #ea580c;
  border: 1px solid rgba(251, 146, 60, 0.2);
  font-weight: 600;
  font-size: 14px;
  position: relative;
}
.pagination-container .page-options a.page-link:hover {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.15) 0%, rgba(253, 186, 116, 0.12) 100%);
  color: #c2410c;
  border-color: rgba(251, 146, 60, 0.3);
  box-shadow: 0 6px 20px rgba(251, 146, 60, 0.2), 0 2px 8px rgba(251, 146, 60, 0.1);
}
.pagination-container .page-options a.page-link:hover::after {
  transform: translateX(2px);
}
.pagination-container .page-options a.page-link:hover[href*=prev]::after {
  transform: translateX(-2px);
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 30px 0;
    padding: 0 15px;
  }
  .pagination-container ul {
    padding: 10px 12px;
    gap: 6px;
    border-radius: 14px;
  }
  .pagination-container a {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 10px;
    padding: 0 10px;
  }
  .pagination-container .page-options a.page-link {
    padding: 0 12px;
    font-size: 13px;
  }
  .pagination-container .page-options a.page-link::after {
    font-size: 11px;
    margin-left: 4px;
  }
}
@media (max-width: 480px) {
  .pagination-container ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding: 8px 10px;
  }
  .pagination-container a {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    border-radius: 8px;
  }
  .pagination-container .page-options {
    margin-left: 4px;
    width: 100%;
    margin-top: 8px;
  }
  .pagination-container .page-options a.page-link {
    width: 100%;
    justify-content: center;
  }
}
@media (prefers-color-scheme: dark) {
  .pagination-container ul {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(55, 65, 81, 0.9) 100%);
    border-color: rgba(75, 85, 99, 0.6);
  }
  .pagination-container ul::before {
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3) 20%, rgba(59, 130, 246, 0.4) 50%, rgba(59, 130, 246, 0.3) 80%, transparent);
  }
  .pagination-container a {
    background: rgba(55, 65, 81, 0.7);
    color: rgba(255, 255, 255, 0.9);
  }
  .pagination-container a:hover:not(.active) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.2) 100%);
  }
}
@media (prefers-contrast: high) {
  .pagination-container a {
    border-width: 2px;
  }
  .pagination-container a.active {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pagination-container a {
    transition: none;
  }
  .pagination-container a::before, .pagination-container a::after {
    animation: none;
    transition: none;
  }
  .pagination-container a:hover {
    transform: none;
  }
  @keyframes pulse-glow {
    0%, 100% {
      opacity: 0.6;
    }
  }
}

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