@charset "UTF-8";
/* 紫色玻璃拟态风格，渐变、圆角、阴影 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #7b2ff2 0%, #fbc2eb 100%);
  min-height: 100vh;
  color: #2d2346;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(161, 140, 209, 0.15) 100%);
  z-index: -1;
  pointer-events: none;
}

.header {
  background: rgba(180, 140, 255, 0.25);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 32px 0 rgba(120, 80, 200, 0.12);
  border-bottom: 1.5px solid rgba(180, 140, 255, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(90deg, #a18cd1 0%, #fbc2eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 1px;
}
.logo img {
  height: 32px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-menu a {
  text-decoration: none;
  color: #7c5fd4;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 22px;
  border-radius: 22px;
  transition: all 0.25s;
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 8px rgba(161, 140, 209, 0.08);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
  background: linear-gradient(90deg, #a18cd1 0%, #fbc2eb 100%);
  box-shadow: 0 4px 16px rgba(161, 140, 209, 0.18);
  transform: translateY(-2px) scale(1.04);
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 25px;
  padding: 8px 20px;
  box-shadow: 0 4px 15px rgba(161, 140, 209, 0.1);
  border: 1px solid rgba(180, 140, 255, 0.13);
  backdrop-filter: blur(10px);
}

.search-input {
  border: none;
  outline: none;
  background: transparent;
  padding: 8px;
  font-size: 15px;
  width: 200px;
  color: #7c5fd4;
}

.search-input::placeholder {
  color: #7b2ff2;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 1px;
}

.search-btn {
  border: none;
  background: linear-gradient(90deg, #a18cd1 0%, #fbc2eb 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  margin-left: 8px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(161, 140, 209, 0.1);
}

.search-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 16px rgba(161, 140, 209, 0.18);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 0 20px;
}

.section {
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(123, 47, 242, 0.13), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  border: 1.5px solid rgba(123, 47, 242, 0.13);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: none;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #7b2ff2;
  position: relative;
  letter-spacing: 1px;
}

.section-title::before {
  display: none;
}

.more-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 20px;
  background: linear-gradient(90deg, #a18cd1 0%, #fbc2eb 100%);
  transition: all 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(161, 140, 209, 0.1);
}

.more-link:hover {
  background: linear-gradient(90deg, #fbc2eb 0%, #a18cd1 100%);
  color: #7c5fd4;
  transform: translateX(4px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.video-card {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(123, 47, 242, 0.13);
  box-shadow: 0 4px 24px rgba(123, 47, 242, 0.1), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  border: 1.5px solid rgba(123, 47, 242, 0.18);
  backdrop-filter: blur(12px);
}

.video-card:hover {
  background: linear-gradient(135deg, #a18cd1 0%, #7b2ff2 100%);
  box-shadow: 0 12px 40px rgba(123, 47, 242, 0.6666666667), 0 0 20px rgba(255, 255, 255, 0.1333333333);
  border-color: #a18cd1;
}

.video-card:hover .video-title {
  color: #fff;
  text-shadow: 0 2px 8px #7b2ff2, 0 1px 0 #fff;
  font-weight: 800;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 9/12;
  overflow: hidden;
  background: linear-gradient(45deg, rgba(161, 140, 209, 0.08), rgba(251, 194, 235, 0.05));
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

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

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(161, 140, 209, 0.1);
}

.video-card:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 16px;
}

.video-title {
  font-size: 15px;
  font-weight: 700;
  color: #7b2ff2;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.video-card:hover .video-title {
  color: #a18cd1;
}

.footer {
  background: linear-gradient(90deg, #a18cd1 0%, #7b2ff2 100%);
  color: #fff;
  box-shadow: 0 -4px 32px rgba(123, 47, 242, 0.18);
  border-top: none;
  border-radius: 0;
  padding: 32px 0 16px 0;
  margin-top: 48px;
  position: relative;
}

.footer-links {
  max-width: 1200px;
  margin: 0 auto 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 0 10px;
}

.footer-links a {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 600;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(161, 140, 209, 0.1);
  border: none;
  transition: all 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  background: linear-gradient(90deg, #fbc2eb 0%, #a18cd1 100%);
  color: #7b2ff2;
}

.copyright {
  color: #fff;
  font-size: 15px;
  text-shadow: 0 2px 8px #7b2ff2;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}

/* 响应式 */
@media (max-width: 900px) {
  .main-content {
    padding: 24px 8px 0 8px;
  }
  .section {
    padding: 18px;
  }
  .video-grid {
    gap: 14px;
  }
  .footer {
    padding: 18px 8px;
  }
  .footer-links {
    gap: 12px;
  }
}
/* 移动端头部优化 */
@media (max-width: 768px) {
  /* 头部容器优化 */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .nav-container {
    height: 60px;
    padding: 0 15px;
    position: relative;
  }
  /* Logo 优化 */
  .logo {
    font-size: 22px;
  }
  .logo img {
    height: 24px;
  }
  /* 导航菜单移动端样式 */
  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(180, 140, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(123, 47, 242, 0.2);
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(180, 140, 255, 0.2);
    z-index: 999;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .nav-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
  }
  .nav-menu ul {
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    margin: 0;
  }
  .nav-menu a {
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 12px;
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
  }
  .nav-menu a:hover,
  .nav-menu a.active {
    background: linear-gradient(90deg, #a18cd1 0%, #fbc2eb 100%);
    color: #fff;
    transform: none;
  }
  /* 移动端菜单按钮 */
  .mobile-menu-btn {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #7c5fd4;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(180, 140, 255, 0.2);
  }
  .mobile-menu-btn:hover {
    background: rgba(161, 140, 209, 0.2);
    color: #a18cd1;
    transform: scale(1.05);
  }
  /* 搜索框在移动端隐藏 */
  .search-box {
    display: none;
  }
  /* 主要内容调整 */
  .main-content {
    padding: 20px 15px 0 15px;
  }
  .section {
    padding: 20px 15px;
    margin-bottom: 30px;
  }
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }
  .section-title {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  /* 超小屏幕头部优化 */
  .nav-container {
    height: 56px;
    padding: 0 10px;
  }
  .logo {
    font-size: 18px;
  }
  .logo img {
    height: 20px;
  }
  .mobile-menu-btn {
    font-size: 20px;
    padding: 6px;
  }
  .nav-menu {
    top: 56px;
  }
  .nav-menu ul {
    padding: 15px;
    gap: 6px;
  }
  .nav-menu a {
    padding: 10px 12px;
    font-size: 15px;
  }
  .section-title {
    font-size: 18px;
  }
  .video-title {
    font-size: 13px;
  }
  .footer {
    padding: 12px 4px;
  }
  .footer-links {
    gap: 6px;
  }
  .footer-links a {
    padding: 5px 10px;
    font-size: 13px;
  }
  .copyright {
    font-size: 12px;
  }
}
/* 加载动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 移动端菜单滑入动画 */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section {
  animation: fadeInUp 0.6s ease-out;
}

.video-card {
  animation: fadeInUp 0.6s ease-out;
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff6b9d, #c471f5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ff5a8a, #b965f0);
}

/* 分类页面样式 */
.category-header {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.category-title {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(45deg, #ff6b9d, #c471f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.category-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.category-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-item {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.stat-item strong {
  color: #ff6b9d;
  font-weight: 600;
}

/* 筛选区域 */
.filter-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 14px;
}

.filter-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.filter-btn:hover {
  background: rgba(255, 107, 157, 0.2);
  border-color: rgba(255, 107, 157, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.filter-btn.active {
  background: linear-gradient(45deg, #ff6b9d, #c471f5);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.view-toggle {
  display: flex;
  gap: 5px;
}

.view-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.view-btn:hover {
  background: rgba(255, 107, 157, 0.2);
  border-color: rgba(255, 107, 157, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.view-btn.active {
  background: linear-gradient(45deg, #ff6b9d, #c471f5);
  border-color: transparent;
  color: white;
}

/* 视频列表区域 */
.video-list-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 视频卡片增强 */
.video-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  z-index: 2;
}

.video-badge.hot {
  background: linear-gradient(45deg, #ff4757, #ff6b9d);
}

.video-badge.new {
  background: linear-gradient(45deg, #2ed573, #1dd1a1);
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination ul {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
}

.pagination a,
.pagination .page-link {
  min-width: 40px;
  height: 40px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  border-radius: 12px;
  color: #7b2ff2;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(161, 140, 209, 0.1);
  cursor: pointer;
  transition: all 0.2s;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.pagination a:hover,
.pagination .page-link:hover {
  background: linear-gradient(90deg, #a18cd1 0%, #7b2ff2 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.07);
}

.pagination a.active,
.pagination .active {
  background: linear-gradient(90deg, #7b2ff2 0%, #a18cd1 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.pagination li.page-options a {
  background: rgba(255, 255, 255, 0.22);
  color: #7b2ff2;
  font-weight: 600;
}

.pagination li.page-options a:hover {
  background: linear-gradient(90deg, #a18cd1 0%, #fbc2eb 100%);
  color: #fff;
}

.page-dots {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  padding: 0 8px;
}

/* 移动端分页优化 */
@media (max-width: 768px) {
  .pagination {
    gap: 5px;
    margin-top: 30px;
  }
  .page-btn {
    min-width: 35px;
    height: 35px;
    padding: 0 8px;
    font-size: 13px;
  }
  .page-dots {
    padding: 0 5px;
  }
}
@media (max-width: 480px) {
  .pagination {
    gap: 3px;
  }
  .page-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 6px;
    font-size: 12px;
  }
}
/* 搜索结果页面样式 */
.search-header {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.search-title {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b9d, #c471f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.search-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 10px;
}

.search-keyword {
  color: #ff6b9d;
  font-weight: 600;
  background: rgba(255, 107, 157, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 157, 0.2);
}

.search-count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.search-count strong {
  color: #ff6b9d;
  font-weight: 600;
}

/* 移动端搜索头部优化 */
@media (max-width: 768px) {
  .search-header {
    padding: 20px;
    margin-bottom: 25px;
  }
  .search-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .search-info {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .search-count {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .search-header {
    padding: 15px;
    margin-bottom: 20px;
  }
  .search-title {
    font-size: 22px;
  }
  .search-info {
    font-size: 14px;
  }
  .search-keyword {
    padding: 1px 6px;
    font-size: 14px;
  }
}
/* 视频播放页面样式 */
.video-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 视频播放器区域 */
.video-player-section {
  margin-bottom: 30px;
}

.video-player {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  background: #000;
}

.video-player video {
  width: 100%;
  height: auto;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 107, 157, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.play-button:hover {
  background: rgb(255, 107, 157);
  transform: scale(1.1);
}

/* 视频信息区域 */
.video-info-section {
  margin-bottom: 40px;
}

.video-details {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-details .video-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ff6b9d, #c471f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.video-category,
.video-date,
.video-views {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-description h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
}

.video-description p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 12px;
}

.video-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tag {
  padding: 6px 12px;
  background: rgba(255, 107, 157, 0.1);
  border: 1px solid rgba(255, 107, 157, 0.3);
  border-radius: 15px;
  font-size: 12px;
  color: #ff6b9d;
}

/* 选集区域 */
.episodes-section {
  margin-bottom: 40px;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.episode-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.episode-item:hover {
  background: rgba(255, 107, 157, 0.1);
  border-color: rgba(255, 107, 157, 0.3);
  color: white;
  transform: translateY(-2px);
}

.episode-item.active {
  background: rgba(255, 107, 157, 0.2);
  border-color: rgba(255, 107, 157, 0.4);
  color: white;
}

.episode-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 107, 157, 0.2);
  border-radius: 50%;
  font-weight: 600;
  font-size: 14px;
  color: #ff6b9d;
}

.episode-item.active .episode-number {
  background: #ff6b9d;
  color: white;
}

.episode-title {
  font-size: 14px;
  font-weight: 500;
}

/* 推荐视频区域 */
.recommended-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

/* 移动端优化 */
@media (max-width: 768px) {
  .video-page-container {
    padding: 0 15px;
  }
  .video-details {
    padding: 20px;
  }
  .video-details .video-title {
    font-size: 24px;
  }
  .video-meta {
    gap: 10px;
  }
  .video-category,
  .video-date,
  .video-views {
    font-size: 12px;
    padding: 4px 8px;
  }
  .episodes-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .episode-item {
    padding: 12px;
  }
  .play-button {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .video-details .video-title {
    font-size: 20px;
  }
  .video-meta {
    flex-direction: column;
    gap: 8px;
  }
  .video-tags {
    gap: 8px;
  }
  .tag {
    font-size: 11px;
    padding: 4px 8px;
  }
  .section-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .pagination-container {
    transform: scale(0.8);
  }
  .page-options {
    width: 100px;
  }
  .detail-page .episodes-section .episode-link {
    padding: 10px 15px !important;
  }
}

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