/**
██   ██ ██    ██ ██████  ██  ██████ ███    ███ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ████  ████ ██      
███████ ██    ██ ██   ██ ██ ██      ██ ████ ██ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ██  ██  ██      ██ 
██   ██  ██████  ██████  ██  ██████ ██      ██ ███████ 
            ===========================================
 * @Sign
================================
        Keep calm and get rich.
                    Is the best huudi.
 */

/* 色系变量 */
:root {
  --hu-morandy-bg: #f1efe9;
  --hu-morandy-primary: #8b9d83;
  --hu-morandy-secondary: #b6b8a6;
  --hu-morandy-accent: #aa8e79;
  --hu-morandy-text: #494949;
  --hu-morandy-text-light: #767676;
  --hu-morandy-border: #d5d0c9;
  --hu-morandy-hover: #6b7d64;
  --hu-morandy-shadow: rgba(0, 0, 0, 0.05);
  --hu-morandy-card-bg: #ffffff;
  --hu-morandy-tag-bg: rgba(139, 157, 131, 0.12);
  --hu-morandy-hover-overlay: rgba(170, 142, 121, 0.8);
  --hu-morandy-category-ribbon: #aa8e79;
  --hu-morandy-rating-star: #d4a373;
  --hu-morandy-play-btn: rgba(255, 255, 255, 0.9);
  --hu-morandy-filter-active: rgba(139, 157, 131, 0.15);
}

/* 全局重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--hu-morandy-text);
  background-color: #f8f7f4;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, li {
  list-style: none;
}

/* 主容器 */
.hu-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 顶部导航 */
.hu-header-section {
  background-color: var(--hu-morandy-bg);
  box-shadow: 0 4px 12px var(--hu-morandy-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.hu-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
  flex-wrap: wrap;
}

/* 网站标志 */
.hu-brand {
  display: flex;
  align-items: center;
}

.hu-logo-container {
  display: flex;
  align-items: center;
}

.hu-logo-image {
  width: auto;
  height: 36px;
  margin-right: 12px;
}

.hu-site-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--hu-morandy-primary);
  letter-spacing: 0.5px;
}

/* 搜索框 */
.hu-search-area {
  flex: 1;
  max-width: 480px;
  margin: 0 20px;
}

.hu-search-form {
  position: relative;
  width: 100%;
}

.hu-search-input {
  width: 100%;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--hu-morandy-border);
  border-radius: 24px;
  padding: 0 50px 0 20px;
  font-size: 15px;
  color: var(--hu-morandy-text);
  transition: all 0.3s ease;
}

.hu-search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(139, 157, 131, 0.2);
  background-color: #ffffff;
}

.hu-search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  background-color: var(--hu-morandy-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.hu-search-btn:hover {
  background-color: var(--hu-morandy-hover);
}

.hu-search-icon {
  width: 16px;
  height: 16px;
}

/* 导航菜单 */
.hu-nav-wrapper {
  width: 100%;
  background-color: var(--hu-morandy-bg);
  border-top: 1px solid var(--hu-morandy-border);
  padding: 8px 0;
}

.hu-main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hu-nav-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hu-nav-item {
  position: relative;
}

.hu-nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--hu-morandy-text);
  padding: 6px 0;
  position: relative;
}

.hu-nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--hu-morandy-primary);
  transition: width 0.3s ease;
}

.hu-nav-link:hover {
  color: var(--hu-morandy-primary);
}

.hu-nav-link:hover:after,
.hu-active .hu-nav-link:after {
  width: 100%;
}

.hu-active .hu-nav-link {
  color: var(--hu-morandy-primary);
  font-weight: 600;
}

/* 热门标签 */
.hu-hot-tags {
  background-color: #fff;
  padding: 12px 0;
  margin-top: 1px;
  border-bottom: 1px solid var(--hu-morandy-border);
}

.hu-tags-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hu-tag-title {
  font-size: 14px;
  color: var(--hu-morandy-text-light);
  white-space: nowrap;
}

.hu-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hu-tag {
  font-size: 13px;
  color: var(--hu-morandy-text);
  background-color: rgba(182, 184, 166, 0.15);
  padding: 3px 12px;
  border-radius: 15px;
  transition: all 0.3s;
}

.hu-tag:hover {
  background-color: var(--hu-morandy-primary);
  color: white;
}

/* 分类面板 */
.hu-category-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hu-category-panel {
  position: fixed;
  top: 0;
  left: -350px;
  width: 320px;
  height: 100%;
  background-color: white;
  z-index: 201;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.hu-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--hu-morandy-border);
}

.hu-category-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--hu-morandy-primary);
}

.hu-category-close {
  font-size: 24px;
  color: var(--hu-morandy-text-light);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.hu-category-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--hu-morandy-text);
}

.hu-category-content {
  padding: 15px;
}

.hu-category-group {
  margin-bottom: 20px;
}

.hu-category-parent {
  font-size: 16px;
  font-weight: 600;
  color: var(--hu-morandy-primary);
  padding: 8px 10px;
  margin-bottom: 8px;
  border-radius: 4px;
  background-color: rgba(139, 157, 131, 0.1);
}

.hu-category-children {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 5px;
}

.hu-category-child {
  font-size: 14px;
  color: var(--hu-morandy-text);
  padding: 6px 8px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
}

.hu-category-child:hover {
  background-color: rgba(139, 157, 131, 0.1);
  color: var(--hu-morandy-primary);
}

.hu-category-child.hu-active {
  background-color: var(--hu-morandy-primary);
  color: white;
}

/* 移动端菜单按钮 */
.hu-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
}

.hu-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--hu-morandy-primary);
  transition: all 0.3s ease;
}

/* 移动端导航 */
.hu-mobile-nav {
  display: none;
  width: 100%;
  background-color: white;
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--hu-morandy-shadow);
}

.hu-mobile-nav-list {
  padding: 10px 0;
}

.hu-mobile-nav-item {
  padding: 10px 15px;
}

.hu-mobile-nav-link {
  display: block;
  padding: 5px 0;
  font-size: 15px;
  color: var(--hu-morandy-text);
}

.hu-mobile-nav-item.hu-active .hu-mobile-nav-link {
  color: var(--hu-morandy-primary);
  font-weight: 500;
}

.hu-mobile-sub-item .hu-mobile-nav-link {
  padding-left: 15px;
  font-size: 14px;
  color: var(--hu-morandy-text-light);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .hu-header-inner {
    padding: 12px 0;
  }
  
  .hu-site-title {
    font-size: 20px;
  }
  
  .hu-search-area {
    margin: 0 10px;
  }
  
  .hu-nav-list {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .hu-header-inner {
    flex-wrap: wrap;
  }
  
  .hu-search-area {
    order: 3;
    max-width: 100%;
    width: 100%;
    margin: 10px 0 0;
  }
  
  .hu-nav-wrapper {
    display: none;
  }
  
  .hu-menu-toggle {
    display: flex;
  }
  
  .hu-mobile-nav {
    display: block;
  }
  
  .hu-tags-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 动画类 */
.hu-show-panel .hu-category-overlay {
  opacity: 1;
  visibility: visible;
}

.hu-show-panel .hu-category-panel {
  left: 0;
}

.hu-show-mobile-menu .hu-menu-toggle span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.hu-show-mobile-menu .hu-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.hu-show-mobile-menu .hu-menu-toggle span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

/* 视频列表页面样式 */
.hu-content {
  padding: 30px 0;
}

/* 分类标题和筛选区域 */
.hu-section-header {
  margin-bottom: 24px;
  position: relative;
}

.hu-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--hu-morandy-border);
}

.hu-section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--hu-morandy-primary);
  margin: 0;
  position: relative;
  padding-left: 14px;
}

.hu-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background-color: var(--hu-morandy-primary);
  border-radius: 2px;
}

.hu-category-stats {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--hu-morandy-text-light);
}

.hu-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hu-stat-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: var(--hu-morandy-border);
  margin: 0 12px;
}

.hu-highlight-text {
  color: var(--hu-morandy-accent);
  font-weight: 500;
}

/* 筛选区域 */
.hu-filter-wrapper {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--hu-morandy-bg);
  border-radius: 8px;
  padding: 14px 20px;
}

.hu-filter-sticky {
  position: relative;
}

.hu-filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hu-filter-group:last-child {
  margin-bottom: 0;
}

.hu-filter-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--hu-morandy-text);
  margin-right: 15px;
  white-space: nowrap;
}

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

.hu-filter-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--hu-morandy-text);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}

.hu-filter-link:hover {
  color: var(--hu-morandy-primary);
  background-color: rgba(139, 157, 131, 0.08);
}

.hu-filter-link.hu-active {
  color: var(--hu-morandy-primary);
  background-color: var(--hu-morandy-filter-active);
  font-weight: 500;
}

.hu-advanced-filters {
  border-top: 1px dashed var(--hu-morandy-border);
  padding-top: 12px;
  margin-top: 5px;
}

/* 视图切换按钮 */
.hu-toggle-view {
  position: absolute;
  right: 20px;
  top: 14px;
  display: flex;
  gap: 8px;
}

.hu-view-btn {
  width: 34px;
  height: 34px;
  border: none;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hu-morandy-text-light);
  transition: all 0.2s;
}

.hu-view-btn:hover {
  background-color: rgba(139, 157, 131, 0.1);
  color: var(--hu-morandy-primary);
}

.hu-view-btn.hu-active {
  background-color: var(--hu-morandy-primary);
  color: white;
}

.hu-grid-view::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.hu-list-view::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'/%3E%3Cline x1='8' y1='12' x2='21' y2='12'/%3E%3Cline x1='8' y1='18' x2='21' y2='18'/%3E%3Cline x1='3' y1='6' x2='3.01' y2='6'/%3E%3Cline x1='3' y1='12' x2='3.01' y2='12'/%3E%3Cline x1='3' y1='18' x2='3.01' y2='18'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 当前筛选条件 */
.hu-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hu-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--hu-morandy-primary);
  background-color: var(--hu-morandy-tag-bg);
  padding: 6px 12px;
  border-radius: 4px;
}

.hu-remove-filter {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* 视频网格布局 */
.hu-video-list-wrapper {
  position: relative;
}

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

/* 视频卡片样式 */
.hu-video-card {
  position: relative;
  background-color: var(--hu-morandy-card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--hu-morandy-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hu-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hu-video-link {
  display: block;
  position: relative;
}

.hu-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  height: 280px;
}

.hu-video-img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.4s;
  position: absolute;
  top: 0;
  left: 0;
}

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

/* 视频缩略图覆盖层 */
.hu-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  opacity: 0.8;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hu-video-card:hover .hu-thumb-overlay {
  background-color: var(--hu-morandy-hover-overlay);
  opacity: 1;
}

/* 播放按钮 */
.hu-play-button {
  width: 50px;
  height: 50px;
  background-color: var(--hu-morandy-play-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hu-play-icon-svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.hu-video-card:hover .hu-play-button {
  transform: scale(1);
  opacity: 1;
}

/* 视频信息悬停显示 */
.hu-video-info-hover {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
}

.hu-video-card:hover .hu-video-info-hover {
  opacity: 1;
  transform: translateX(0);
}

.hu-video-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.hu-star-icon {
  width: 14px;
  height: 14px;
  fill: var(--hu-morandy-rating-star);
}

.hu-video-quality {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
  font-size: 12px;
}

/* 视频时长 */
.hu-video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
}

/* 角标 */
.hu-corner-ribbon {
  position: absolute;
  top: 10px;
  left: 0;
  background-color: var(--hu-morandy-category-ribbon);
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* 视频信息区域 */
.hu-video-info {
  padding: 12px;
}

.hu-video-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--hu-morandy-text);
  margin: 0 0 8px;
  line-height: 1.3;
}

.hu-video-meta {
  font-size: 12px;
  color: var(--hu-morandy-text-light);
}

.hu-meta-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.hu-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hu-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hu-video-tag {
  background-color: var(--hu-morandy-tag-bg);
  color: var(--hu-morandy-primary);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
}

/* 列表视图样式 */
.hu-list-mode .hu-video-grid {
  display: block;
}

.hu-list-mode .hu-video-card {
  margin-bottom: 15px;
}

.hu-list-mode .hu-video-link {
  display: flex;
  align-items: center;
}

.hu-list-mode .hu-video-thumb {
  width: 160px;
  flex-shrink: 0;
  aspect-ratio: 2 / 3;
  height: 240px;
}

.hu-list-mode .hu-video-info {
  flex: 1;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hu-list-mode .hu-video-title {
  height: auto;
  margin-bottom: 12px;
}

.hu-list-mode .hu-meta-row {
  margin-bottom: 10px;
}

/* 加载更多区域 */
.hu-load-more-container {
  text-align: center;
  margin-top: 30px;
}

.hu-pagination-container {
  margin-top: 30px;
  text-align: center;
}

/* 分页样式 */
.hu-pagination {
  display: inline-flex;
  background-color: var(--hu-morandy-bg);
  padding: 8px 12px;
  border-radius: 30px;
  box-shadow: 0 2px 8px var(--hu-morandy-shadow);
}

.hu-pagination-inner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hu-page-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--hu-morandy-text);
  transition: all 0.2s ease;
}

.hu-page-num:hover {
  background-color: rgba(139, 157, 131, 0.15);
  color: var(--hu-morandy-primary);
}

.hu-page-num.hu-current {
  background-color: var(--hu-morandy-primary);
  color: white;
  font-weight: 500;
}

.hu-page-btn {
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 36px;
  border-radius: 18px;
  font-size: 14px;
  color: var(--hu-morandy-text);
  transition: all 0.2s ease;
  gap: 6px;
}

.hu-page-btn:hover {
  background-color: rgba(139, 157, 131, 0.15);
  color: var(--hu-morandy-primary);
}

.hu-prev-btn i, .hu-next-btn i {
  width: 16px;
  height: 16px;
  position: relative;
}

.hu-icon-arrow-left::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  left: 4px;
  top: 3px;
}

.hu-icon-arrow-right::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  right: 4px;
  top: 3px;
}

.hu-page-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--hu-morandy-text-light);
  font-size: 14px;
}

.hu-page-btn.hu-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* 响应式分页 */
@media (max-width: 768px) {
  .hu-pagination {
    padding: 6px 10px;
    border-radius: 25px;
  }
  
  .hu-page-num {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  
  .hu-page-btn {
    height: 32px;
    padding: 0 10px;
    font-size: 13px;
  }
  
  .hu-page-btn span {
    display: none;
  }
  
  .hu-page-btn {
    width: 32px;
    justify-content: center;
  }
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .hu-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }
  
  .hu-toggle-view {
    display: none;
  }
  
  .hu-video-thumb {
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .hu-header-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .hu-section-title {
    font-size: 20px;
  }
  
  .hu-filter-wrapper {
    padding: 12px 15px;
  }
  
  .hu-filter-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .hu-filter-label {
    margin-bottom: 5px;
  }
  
  /* 手机端视频网格，一排两个，2:3比例 */
  .hu-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .hu-video-card {
    width: 100%;
    height: auto;
  }
  
  .hu-video-thumb {
    width: 100%;
    aspect-ratio: 2 / 3;
    height: auto;
  }
  
  .hu-list-mode .hu-video-link {
    flex-direction: column;
  }
  
  .hu-list-mode .hu-video-thumb {
    width: 100%;
    aspect-ratio: 2 / 3;
    height: auto;
  }
}

@media (max-width: 480px) {
  .hu-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .hu-video-card {
    width: 100%;
    height: auto;
  }
  
  .hu-video-thumb {
    width: 100%;
    aspect-ratio: 2 / 3;
    height: auto;
  }
  
  .hu-hero-slider {
    height: 250px;
  }
  
  .hu-btn-play {
    padding: 8px 15px;
    font-size: 13px;
  }
  
  .hu-btn-play svg {
    width: 16px;
    height: 16px;
  }
  
  .hu-section-title {
    font-size: 18px;
  }
  
  .hu-section-title svg {
    width: 20px;
    height: 20px;
  }
  
  .hu-title-desc {
    font-size: 13px;
  }
}

/* 色系底部样式 */
.hu-footer-section {
  background-color: #f8f6f1;
  padding: 60px 0 30px;
  position: relative;
  margin-top: 50px;
}

.hu-footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--hu-morandy-primary), var(--hu-morandy-accent), var(--hu-morandy-secondary));
  opacity: 0.8;
}

.hu-footer-wrapper {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(2, 1fr);
  gap: 40px;
}

.hu-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.hu-footer-logo-text {
  font-size: 26px;
  font-weight: 600;
  color: var(--hu-morandy-primary);
}

.hu-footer-about {
  color: var(--hu-morandy-text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 90%;
}

.hu-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.hu-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(139, 157, 131, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hu-morandy-primary);
  transition: all 0.3s ease;
}

.hu-social-btn svg {
  width: 18px;
  height: 18px;
}

.hu-social-btn:hover {
  background-color: var(--hu-morandy-primary);
  color: white;
  transform: translateY(-3px);
}

.hu-footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--hu-morandy-text);
  margin-bottom: 20px;
  position: relative;
  padding-left: 14px;
}

.hu-footer-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background-color: var(--hu-morandy-accent);
  border-radius: 2px;
}

.hu-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hu-nav-link {
  color: var(--hu-morandy-text-light);
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hu-nav-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.hu-nav-link:hover {
  color: var(--hu-morandy-primary);
  transform: translateX(3px);
}

.hu-nav-link:hover svg {
  opacity: 1;
}

.hu-friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hu-friend-link {
  font-size: 13px;
  color: var(--hu-morandy-text-light);
  background-color: rgba(182, 184, 166, 0.15);
  padding: 6px 12px;
  border-radius: 15px;
  transition: all 0.3s;
}

.hu-friend-link:hover {
  background-color: var(--hu-morandy-primary);
  color: white;
}

.hu-footer-divider {
  margin: 30px 0;
  height: 1px;
  background-color: var(--hu-morandy-border);
  opacity: 0.5;
}

.hu-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--hu-morandy-text-light);
}

.hu-copyright {
  opacity: 0.9;
}

.hu-footer-legal {
  display: flex;
  gap: 16px;
}

.hu-legal-link {
  color: var(--hu-morandy-text-light);
  transition: color 0.2s;
}

.hu-legal-link:hover {
  color: var(--hu-morandy-primary);
}

.hu-back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--hu-morandy-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hu-morandy-primary);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 100;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.hu-back-top.hu-visible {
  transform: translateY(0);
  opacity: 1;
}

.hu-back-top svg {
  width: 20px;
  height: 20px;
}

.hu-back-top:hover {
  background-color: var(--hu-morandy-primary);
  color: white;
  transform: translateY(-5px);
}

/* 订阅区域 */
.hu-subscribe-section {
  background-color: rgba(139, 157, 131, 0.1);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.hu-subscribe-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--hu-morandy-primary);
  margin-bottom: 10px;
}

.hu-subscribe-desc {
  color: var(--hu-morandy-text-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.hu-subscribe-form {
  display: flex;
  gap: 10px;
}

.hu-subscribe-input {
  flex: 1;
  height: 45px;
  border: 1px solid var(--hu-morandy-border);
  border-radius: 6px;
  padding: 0 15px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.8);
}

.hu-subscribe-input:focus {
  outline: none;
  border-color: var(--hu-morandy-primary);
  box-shadow: 0 0 0 2px rgba(139, 157, 131, 0.2);
}

.hu-subscribe-btn {
  height: 45px;
  background-color: var(--hu-morandy-primary);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.hu-subscribe-btn:hover {
  background-color: var(--hu-morandy-hover);
}

/* 响应式布局 */
@media (max-width: 1024px) {
  .hu-footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .hu-subscribe-section {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hu-footer-section {
    padding: 40px 0 20px;
  }
  
  .hu-footer-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hu-subscribe-section {
    grid-column: span 1;
  }
  
  .hu-subscribe-form {
    flex-direction: column;
  }
  
  .hu-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .hu-footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* 视频详情页样式 */
.hu-detail-container {
  padding: 40px 0;
}

/* 详情页头部区域 */
.hu-detail-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  background-color: var(--hu-morandy-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px var(--hu-morandy-shadow);
  position: relative;
  overflow: hidden;
}

.hu-detail-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--hu-morandy-primary), var(--hu-morandy-accent), var(--hu-morandy-secondary));
  opacity: 0.7;
}

/* 海报区域 */
.hu-poster-area {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hu-poster-container {
  position: relative;
  aspect-ratio: 2/3;
  width: 100%;
}

.hu-poster-img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.5s ease;
  border-radius: 8px;
  overflow: hidden;
}

.hu-poster-area:hover .hu-poster-img {
  transform: scale(1.03);
}

.hu-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: background-color 0.3s;
}

.hu-poster-area:hover .hu-poster-overlay {
  background-color: var(--hu-morandy-hover-overlay);
}

.hu-play-btn-large {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  transform: scale(0.9);
  opacity: 0.9;
}

.hu-poster-area:hover .hu-play-btn-large {
  transform: scale(1);
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}

.hu-play-icon-large {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 4px;
}

.hu-quality-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--hu-morandy-accent);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}

/* 视频信息区域 */
.hu-detail-info {
  display: flex;
  flex-direction: column;
}

.hu-detail-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--hu-morandy-text);
  margin: 0 0 15px;
  line-height: 1.3;
}

.hu-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.hu-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--hu-morandy-text-light);
}

.hu-meta-badge svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.hu-meta-divider {
  width: 4px;
  height: 4px;
  background-color: var(--hu-morandy-border);
  border-radius: 50%;
}

.hu-category-badge {
  display: inline-flex;
  padding: 3px 10px;
  background-color: rgba(139, 157, 131, 0.15);
  color: var(--hu-morandy-primary);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.hu-category-badge:hover {
  background-color: var(--hu-morandy-primary);
  color: white;
}

/* 标签区域 */
.hu-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hu-detail-tag {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--hu-morandy-tag-bg);
  color: var(--hu-morandy-text);
  border-radius: 15px;
  font-size: 12px;
  transition: all 0.2s;
}

.hu-detail-tag:hover {
  background-color: var(--hu-morandy-primary);
  color: white;
}

/* 人员信息区域 */
.hu-detail-crew {
  margin-bottom: 20px;
}

.hu-crew-item {
  display: flex;
  margin-bottom: 10px;
}

.hu-crew-label {
  width: 60px;
  font-size: 14px;
  color: var(--hu-morandy-text-light);
  flex-shrink: 0;
}

.hu-crew-content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hu-crew-name {
  display: inline-block;
  font-size: 14px;
  color: var(--hu-morandy-text);
  transition: color 0.2s;
}

.hu-crew-name:hover {
  color: var(--hu-morandy-primary);
}

/* 简介区域 */
.hu-detail-desc {
  margin-top: auto;
  position: relative;
}

.hu-desc-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hu-morandy-text-light);
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.hu-desc-content.hu-expanded {
  max-height: 500px;
}

.hu-desc-toggle {
  position: absolute;
  bottom: -20px;
  right: 0;
  font-size: 13px;
  color: var(--hu-morandy-primary);
  background-color: var(--hu-morandy-bg);
  padding: 2px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  transition: all 0.2s;
}

.hu-desc-toggle:hover {
  color: var(--hu-morandy-hover);
}

.hu-desc-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.hu-desc-toggle.hu-expanded svg {
  transform: rotate(180deg);
}

/* 操作按钮区域 */
.hu-detail-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.hu-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border-radius: 21px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.hu-play-action {
  background-color: var(--hu-morandy-primary);
  color: white;
  flex: 1;
  max-width: 180px;
}

.hu-play-action:hover {
  background-color: var(--hu-morandy-hover);
  transform: translateY(-2px);
}

.hu-action-secondary {
  background-color: rgba(139, 157, 131, 0.12);
  color: var(--hu-morandy-primary);
}

.hu-action-secondary:hover {
  background-color: rgba(139, 157, 131, 0.25);
  transform: translateY(-2px);
}

.hu-action-btn svg {
  width: 16px;
  height: 16px;
}

/* 选集区域 */
.hu-episodes-block {
  background-color: var(--hu-morandy-bg);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
  box-shadow: 0 3px 10px var(--hu-morandy-shadow);
}

.hu-block-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--hu-morandy-text);
  margin: 0 0 20px;
  padding-left: 15px;
  position: relative;
  display: flex;
  align-items: center;
}

.hu-block-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 18px;
  background-color: var(--hu-morandy-primary);
  border-radius: 3px;
}

/* 播放源切换 */
.hu-source-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--hu-morandy-border);
  margin-bottom: 20px;
  padding-bottom: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.hu-source-tab {
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  color: var(--hu-morandy-text);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.hu-source-tab:hover {
  background-color: rgba(139, 157, 131, 0.1);
  color: var(--hu-morandy-primary);
}

.hu-source-tab.hu-active {
  background-color: rgba(139, 157, 131, 0.15);
  color: var(--hu-morandy-primary);
  font-weight: 500;
}

/* 选集列表 */
.hu-episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}

.hu-episode-btn {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--hu-morandy-border);
  border-radius: 5px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hu-morandy-text);
  font-size: 13px;
  transition: all 0.2s;
  text-align: center;
  padding: 0 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hu-episode-btn:hover {
  background-color: rgba(139, 157, 131, 0.15);
  color: var(--hu-morandy-primary);
  transform: translateY(-2px);
  border-color: var(--hu-morandy-primary);
}

.hu-episode-btn.hu-active {
  background-color: var(--hu-morandy-primary);
  color: white;
  border-color: var(--hu-morandy-primary);
}

/* 相关推荐区域 */
.hu-related-block {
  margin-bottom: 40px;
}

.hu-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .hu-detail-header {
    grid-template-columns: 240px 1fr;
    padding: 20px;
  }
  
  .hu-detail-title {
    font-size: 22px;
  }
  
  .hu-related-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .hu-detail-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hu-poster-container {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .hu-detail-title {
    font-size: 20px;
  }
  
  .hu-detail-meta {
    gap: 10px;
  }
  
  .hu-episodes-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
  
  .hu-related-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
}



/* 播放器区域 */
.hu-player-wrapper {
  background-color: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
}

.hu-player-area {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* 16:9比例 */
  max-height: 70vh; /* 限制最大高度为视口高度的70% */
  overflow: hidden;
}

.hu-player-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* 视频信息区域 */
.hu-play-info-bar {
  background-color: var(--hu-morandy-bg);
  padding: 15px 20px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.hu-playing-info {
  display: flex;
  flex-direction: column;
}

.hu-playing-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--hu-morandy-text);
  margin-bottom: 5px;
}

.hu-playing-episode {
  font-size: 14px;
  color: var(--hu-morandy-primary);
}

.hu-play-actions {
  display: flex;
  gap: 12px;
}

.hu-play-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--hu-morandy-text);
  background-color: rgba(139, 157, 131, 0.12);
  transition: all 0.2s;
}

.hu-play-action-btn:hover {
  background-color: rgba(139, 157, 131, 0.25);
  transform: translateY(-2px);
}

.hu-play-action-btn svg {
  width: 16px;
  height: 16px;
}

/* 播放和选集区域 */
.hu-play-control-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

/* 播放器右侧信息 */
.hu-video-sidebar {
  position: relative;
}

.hu-video-details {
  background-color: var(--hu-morandy-bg);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.hu-detail-line {
  display: flex;
  margin-bottom: 12px;
  font-size: 14px;
}

.hu-detail-label {
  width: 60px;
  color: var(--hu-morandy-text-light);
  flex-shrink: 0;
}

.hu-detail-value {
  color: var(--hu-morandy-text);
  flex: 1;
}

.hu-detail-link {
  color: var(--hu-morandy-text);
  transition: color 0.2s;
}

.hu-detail-link:hover {
  color: var(--hu-morandy-primary);
}

.hu-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hu-detail-tag {
  padding: 4px 10px;
  background-color: rgba(139, 157, 131, 0.12);
  color: var(--hu-morandy-primary);
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.2s;
}

.hu-detail-tag:hover {
  background-color: var(--hu-morandy-primary);
  color: white;
}

/* 选集区域 */
.hu-episodes-section {
  background-color: var(--hu-morandy-bg);
  border-radius: 12px;
  padding: 20px;
}

.hu-section-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--hu-morandy-text);
  margin: 0 0 15px;
  padding-left: 12px;
  position: relative;
  display: flex;
  align-items: center;
}

.hu-section-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background-color: var(--hu-morandy-primary);
  border-radius: 2px;
}

/* 播放源切换 */
.hu-source-strip {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--hu-morandy-border);
  margin-bottom: 15px;
  padding-bottom: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.hu-source-btn {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--hu-morandy-text);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.hu-source-btn:hover {
  background-color: rgba(139, 157, 131, 0.1);
  color: var(--hu-morandy-primary);
}

.hu-source-btn.hu-active {
  background-color: rgba(139, 157, 131, 0.15);
  color: var(--hu-morandy-primary);
  font-weight: 500;
}

/* 剧集列表 */
.hu-episodes-wrap {
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--hu-morandy-border) transparent;
}

.hu-episodes-wrap::-webkit-scrollbar {
  width: 5px;
}

.hu-episodes-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.hu-episodes-wrap::-webkit-scrollbar-thumb {
  background-color: var(--hu-morandy-border);
  border-radius: 10px;
}

.hu-episodes-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}

.hu-episode-link {
  height: 36px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--hu-morandy-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
  border: 1px solid var(--hu-morandy-border);
}

.hu-episode-link:hover {
  background-color: rgba(139, 157, 131, 0.15);
  color: var(--hu-morandy-primary);
  border-color: var(--hu-morandy-primary);
  transform: translateY(-2px);
}

.hu-episode-link.hu-active {
  background-color: var(--hu-morandy-primary);
  color: white;
  border-color: var(--hu-morandy-primary);
}

/* 相关推荐区域 */
.hu-similar-section {
  margin-bottom: 40px;
}

.hu-similar-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--hu-morandy-text);
  margin-bottom: 20px;
  padding-left: 15px;
  position: relative;
}

.hu-similar-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 18px;
  background-color: var(--hu-morandy-primary);
  border-radius: 3px;
}

.hu-similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .hu-play-control-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hu-similar-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }
  
  .hu-player-area {
    padding-top: 56.25%; /* 保持16:9比例 */
    max-height: 65vh;
  }
}

@media (max-width: 768px) {
  .hu-play-info-bar {
    padding: 12px 15px;
  }
  
  .hu-playing-title {
    font-size: 16px;
  }
  
  .hu-play-action-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .hu-episodes-list {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 8px;
  }
  
  .hu-similar-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
  
  .hu-player-area {
    padding-top: 56.25%;
    max-height: 55vh;
  }
}

@media (max-width: 480px) {
  .hu-player-area {
    padding-top: 56.25%;
    max-height: 50vh;
  }
}

/* 搜索页面样式 */
.hu-search-page {
  padding: 40px 0;
  background-color: #f8f7f4;
}

/* 搜索头部区域 */
.hu-search-header {
  background-color: var(--hu-morandy-bg);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px var(--hu-morandy-shadow);
}

.hu-search-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.hu-search-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hu-search-icon {
  width: 32px;
  height: 32px;
  color: var(--hu-morandy-primary);
}

.hu-search-text {
  color: var(--hu-morandy-text);
}

.hu-search-keyword-text {
  font-size: 16px;
  margin-bottom: 5px;
}

.hu-search-count {
  font-size: 14px;
  color: var(--hu-morandy-text-light);
}

.hu-search-highlight {
  color: var(--hu-morandy-primary);
  font-weight: 600;
}

.hu-search-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* 筛选按钮 */
.hu-refine-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--hu-morandy-primary);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.hu-refine-btn svg {
  width: 16px;
  height: 16px;
}

.hu-refine-btn:hover {
  background-color: var(--hu-morandy-hover);
  transform: translateY(-2px);
}

/* 搜索历史 */
.hu-search-history {
  border-top: 1px dashed var(--hu-morandy-border);
  padding-top: 15px;
}

.hu-history-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--hu-morandy-text);
}

.hu-history-header svg {
  width: 16px;
  height: 16px;
  color: var(--hu-morandy-text-light);
}

.hu-clear-history {
  margin-left: auto;
  background-color: transparent;
  border: none;
  color: var(--hu-morandy-text-light);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}

.hu-clear-history:hover {
  color: var(--hu-morandy-accent);
}

.hu-history-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hu-history-tag {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(139, 157, 131, 0.12);
  color: var(--hu-morandy-text);
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.2s;
}

.hu-history-tag:hover {
  background-color: var(--hu-morandy-primary);
  color: white;
  transform: translateY(-2px);
}

.hu-empty-history {
  font-size: 13px;
  color: var(--hu-morandy-text-light);
  font-style: italic;
}

/* 筛选面板 */
.hu-refine-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 299;
  display: none;
}

/* 筛选面板 */
.hu-refine-panel {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100%;
  background-color: white;
  z-index: 300;
  box-shadow: -3px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.hu-refine-panel.hu-refine-show {
  right: 0;
}

.hu-refine-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--hu-morandy-border);
}

.hu-refine-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--hu-morandy-primary);
  margin: 0;
}

.hu-refine-close {
  background-color: transparent;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.hu-refine-close svg {
  width: 18px;
  height: 18px;
  color: var(--hu-morandy-text-light);
}

.hu-refine-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.hu-refine-body {
  padding: 20px;
}

.hu-refine-group {
  margin-bottom: 25px;
}

.hu-refine-group:last-child {
  margin-bottom: 0;
}

.hu-refine-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--hu-morandy-text);
  margin-bottom: 12px;
}

.hu-refine-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hu-refine-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--hu-morandy-text);
  transition: all 0.2s;
}

.hu-refine-option svg {
  width: 18px;
  height: 18px;
  color: var(--hu-morandy-text-light);
}

.hu-refine-option:hover {
  background-color: rgba(139, 157, 131, 0.1);
}

.hu-refine-option.hu-active {
  background-color: rgba(139, 157, 131, 0.15);
  color: var(--hu-morandy-primary);
  font-weight: 500;
}

.hu-refine-option.hu-active svg {
  color: var(--hu-morandy-primary);
}

/* 搜索结果区域 */
.hu-search-results {
  margin-bottom: 40px;
}

.hu-results-status {
  margin-bottom: 20px;
}

.hu-current-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--hu-morandy-tag-bg);
  border-radius: 20px;
  color: var(--hu-morandy-primary);
  font-size: 14px;
}

.hu-current-sort svg {
  width: 16px;
  height: 16px;
}

/* 没有结果提示 */
.hu-no-results {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--hu-morandy-bg);
  border-radius: 12px;
  margin-bottom: 30px;
}

.hu-no-results svg {
  width: 60px;
  height: 60px;
  color: var(--hu-morandy-accent);
  margin-bottom: 20px;
  opacity: 0.8;
}

.hu-no-results h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--hu-morandy-text);
  margin-bottom: 10px;
}

.hu-no-results p {
  font-size: 15px;
  color: var(--hu-morandy-text-light);
  margin-bottom: 25px;
}

.hu-back-home {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--hu-morandy-primary);
  color: white;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.hu-back-home:hover {
  background-color: var(--hu-morandy-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 分页容器 */
.hu-pagination-container {
  margin-top: 30px;
  text-align: center;
}

/* 相关推荐区域 */
.hu-related-searches {
  margin-top: 60px;
  margin-bottom: 30px;
}

.hu-related-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--hu-morandy-text);
  margin-bottom: 20px;
  padding-left: 15px;
  position: relative;
}

.hu-related-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background-color: var(--hu-morandy-accent);
  border-radius: 2px;
}

.hu-related-title svg {
  width: 20px;
  height: 20px;
  color: var(--hu-morandy-accent);
}

.hu-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .hu-search-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hu-search-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .hu-related-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .hu-search-page {
    padding: 20px 0;
  }
  
  .hu-search-header {
    padding: 15px;
  }
  
  .hu-search-info {
    width: 100%;
  }
  
  .hu-search-icon {
    width: 24px;
    height: 24px;
  }
  
  .hu-history-tags {
    gap: 8px;
  }
  
  .hu-related-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .hu-refine-panel {
    width: 280px;
  }
}

/* 筛选面板遮罩层 */
.hu-refine-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 290;
  display: none;
}

/* 首页样式 */
.hu-home-container {
  padding-bottom: 40px;
}

/* 焦点轮播区域 */
.hu-hero-section {
  margin: 30px 0 40px;
}

.hu-hero-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--hu-morandy-shadow);
}

.hu-hero-slider {
  position: relative;
  overflow: hidden;
  height: 460px;
}

.hu-slide-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.hu-slide-item.hu-active {
  opacity: 1;
  z-index: 2;
}

.hu-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.hu-slide-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.hu-slide-img .hu-video-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hu-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hu-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hu-slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 2;
  color: white;
}

.hu-slide-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hu-slide-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.hu-slide-category {
  padding: 4px 12px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

.hu-slide-dot {
  width: 4px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.hu-slide-desc {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hu-btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--hu-morandy-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}

.hu-btn-play svg {
  width: 20px;
  height: 20px;
}

.hu-btn-play:hover {
  background-color: var(--hu-morandy-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hu-slider-controls {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hu-slider-prev,
.hu-slider-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.2s;
}

.hu-slider-prev svg,
.hu-slider-next svg {
  width: 18px;
  height: 18px;
}

.hu-slider-prev:hover,
.hu-slider-next:hover {
  background-color: var(--hu-morandy-primary);
  transform: translateY(-2px);
}

.hu-slider-dots {
  display: flex;
  gap: 8px;
}

.hu-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.hu-slider-dot.hu-active {
  background-color: white;
  transform: scale(1.2);
}

/* 精选类别导航 */
.hu-featured-nav {
  margin-bottom: 50px;
}

.hu-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hu-featured-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--hu-morandy-bg);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.hu-featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--hu-morandy-shadow);
  border-color: var(--hu-morandy-border);
}

.hu-featured-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(139, 157, 131, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hu-morandy-primary);
  flex-shrink: 0;
  transition: all 0.3s;
}

.hu-featured-item:hover .hu-featured-icon {
  background-color: var(--hu-morandy-primary);
  color: white;
}

.hu-featured-icon svg {
  width: 24px;
  height: 24px;
}

.hu-featured-info {
  flex: 1;
}

.hu-featured-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--hu-morandy-text);
  margin: 0 0 5px;
}

.hu-featured-count {
  font-size: 13px;
  color: var(--hu-morandy-text-light);
  margin: 0;
}

/* 通用内容区块样式 */
.hu-section {
  margin-bottom: 60px;
}

.hu-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.hu-title-wrapper {
  display: flex;
  flex-direction: column;
}

.hu-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: var(--hu-morandy-text);
  margin: 0 0 5px;
}

.hu-section-title svg {
  width: 24px;
  height: 24px;
  color: var(--hu-morandy-primary);
}

.hu-title-desc {
  font-size: 14px;
  color: var(--hu-morandy-text-light);
  margin: 0;
}

.hu-highlight-num {
  color: var(--hu-morandy-accent);
  font-weight: 600;
}

.hu-more-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--hu-morandy-primary);
  transition: all 0.2s;
}

.hu-more-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.hu-more-link:hover {
  color: var(--hu-morandy-hover);
}

.hu-more-link:hover svg {
  transform: translateX(3px);
}

/* 今日更新区域 */
.hu-today-section {
  background-color: rgba(139, 157, 131, 0.05);
  padding: 40px 0;
  margin: 0 0 60px;
  position: relative;
}

/* 热门排行区域 */
.hu-popular-section {
  margin-bottom: 60px;
}

.hu-popular-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 25px;
  min-height: 500px;
}

.hu-popular-main {
  position: relative;
  display: flex;
}

.hu-popular-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
  flex: 1;
}

.hu-popular-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--hu-morandy-shadow);
  height: calc(100% - 20px);
  min-height: 200px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hu-popular-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hu-popular-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.hu-popular-img .hu-video-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hu-popular-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hu-popular-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hu-rank-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 32px;
  height: 32px;
  background-color: var(--hu-morandy-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.hu-popular-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: white;
}

.hu-popular-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.hu-popular-meta {
  display: flex;
  gap: 15px;
}

.hu-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.hu-meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.9;
}

.hu-popular-desc {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 排行榜标签页 */
.hu-popular-list {
  background-color: var(--hu-morandy-bg);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hu-tabs-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hu-tabs-nav {
  display: flex;
  background-color: rgba(139, 157, 131, 0.1);
}

.hu-tab-btn {
  flex: 1;
  padding: 15px;
  text-align: center;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--hu-morandy-text);
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
}

.hu-tab-btn.hu-active {
  color: var(--hu-morandy-primary);
  border-bottom-color: var(--hu-morandy-primary);
  background-color: rgba(139, 157, 131, 0.05);
}

.hu-tab-btn:hover:not(.hu-active) {
  background-color: rgba(139, 157, 131, 0.05);
}

.hu-tabs-content {
  flex: 1;
  overflow: hidden;
  display: flex;
}

.hu-tab-pane {
  display: none;
  padding: 15px;
  height: 100%;
  width: 100%;
  overflow-y: auto;
}

.hu-tab-pane.hu-active {
  display: block;
  flex: 1;
}

.hu-rank-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.2s;
  margin-bottom: 10px;
}

.hu-rank-item:last-child {
  margin-bottom: 0;
}

.hu-rank-item:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.hu-rank-num {
  width: 24px;
  height: 24px;
  background-color: var(--hu-morandy-text-light);
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.hu-rank-item:nth-child(1) .hu-rank-num,
.hu-rank-item:nth-child(2) .hu-rank-num,
.hu-rank-item:nth-child(3) .hu-rank-num {
  background-color: var(--hu-morandy-accent);
}

.hu-rank-thumb {
  width: 50px;
  height: 75px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.hu-rank-thumb .hu-video-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

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

.hu-rank-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--hu-morandy-text);
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hu-rank-meta {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--hu-morandy-text-light);
  gap: 8px;
}

.hu-rank-dot {
  width: 3px;
  height: 3px;
  background-color: var(--hu-morandy-border);
  border-radius: 50%;
}

/* 分类视频展示区域 */
.hu-category-section {
  margin-bottom: 50px;
}

.hu-cat-filter {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.hu-cat-link {
  font-size: 14px;
  color: var(--hu-morandy-text-light);
  transition: all 0.2s;
}

.hu-cat-link:hover {
  color: var(--hu-morandy-primary);
  transform: translateX(3px);
}

.hu-cat-1 {
  color: #8b9d83; /* 电影类别色 */
}

.hu-cat-2 {
  color: #aa8e79; /* 电视剧类别色 */
}

.hu-cat-3 {
  color: #a0a28e; /* 综艺类别色 */
}

.hu-cat-4 {
  color: #c5af9c; /* 动漫类别色 */
}

/* 推荐视频区域 */
.hu-recommend-section {
  background-color: rgba(139, 157, 131, 0.05);
  padding: 40px 0;
  margin-bottom: 0;
}

.hu-pagination-container {
  margin-top: 30px;
  text-align: center;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .hu-hero-slider {
    height: 400px;
  }
  
  .hu-slide-title {
    font-size: 24px;
  }
  
  .hu-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hu-popular-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hu-popular-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .hu-popular-card {
    height: 200px;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .hu-hero-slider {
    height: 320px;
  }
  
  .hu-slide-info {
    padding: 20px;
  }
  
  .hu-slide-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .hu-slide-meta {
    margin-bottom: 10px;
  }
  
  .hu-slide-desc {
    display: none;
  }
  
  .hu-slider-controls {
    bottom: 15px;
    right: 15px;
  }
  
  .hu-featured-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .hu-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .hu-more-link {
    margin-left: auto;
  }
  
  .hu-popular-title {
    font-size: 18px;
  }
  
  .hu-popular-feature {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hu-hero-slider {
    height: 250px;
  }
  
  .hu-btn-play {
    padding: 8px 15px;
    font-size: 13px;
  }
  
  .hu-btn-play svg {
    width: 16px;
    height: 16px;
  }
  
  .hu-section-title {
    font-size: 18px;
  }
  
  .hu-section-title svg {
    width: 20px;
    height: 20px;
  }
  
  .hu-title-desc {
    font-size: 13px;
  }
  
  /* 保持视频网格为两列，确保2:3比例 */
  .hu-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .hu-video-thumb {
    width: 100%;
    aspect-ratio: 2 / 3;
    height: auto;
  }
}

@media (max-width: 768px) {
  .hu-popular-list {
    margin-top: 20px;
  }
}
