/* 蒸汽波复古未来风格 - mb019模板顶部UI */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&display=swap');

:root {
  --pwaj-primary: #71514c;
  --pwaj-secondary: #ce8a41;
  --pwaj-accent: #94a38c;
  --pwaj-bg-dark: #b61933;
  --pwaj-bg-darker: #060610;
  --pwaj-bg-light: #1a1a2e;
  --pwaj-text: #ffffff;
  --pwaj-text-secondary: rgba(255, 255, 255, 0.7);
  --pwaj-border: rgba(255, 255, 255, 0.1);
  --pwaj-glow: 0 0 10px rgba(255, 0, 255, 0.5);
  --pwaj-gradient: linear-gradient(135deg, var(--pwaj-primary), var(--pwaj-secondary));
  --pwaj-grid-bg: radial-gradient(circle, rgba(255, 0, 255, 0.1) 1px, transparent 1px);
}

/* 全局样式 */
body {
  font-family: 'Orbitron', sans-serif;
  background-color: var(--pwaj-bg-dark);
  color: var(--pwaj-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* 头部包装器 */
.pwaj-header-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  background-color: var(--pwaj-bg-darker);
  background-image: var(--pwaj-grid-bg);
  background-size: 30px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

/* 侧边栏 */
.pwaj-sidebar {
  width: 250px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: var(--pwaj-bg-darker);
  border-right: 1px solid var(--pwaj-border);
  transition: all 0.3s ease;
  z-index: 1000;
}

.pwaj-sidebar-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  overflow-y: auto;
}

/* Logo */
.pwaj-logo-container {
  padding: 0 20px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--pwaj-border);
}

.pwaj-logo {
  display: block;
  text-decoration: none;
}

.pwaj-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--pwaj-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--pwaj-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--pwaj-glow);
}

/* 菜单 */
.pwaj-menu-container {
  flex: 1;
  overflow-y: auto;
}

.pwaj-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pwaj-divider {
  height: 1px;
  background: var(--pwaj-border);
  margin: 10px 20px;
}

.pwaj-menu-item {
  position: relative;
  margin: 5px 0;
}

.pwaj-menu-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--pwaj-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pwaj-menu-link:hover {
  color: var(--pwaj-text);
  background: rgba(255, 255, 255, 0.05);
}

.pwaj-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.pwaj-menu-label {
  font-size: 14px;
  font-weight: 500;
}

.pwaj-menu-active .pwaj-menu-link {
  color: var(--pwaj-primary);
  background: rgba(255, 0, 255, 0.1);
}

.pwaj-menu-active .pwaj-menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--pwaj-gradient);
  box-shadow: var(--pwaj-glow);
}

.pwaj-badge {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--pwaj-accent);
  color: var(--pwaj-text);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
}

/* 主容器 */
.pwaj-main-container {
  flex: 1;
  margin-left: 250px;
  min-height: auto;
  transition: all 0.3s ease;
}

/* 顶部栏 */
.pwaj-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
  background: rgba(12, 12, 22, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pwaj-border);
  position: sticky;
  top: 0;
  z-index: 99;
}

.pwaj-topbar-left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0; /* 允许子元素缩小 */
}

.pwaj-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 15px;
  color: var(--pwaj-text);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0; /* 不允许缩小 */
}

.pwaj-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* 搜索栏 */
.pwaj-search-container {
  position: relative;
  width: 400px;
  max-width: 100%;
  min-width: 0; /* 允许搜索栏缩小 */
}

.pwaj-search-bar {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.pwaj-search-input {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--pwaj-border);
  border-radius: 20px;
  padding: 0 45px 0 15px;
  color: var(--pwaj-text);
  font-family: 'Orbitron', sans-serif;
  transition: all 0.3s ease;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.pwaj-search-input:focus {
  outline: none;
  border-color: var(--pwaj-primary);
  box-shadow: var(--pwaj-glow);
}

.pwaj-search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pwaj-primary);
  border: none;
  border-radius: 50%;
  color: var(--pwaj-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pwaj-search-btn:hover {
  background: var(--pwaj-secondary);
}

.pwaj-search-dropdown {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  background: var(--pwaj-bg-light);
  border: 1px solid var(--pwaj-border);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: none;
}

.pwaj-search-input:focus + .pwaj-search-btn + .pwaj-search-dropdown {
  display: block;
}

.pwaj-search-title {
  font-size: 14px;
  margin: 0 0 10px;
  color: var(--pwaj-text-secondary);
}

.pwaj-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pwaj-search-tag {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  color: var(--pwaj-text);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.pwaj-search-tag:hover {
  background: rgba(255, 0, 255, 0.2);
}

.pwaj-search-tag i {
  margin-right: 5px;
  font-size: 14px;
  color: var(--pwaj-primary);
}

/* 导航 */
.pwaj-topbar-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0; /* 允许子元素缩小 */
}

.pwaj-nav-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.pwaj-nav-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  width: 100%;
}

.pwaj-nav-scroll::-webkit-scrollbar {
  display: none;
}

.pwaj-nav {
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.pwaj-nav-item {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 15px;
  color: var(--pwaj-text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.pwaj-nav-item:hover {
  color: var(--pwaj-text);
}

.pwaj-nav-active {
  color: var(--pwaj-primary);
}

.pwaj-nav-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 3px;
  background: var(--pwaj-gradient);
  box-shadow: var(--pwaj-glow);
}

.pwaj-nav-arrows {
  display: flex;
  align-items: center;
}

.pwaj-nav-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--pwaj-text);
  cursor: pointer;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.pwaj-nav-arrow:hover {
  background: rgba(255, 0, 255, 0.2);
}

/* 主内容区域样式 */
.pwaj-main-content {
  margin-left: 250px;
  padding: 30px 0;
  background-color: var(--pwaj-bg-dark);
  background-image: var(--pwaj-grid-bg);
  background-size: 30px 30px;
  min-height: calc(100vh - 70px);
}

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

/* 修改原有的section样式 */
.section-box {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid var(--pwaj-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--pwaj-border);
  padding-bottom: 10px;
}

.section-header-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pwaj-text);
  position: relative;
  padding-left: 15px;
}

.section-header-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: var(--pwaj-gradient);
  border-radius: 2px;
}

.section-header-more {
  color: var(--pwaj-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-header-more:hover {
  color: var(--pwaj-primary);
  text-decoration: underline;
}

/* 修改模块样式 */
.module-box {
  position: relative;
}

.module-item {
  transition: all 0.3s ease;
}

.module-item:hover {
  transform: translateY(-5px);
}

.h-item, .v-item {
  background: rgba(12, 12, 22, 0.8);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--pwaj-border);
  transition: all 0.3s ease;
}

.h-item:hover, .v-item:hover {
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
  border-color: var(--pwaj-primary);
}

.h-item-cover, .v-item-cover {
  position: relative;
  overflow: hidden;
}

.h-item-cover::after, .v-item-cover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 0, 255, 0) 70%, rgba(255, 0, 255, 0.2) 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.h-item:hover .h-item-cover::after, .v-item:hover .v-item-cover::after {
  opacity: 1;
}

.h-item-title, .v-item-title {
  color: var(--pwaj-text);
  font-weight: 500;
}

/* 视频列表卡片 - 蒸汽波复古未来风格 */
.module-box-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.pwaj-video-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  perspective: 1000px;
}

.pwaj-video-card:hover {
  transform: translateY(-8px);
  z-index: 2;
}

.pwaj-video-link {
  display: block;
  text-decoration: none;
  color: var(--pwaj-text);
}

.pwaj-video-poster {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  aspect-ratio: 2/3;
}

.pwaj-video-poster::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2) 0%, rgba(0, 255, 255, 0.2) 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.pwaj-video-card:hover .pwaj-video-poster::before {
  opacity: 1;
}

.pwaj-video-poster-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pwaj-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.pwaj-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(6, 6, 16, 0.9) 0%, rgba(6, 6, 16, 0) 50%);
  z-index: 2;
}

.pwaj-video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  background: rgba(255, 0, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pwaj-text);
  opacity: 0;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pwaj-video-play-icon svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 5px rgba(255, 0, 255, 0.8));
}

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

.pwaj-video-status {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
}

.pwaj-video-badge {
  display: inline-block;
  padding: 4px 8px;
  background: linear-gradient(135deg, var(--pwaj-primary), var(--pwaj-secondary));
  color: var(--pwaj-text);
  font-size: 12px;
  border-radius: 4px;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  backdrop-filter: blur(5px);
}

.pwaj-video-score {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(6, 6, 16, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pwaj-primary);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  z-index: 3;
  backdrop-filter: blur(5px);
}

.pwaj-score-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--pwaj-secondary);
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.pwaj-video-info {
  padding: 12px 5px 5px;
}

.pwaj-video-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--pwaj-text);
  transition: color 0.3s ease;
}

.pwaj-video-card:hover .pwaj-video-title {
  color: var(--pwaj-primary);
  text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

.pwaj-video-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--pwaj-text-secondary);
}

.pwaj-video-year, .pwaj-video-area {
  position: relative;
}

.pwaj-video-area::before {
  content: '•';
  position: absolute;
  left: -6px;
}

/* 筛选器样式 */
.pwaj-filter-container {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 30px;
  border: 1px solid var(--pwaj-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.pwaj-filter-row {
  display: flex;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pwaj-border);
}

.pwaj-filter-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pwaj-filter-label {
  flex: 0 0 60px;
  font-weight: 600;
  color: var(--pwaj-text);
  padding-top: 6px;
}

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

.pwaj-filter-option {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  color: var(--pwaj-text-secondary);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pwaj-filter-option:hover {
  background: rgba(255, 0, 255, 0.1);
  color: var(--pwaj-text);
}

.pwaj-filter-active {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
  color: var(--pwaj-text);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

/* 分页样式 */
.pwaj-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  gap: 8px;
  flex-wrap: wrap;
}

.pwaj-page-info {
  font-size: 14px;
  color: var(--pwaj-text-secondary);
  margin-right: 10px;
  padding: 0 10px;
}

.pwaj-page-item {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid var(--pwaj-border);
  border-radius: 8px;
  color: var(--pwaj-text);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pwaj-page-item:hover {
  background: rgba(255, 0, 255, 0.1);
  border-color: var(--pwaj-primary);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.pwaj-page-current {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
  border-color: var(--pwaj-primary);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.pwaj-page-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pwaj-page-disabled:hover {
  background: rgba(26, 26, 46, 0.5);
  border-color: var(--pwaj-border);
  box-shadow: none;
}

.pwaj-page-goto {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.pwaj-page-input {
  width: 50px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--pwaj-border);
  border-radius: 8px 0 0 8px;
  padding: 0 10px;
  color: var(--pwaj-text);
  font-family: 'Orbitron', sans-serif;
  transition: all 0.3s ease;
}

.pwaj-page-input:focus {
  outline: none;
  border-color: var(--pwaj-primary);
  box-shadow: var(--pwaj-glow);
}

.pwaj-page-btn {
  height: 36px;
  padding: 0 10px;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
  border: 1px solid var(--pwaj-primary);
  border-radius: 0 8px 8px 0;
  color: var(--pwaj-text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
}

.pwaj-page-btn:hover {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.4), rgba(0, 255, 255, 0.4));
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.pwaj-empty-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: rgba(26, 26, 46, 0.5);
  border-radius: 10px;
  border: 1px solid var(--pwaj-border);
}

.pwaj-empty-icon {
  margin-bottom: 20px;
  color: var(--pwaj-text-secondary);
  opacity: 0.6;
}

.pwaj-empty-text {
  font-size: 18px;
  color: var(--pwaj-text-secondary);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .pwaj-pagination {
    flex-direction: column;
    align-items: center;
  }
  
  .pwaj-page-info {
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  .pwaj-page-goto {
    margin-top: 10px;
    margin-left: 0;
  }
}

/* 标签页样式 */
.pwaj-page-header {
  margin-bottom: 20px;
}

.pwaj-tabs {
  display: flex;
  background: rgba(26, 26, 46, 0.5);
  border-radius: 10px;
  padding: 5px;
  border: 1px solid var(--pwaj-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.pwaj-tab-item {
  flex: 1;
  padding: 12px 20px;
  text-align: center;
  color: var(--pwaj-text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pwaj-tab-item:hover {
  color: var(--pwaj-text);
  background: rgba(255, 255, 255, 0.05);
}

.pwaj-tab-active {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
  color: var(--pwaj-text);
}

.pwaj-tab-active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--pwaj-gradient);
  box-shadow: var(--pwaj-glow);
  animation: pwaj-tab-glow 1.5s ease-in-out infinite alternate;
}

@keyframes pwaj-tab-glow {
  from {
    box-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
  }
  to {
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.8), 0 0 15px rgba(0, 255, 255, 0.5);
  }
}

.pwaj-tab-text {
  font-weight: 500;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* 视频网格 */
.pwaj-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .pwaj-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .pwaj-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
  
  .pwaj-tab-item {
    padding: 10px 15px;
  }
  
  .pwaj-tab-text {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .pwaj-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
  
  .pwaj-tab-item {
    padding: 8px 10px;
  }
  
  .pwaj-tab-text {
    font-size: 12px;
  }
}

/* 响应式设计 */
@media (max-width: 992px) {
  .pwaj-sidebar {
    transform: translateX(-100%);
  }
  
  .pwaj-main-container {
    margin-left: 0;
    min-height: auto;
  }
  
  .pwaj-main-content {
    margin-left: 0;
  }
  
  .pwaj-menu-toggle {
    display: flex;
  }
  
  .pwaj-sidebar.pwaj-sidebar-open {
    transform: translateX(0);
  }
  
  .pwaj-search-container {
    width: 300px;
  }
  
  .pwaj-topbar {
    padding: 0 15px;
  }
  
  .module-box-inner {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .pwaj-search-container {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .pwaj-search-container {
    width: 200px;
  }
  
  .pwaj-nav-item {
    padding: 0 10px;
  }
  
  .pwaj-container {
    padding: 0 15px;
  }
  
  .module-box-inner {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
  
  .pwaj-filter-label {
    flex: 0 0 50px;
  }
  
  .pwaj-filter-option {
    padding: 4px 10px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .pwaj-topbar {
    height: auto;
    flex-direction: column;
    padding: 10px;
  }
  
  .pwaj-topbar-left {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .pwaj-search-container {
    width: 100%;
  }
  
  .pwaj-topbar-right {
    width: 100%;
  }
  
  .pwaj-nav-container {
    width: 100%;
  }
  
  .pwaj-nav-item {
    height: 50px;
  }
  
  .section-box {
    padding: 15px;
  }
  
  .module-box-inner {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
  
  .pwaj-video-title {
    font-size: 13px;
  }
  
  .pwaj-video-meta {
    font-size: 11px;
  }
  
  .pwaj-filter-row {
    flex-direction: column;
  }
  
  .pwaj-filter-label {
    margin-bottom: 8px;
  }
}

/* 底部UI - 蒸汽波复古未来风格 */
.pwaj-footer {
  position: relative;
  background: linear-gradient(180deg, #a15289 0%, #56b731 100%);
  color: #ffffff;
  padding: 3rem 1rem;
  margin-top: 4rem;
  border-top: 2px solid #ff00ff;
  box-shadow: 0 -5px 15px rgba(255, 0, 255, 0.3);
  overflow: hidden;
}

.pwaj-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  animation: pwaj-footer-glow 4s infinite;
}

@keyframes pwaj-footer-glow {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.pwaj-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pwaj-footer-section {
  padding: 1rem;
  position: relative;
}

.pwaj-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pwaj-footer-logo {
  margin-bottom: 1rem;
}

.pwaj-footer-logo-link {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pwaj-footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
  letter-spacing: 1px;
}

.pwaj-footer-desc {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #ccccff;
}

.pwaj-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.pwaj-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid #ff00ff;
}

.pwaj-social-icon svg {
  width: 20px;
  height: 20px;
}

.pwaj-social-icon:hover {
  background: rgba(255, 0, 255, 0.3);
  color: #00ffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.5);
}

.pwaj-footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pwaj-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
}

.pwaj-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pwaj-footer-link {
  color: #ccccff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1rem;
}

.pwaj-footer-link::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #ff00ff;
  transition: all 0.3s ease;
}

.pwaj-footer-link:hover {
  color: #00ffff;
  transform: translateX(5px);
}

.pwaj-footer-link:hover::before {
  color: #00ffff;
}

.pwaj-footer-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.7rem;
}

.pwaj-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.pwaj-footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 800px;
  margin: 0 auto;
}

.pwaj-footer-copyright p {
  margin-bottom: 0.5rem;
}

.pwaj-back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: rgba(26, 9, 51, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid #ff00ff;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.pwaj-back-top.visible {
  opacity: 1;
  visibility: visible;
}

.pwaj-back-top-inner {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.pwaj-back-top:hover {
  background: rgba(255, 0, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.5);
}

.pwaj-back-top:hover svg {
  color: #00ffff;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .pwaj-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .pwaj-footer {
    padding: 2rem 1rem;
  }
  
  .pwaj-footer-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 视频详情页 - 蒸汽波复古未来风格 */
.pwaj-detail-hero {
  position: relative;
  height: 500px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pwaj-detail-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.1);
}

.pwaj-detail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(230, 98, 103, 1) 0%, rgba(194, 178, 142, 1) 100%);
}

.pwaj-detail-container {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  padding: 40px;
  gap: 30px;
  align-items: center;
}

.pwaj-detail-poster {
  flex: 0 0 250px;
  height: 375px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.pwaj-detail-poster:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.7);
}

.pwaj-detail-poster::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 0, 255, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.pwaj-detail-poster::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 255, 255, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.pwaj-detail-poster-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.pwaj-detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pwaj-detail-score {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(6, 6, 16, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pwaj-primary);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  z-index: 2;
  backdrop-filter: blur(5px);
  animation: huDetailScoreGlow 1.5s ease-in-out infinite alternate;
}

@keyframes huDetailScoreGlow {
  0% {
    border-color: var(--pwaj-primary);
    box-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
  }
  100% {
    border-color: var(--pwaj-secondary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  }
}

.pwaj-detail-score-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--pwaj-secondary);
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.pwaj-detail-status {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.pwaj-detail-badge {
  display: inline-block;
  padding: 5px 10px;
  background: linear-gradient(135deg, var(--pwaj-primary), var(--pwaj-secondary));
  color: var(--pwaj-text);
  font-size: 12px;
  border-radius: 4px;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  backdrop-filter: blur(5px);
  animation: huDetailBadgeGlow 1.5s ease-in-out infinite alternate;
}

@keyframes huDetailBadgeGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.8), 0 0 15px rgba(0, 255, 255, 0.5);
  }
}

.pwaj-detail-info {
  flex: 1;
  color: var(--pwaj-text);
}

.pwaj-detail-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
  background: linear-gradient(to right, #ffffff, #ccccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

.pwaj-detail-meta {
  margin-bottom: 20px;
}

.pwaj-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.pwaj-detail-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: var(--pwaj-text);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pwaj-detail-tag:hover {
  background: rgba(255, 0, 255, 0.2);
  border-color: var(--pwaj-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.pwaj-detail-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.pwaj-detail-play-btn,
.pwaj-detail-fav-btn,
.pwaj-detail-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pwaj-detail-play-btn {
  background: linear-gradient(135deg, var(--pwaj-primary), var(--pwaj-secondary));
  color: var(--pwaj-text);
  border: none;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
  text-decoration: none;
}

.pwaj-detail-play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 0, 255, 0.7);
}

.pwaj-detail-fav-btn,
.pwaj-detail-share-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pwaj-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pwaj-detail-fav-btn:hover,
.pwaj-detail-share-btn:hover {
  background: rgba(255, 0, 255, 0.2);
  border-color: var(--pwaj-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.pwaj-detail-play-btn svg,
.pwaj-detail-fav-btn svg,
.pwaj-detail-share-btn svg {
  width: 18px;
  height: 18px;
}

.pwaj-detail-desc {
  color: var(--pwaj-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  max-height: 150px;
  overflow-y: auto;
  padding-right: 15px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.pwaj-detail-desc::-webkit-scrollbar {
  width: 4px;
}

.pwaj-detail-desc::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

.pwaj-detail-desc::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--pwaj-primary), var(--pwaj-secondary));
  border-radius: 2px;
}

.pwaj-detail-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  margin-bottom: 30px;
}

.pwaj-detail-section {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid var(--pwaj-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.pwaj-detail-section:last-child {
  margin-bottom: 0;
}

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

.pwaj-detail-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pwaj-text);
  position: relative;
  padding-left: 15px;
  margin: 0;
}

.pwaj-detail-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: var(--pwaj-gradient);
  border-radius: 2px;
}

.pwaj-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.pwaj-detail-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pwaj-detail-info-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--pwaj-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pwaj-detail-info-value {
  font-size: 14px;
  color: var(--pwaj-text);
  line-height: 1.5;
}

.pwaj-detail-info-value a {
  color: var(--pwaj-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pwaj-detail-info-value a:hover {
  color: var(--pwaj-primary);
  text-decoration: underline;
}

.pwaj-detail-source-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
  flex-wrap: wrap;
}

.pwaj-detail-source-tabs::-webkit-scrollbar {
  height: 4px;
}

.pwaj-detail-source-tabs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

.pwaj-detail-source-tabs::-webkit-scrollbar-thumb {
  background: linear-gradient(to right, var(--pwaj-primary), var(--pwaj-secondary));
  border-radius: 2px;
}

.pwaj-detail-source-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--pwaj-border);
  border-radius: 20px;
  color: var(--pwaj-text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pwaj-detail-source-tab:hover {
  background: rgba(255, 0, 255, 0.1);
  color: var(--pwaj-text);
}

.pwaj-detail-source-tab-active {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
  color: var(--pwaj-text);
  border-color: var(--pwaj-primary);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.pwaj-detail-source-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 500;
}

.pwaj-detail-episodes {
  position: relative;
}

.pwaj-detail-episode-list {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 10px;
}

.pwaj-detail-episode-list-active {
  display: grid;
}

.pwaj-detail-episode-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--pwaj-border);
  border-radius: 6px;
  color: var(--pwaj-text);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pwaj-detail-episode-item:hover {
  background: rgba(255, 0, 255, 0.1);
  border-color: var(--pwaj-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.2);
}

.pwaj-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pwaj-detail-qrcode {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--pwaj-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.pwaj-detail-qrcode-inner {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.pwaj-detail-qrcode-text {
  font-size: 13px;
  color: var(--pwaj-text-secondary);
  margin: 0;
}

.pwaj-detail-related {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pwaj-detail-related-item {
  display: flex;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pwaj-detail-related-item:hover {
  transform: translateX(5px);
}

.pwaj-detail-related-poster {
  width: 80px;
  height: 120px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.pwaj-detail-related-item:hover .pwaj-detail-related-poster {
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.pwaj-detail-related-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pwaj-detail-related-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pwaj-detail-related-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--pwaj-text);
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pwaj-detail-related-item:hover .pwaj-detail-related-title {
  color: var(--pwaj-primary);
}

.pwaj-detail-related-meta {
  font-size: 12px;
  color: var(--pwaj-text-secondary);
  display: flex;
  align-items: center;
}

.pwaj-detail-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--pwaj-text-secondary);
  margin: 0 5px;
}

/* 分享弹窗 */
.pwaj-share-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 6, 16, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pwaj-share-modal.active {
  opacity: 1;
  visibility: visible;
}

.pwaj-share-content {
  width: 300px;
  background: rgba(26, 26, 46, 0.9);
  border-radius: 15px;
  border: 1px solid var(--pwaj-border);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.pwaj-share-modal.active .pwaj-share-content {
  transform: translateY(0);
  opacity: 1;
}

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

.pwaj-share-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--pwaj-text);
  margin: 0;
}

.pwaj-share-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--pwaj-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pwaj-share-close:hover {
  background: rgba(255, 0, 255, 0.2);
  transform: rotate(90deg);
}

.pwaj-share-close svg {
  width: 16px;
  height: 16px;
}

.pwaj-share-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.pwaj-share-qrcode {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.pwaj-share-tip {
  font-size: 13px;
  color: var(--pwaj-text-secondary);
  margin: 0;
}

.pwaj-share-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--pwaj-border);
}

.pwaj-share-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
  border: 1px solid var(--pwaj-primary);
  border-radius: 30px;
  color: var(--pwaj-text);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pwaj-share-copy:hover {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.4), rgba(0, 255, 255, 0.4));
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.pwaj-share-copy svg {
  width: 16px;
  height: 16px;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .pwaj-detail-hero {
    height: auto;
  }
  
  .pwaj-detail-container {
    flex-direction: column;
    padding: 30px 20px;
    align-items: center;
    gap: 20px;
  }
  
  .pwaj-detail-poster {
    flex: 0 0 auto;
    width: 200px;
    height: 300px;
  }
  
  .pwaj-detail-title {
    font-size: 24px;
    text-align: center;
  }
  
  .pwaj-detail-tags {
    justify-content: center;
  }
  
  .pwaj-detail-actions {
    justify-content: center;
  }
  
  .pwaj-detail-desc {
    max-height: none;
    text-align: center;
  }
  
  .pwaj-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .pwaj-detail-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .pwaj-detail-hero {
    border-radius: 10px;
  }
  
  .pwaj-detail-container {
    padding: 20px 15px;
  }
  
  .pwaj-detail-poster {
    width: 180px;
    height: 270px;
  }
  
  .pwaj-detail-title {
    font-size: 22px;
  }
  
  .pwaj-detail-actions {
    flex-wrap: wrap;
  }
  
  .pwaj-detail-episode-list {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  }
  
  .pwaj-detail-related-item {
    flex-direction: column;
    align-items: center;
  }
  
  .pwaj-detail-related-poster {
    width: 100%;
    height: 150px;
  }
  
  .pwaj-detail-related-info {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .pwaj-detail-poster {
    width: 150px;
    height: 225px;
  }
  
  .pwaj-detail-title {
    font-size: 20px;
  }
  
  .pwaj-detail-section {
    padding: 15px;
  }
  
  .pwaj-detail-episode-list {
    grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    gap: 8px;
  }
  
  .pwaj-detail-episode-item {
    height: 32px;
    font-size: 12px;
  }
}

/* 视频播放页样式 */
.pwaj-play-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  background: rgba(10, 10, 18, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 0, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
  overflow: hidden;
}

.pwaj-play-main {
  position: relative;
  width: 100%;
}

.pwaj-player-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 比例 */
  background: var(--pwaj-bg-darker);
  overflow: hidden;
  border-radius: 8px 0 0 0;
}

.pwaj-player-container iframe,
.pwaj-player-container video,
.pwaj-player-container #player,
.pwaj-player-container object,
.pwaj-player-container embed,
.pwaj-player-container .MacPlayer,
.pwaj-player-container .MacPlayer * {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  outline: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
}

/* 确保所有播放器类型都能正确全屏显示 */
.pwaj-player-container .MacPlayer {
  background-color: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* 修复某些播放器可能的内部容器问题 */
.pwaj-player-container .MacPlayer > div,
.pwaj-player-container #playleft,
.pwaj-player-container .playleft {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.pwaj-play-info {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pwaj-play-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 15px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
  letter-spacing: 1px;
}

.pwaj-play-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pwaj-play-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pwaj-play-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 0, 255, 0.3);
}

.pwaj-play-tag:hover {
  background: rgba(255, 0, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.pwaj-play-side {
  display: flex;
  flex-direction: column;
  background: rgba(12, 12, 22, 0.8);
  border-left: 1px solid rgba(255, 0, 255, 0.2);
}

.pwaj-play-source {
  padding: 20px 20px 0;
}

.pwaj-play-section-header {
  margin-bottom: 15px;
  position: relative;
}

.pwaj-play-section-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.pwaj-play-section-title::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--pwaj-primary), var(--pwaj-secondary));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.pwaj-play-source-tabs {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--pwaj-primary) rgba(255, 255, 255, 0.1);
}

.pwaj-play-source-tabs::-webkit-scrollbar {
  height: 4px;
}

.pwaj-play-source-tabs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.pwaj-play-source-tabs::-webkit-scrollbar-thumb {
  background: var(--pwaj-primary);
  border-radius: 2px;
}

.pwaj-play-source-tab {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  outline: none;
}

.pwaj-play-source-tab:hover {
  background: rgba(255, 0, 255, 0.2);
  color: #fff;
}

.pwaj-play-source-tab-active {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
  color: #fff;
  border-color: rgba(255, 0, 255, 0.5);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.pwaj-play-source-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 10px;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.pwaj-play-source-tab-active .pwaj-play-source-count {
  background: rgba(255, 0, 255, 0.5);
}

.pwaj-play-episodes-container {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--pwaj-primary) rgba(255, 255, 255, 0.1);
}

.pwaj-play-episodes-container::-webkit-scrollbar {
  width: 4px;
}

.pwaj-play-episodes-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.pwaj-play-episodes-container::-webkit-scrollbar-thumb {
  background: var(--pwaj-primary);
  border-radius: 2px;
}

.pwaj-play-episode-list {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 10px;
}

.pwaj-play-episode-list-active {
  display: grid;
}

.pwaj-play-episode-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
}

.pwaj-play-episode-item:hover {
  background: rgba(255, 0, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.2);
}

.pwaj-play-episode-item-active {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
  color: #fff;
  border-color: rgba(255, 0, 255, 0.5);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
  position: relative;
}

.pwaj-play-episode-item-active::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  border: 1px solid rgba(255, 0, 255, 0.5);
  border-radius: 12px;
  animation: huPlayEpisodeGlow 2s infinite alternate;
  pointer-events: none;
}

@keyframes huPlayEpisodeGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
  }
}

.pwaj-play-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 15px 20px;
  background: rgba(10, 10, 18, 0.8);
  border-top: 1px solid rgba(255, 0, 255, 0.2);
}

.pwaj-play-control-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pwaj-play-control-btn:hover {
  background: rgba(255, 0, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.2);
}

.pwaj-play-control-btn svg {
  width: 20px;
  height: 20px;
  margin-bottom: 5px;
}

.pwaj-play-control-btn span {
  font-size: 12px;
  white-space: nowrap;
}

.pwaj-play-section {
  margin-top: 30px;
}

/* 分享弹窗样式 */
.pwaj-report-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pwaj-report-modal.active {
  opacity: 1;
  visibility: visible;
}

.pwaj-report-content {
  width: 90%;
  max-width: 500px;
  background: var(--pwaj-bg-light);
  border-radius: 16px;
  border: 1px solid rgba(255, 0, 255, 0.3);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
  overflow: hidden;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.pwaj-report-modal.active .pwaj-report-content {
  transform: translateY(0);
}

.pwaj-report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.pwaj-report-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pwaj-report-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pwaj-report-close:hover {
  background: rgba(255, 0, 255, 0.3);
  transform: rotate(90deg);
}

.pwaj-report-close svg {
  width: 16px;
  height: 16px;
}

.pwaj-report-body {
  padding: 20px;
}

.pwaj-report-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.pwaj-report-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.pwaj-report-option input {
  margin-right: 10px;
  accent-color: var(--pwaj-primary);
}

.pwaj-report-option span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.pwaj-report-textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  resize: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

.pwaj-report-textarea:focus {
  outline: none;
  border-color: rgba(255, 0, 255, 0.5);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.pwaj-report-footer {
  padding: 15px 20px;
  border-top: 1px solid rgba(255, 0, 255, 0.2);
  text-align: right;
}

.pwaj-report-submit {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--pwaj-primary), var(--pwaj-secondary));
  border: none;
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pwaj-report-submit:hover {
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
  transform: translateY(-2px);
}

/* 响应式样式 */
@media (max-width: 992px) {
  .pwaj-play-wrapper {
    grid-template-columns: 1fr;
  }
  
  .pwaj-play-side {
    border-left: none;
    border-top: 1px solid rgba(255, 0, 255, 0.2);
  }
  
  .pwaj-play-episodes-container {
    max-height: 300px;
  }
  
  .pwaj-player-container {
    border-radius: 8px 8px 0 0;
  }
}

@media (max-width: 768px) {
  .pwaj-play-title {
    font-size: 20px;
  }
  
  .pwaj-play-episode-list {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  }
  
  .pwaj-play-controls {
    padding: 10px 15px;
  }
  
  .pwaj-report-options {
    grid-template-columns: 1fr;
  }
  
  /* 移动设备上调整播放器高度，保持16:9比例 */
  .pwaj-player-container {
    padding-top: 56.25%;
  }
}

@media (max-width: 576px) {
  .pwaj-play-wrapper {
    border-radius: 12px;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
  
  .pwaj-player-container {
    border-radius: 0;
  }
  
  /* 小屏幕设备上的额外优化 */
  .pwaj-player-container {
    padding-top: 56.25%;
  }
  
  .pwaj-play-info {
    padding: 15px;
  }
  
  .pwaj-play-title {
    font-size: 18px;
  }
  
  .pwaj-play-tag {
    padding: 4px 10px;
    font-size: 11px;
  }
  
  .pwaj-play-source {
    padding: 15px 15px 0;
  }
  
  .pwaj-play-episodes-container {
    padding: 0 15px 15px;
  }
  
  .pwaj-play-episode-list {
    grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    gap: 8px;
  }
  
  .pwaj-play-episode-item {
    padding: 6px;
    font-size: 12px;
  }
  
  .pwaj-play-control-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .pwaj-play-control-btn span {
    font-size: 10px;
  }
}

/* 横屏模式优化 */
@media (max-width: 992px) and (orientation: landscape) {
  .pwaj-player-container {
    padding-top: 56.25%; /* 保持16:9比例 */
  }
  
  .pwaj-play-info {
    padding: 10px;
  }
  
  .pwaj-play-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

/* 搜索页样式 - 蒸汽波复古未来风格 */
.pwaj-search-header {
  background: rgba(26, 26, 46, 0.7);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid var(--pwaj-border);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.pwaj-search-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pwaj-primary), var(--pwaj-secondary), transparent);
  animation: pwaj-gradient-flow 3s infinite linear;
}

@keyframes pwaj-gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

.pwaj-search-query {
  display: flex;
  align-items: center;
  color: var(--pwaj-text);
}

.pwaj-search-query i {
  font-size: 24px;
  margin-right: 10px;
  color: var(--pwaj-primary);
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
}

.pwaj-search-term {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(to right, var(--pwaj-primary), var(--pwaj-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 0, 255, 0.3);
  position: relative;
}

.pwaj-search-count {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 8px 15px;
  font-size: 14px;
  color: var(--pwaj-text);
  border: 1px solid rgba(255, 0, 255, 0.3);
}

.pwaj-search-count-number {
  font-weight: 700;
  color: var(--pwaj-primary);
}

.pwaj-search-filter {
  border-top: 1px solid var(--pwaj-border);
  padding-top: 20px;
}

.pwaj-search-filter-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pwaj-search-filter-label {
  color: var(--pwaj-text-secondary);
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
}

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

.pwaj-search-filter-option {
  display: inline-block;
  padding: 6px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--pwaj-border);
  border-radius: 20px;
  color: var(--pwaj-text);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pwaj-search-filter-option:hover {
  background: rgba(255, 0, 255, 0.1);
  border-color: var(--pwaj-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.2);
}

.pwaj-search-filter-active {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
  border-color: var(--pwaj-primary);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

/* 搜索结果列表 */
.pwaj-search-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.pwaj-search-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  background: rgba(26, 26, 46, 0.7);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--pwaj-border);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.pwaj-search-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 255, 0.3);
  border-color: var(--pwaj-primary);
}

.pwaj-search-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--pwaj-primary), var(--pwaj-secondary), var(--pwaj-primary));
  background-size: 200% 200%;
  z-index: -1;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pwaj-search-item:hover::before {
  opacity: 0.5;
  animation: pwaj-border-glow 2s infinite linear;
}

@keyframes pwaj-border-glow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.pwaj-search-item-poster {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.pwaj-search-item-poster-link {
  display: block;
  height: 100%;
}

.pwaj-search-item-poster-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pwaj-search-item-poster-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pwaj-search-item:hover .pwaj-search-item-poster-inner img {
  transform: scale(1.08);
}

.pwaj-search-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(6, 6, 16, 0.8) 0%, rgba(6, 6, 16, 0) 100%);
  z-index: 1;
}

.pwaj-search-item-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  background: rgba(255, 0, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pwaj-text);
  opacity: 0;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pwaj-search-item-play-icon svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 5px rgba(255, 0, 255, 0.8));
}

.pwaj-search-item:hover .pwaj-search-item-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pwaj-search-item-status {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.pwaj-search-item-badge {
  display: inline-block;
  padding: 4px 8px;
  background: linear-gradient(135deg, var(--pwaj-primary), var(--pwaj-secondary));
  color: var(--pwaj-text);
  font-size: 12px;
  border-radius: 4px;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  backdrop-filter: blur(5px);
}

.pwaj-search-item-score {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(6, 6, 16, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pwaj-primary);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  z-index: 2;
  backdrop-filter: blur(5px);
}

.pwaj-search-item-score .pwaj-score-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--pwaj-secondary);
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.pwaj-search-item-info {
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
}

.pwaj-search-item-title {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 700;
}

.pwaj-search-item-title a {
  color: var(--pwaj-text);
  text-decoration: none;
  background: linear-gradient(to right, #fff, #fff);
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}

.pwaj-search-item-title a:hover {
  color: var(--pwaj-primary);
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  background-size: 100% 1px;
}

.pwaj-search-item-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--pwaj-text-secondary);
  font-size: 14px;
}

.pwaj-search-item-type {
  background: rgba(255, 0, 255, 0.1);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 12px;
  color: var(--pwaj-primary);
}

.pwaj-search-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.pwaj-search-item-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  color: var(--pwaj-text-secondary);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pwaj-search-item-tag:hover {
  background: rgba(255, 0, 255, 0.2);
  color: var(--pwaj-text);
  transform: translateY(-2px);
}

.pwaj-search-item-cast {
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--pwaj-text-secondary);
}

.pwaj-search-item-cast-label {
  color: var(--pwaj-text);
  font-weight: 600;
  margin-right: 5px;
}

.pwaj-search-item-desc {
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--pwaj-text-secondary);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex: 1;
}

.pwaj-search-item-actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.pwaj-search-item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pwaj-search-item-detail-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pwaj-text);
  border: 1px solid var(--pwaj-border);
}

.pwaj-search-item-detail-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pwaj-search-item-play-btn {
  background: linear-gradient(135deg, var(--pwaj-primary), var(--pwaj-secondary));
  color: var(--pwaj-text);
  border: none;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.pwaj-search-item-play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5);
}

.pwaj-search-item-btn i {
  font-size: 16px;
}

/* 搜索为空状态 */
.pwaj-search-empty {
  background: rgba(26, 26, 46, 0.7);
  border-radius: 16px;
  padding: 60px 30px;
  text-align: center;
  border: 1px solid var(--pwaj-border);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

.pwaj-search-empty-icon {
  margin-bottom: 20px;
  color: var(--pwaj-text-secondary);
  opacity: 0.6;
}

.pwaj-search-empty-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 15px;
  color: var(--pwaj-text);
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.pwaj-search-empty-text {
  font-size: 16px;
  color: var(--pwaj-text-secondary);
  margin: 0 0 30px;
}

.pwaj-search-empty-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--pwaj-primary), var(--pwaj-secondary));
  color: var(--pwaj-text);
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.pwaj-search-empty-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5);
}

/* 响应式样式 */
@media (max-width: 992px) {
  .pwaj-search-header {
    padding: 20px;
  }
  
  .pwaj-search-term {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .pwaj-search-info {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pwaj-search-item {
    grid-template-columns: 120px 1fr;
    gap: 15px;
  }
  
  .pwaj-search-item-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .pwaj-search-item-info {
    padding: 15px 15px 15px 0;
  }
  
  .pwaj-search-item-meta {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .pwaj-search-item-desc {
    -webkit-line-clamp: 2;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .pwaj-search-header {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .pwaj-search-term {
    font-size: 16px;
  }
  
  .pwaj-search-count {
    padding: 5px 10px;
    font-size: 12px;
  }
  
  .pwaj-search-filter-label {
    width: 100%;
    margin-bottom: 5px;
  }
  
  .pwaj-search-item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .pwaj-search-item-poster {
    height: 200px;
  }
  
  .pwaj-search-item-info {
    padding: 15px;
  }
  
  .pwaj-search-item-actions {
    flex-wrap: wrap;
  }
  
  .pwaj-search-item-btn {
    flex: 1;
    justify-content: center;
  }
  
  .pwaj-search-empty {
    padding: 40px 20px;
  }
  
  .pwaj-search-empty-title {
    font-size: 20px;
  }
  
  .pwaj-search-empty-text {
    font-size: 14px;
  }
}

/* 懒加载背景图片样式 */
.lazy-load {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    border-radius: inherit;
}

.lazy-load.loaded {
    opacity: 1;
}

.pwaj-video-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

/* 其他现有样式... */
