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

/* 重置与基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #ffcaaf;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* 头部样式 */
.nvld-header {
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  box-shadow: 0 0 30px rgba(255, 158, 125, 0.9);
  position: relative;
  z-index: 100;
  padding: 15px 0;
  border-bottom: 2px solid #ffaa99;
}

.nvld-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%), transparent);
  animation: nvld-glow 5s infinite linear;
  z-index: -1;
}

@keyframes nvld-glow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.nvld-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nvld-logo {
  display: block;
  transition: transform 0.3s ease;
}

.nvld-logo:hover {
  transform: scale(1.05);
}

.nvld-logo h1 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 158, 125, 0.9);
  position: relative;
  overflow: hidden;
}

.nvld-logo h1:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ffcaaf;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.nvld-logo:hover h1:before {
  transform: translateX(0);
}

/* 搜索框样式 */
.nvld-search-box {
  flex: 0 0 400px;
}

.nvld-search {
  display: flex;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 202, 175, 0.9);
  border: 1px solid rgba(255, 202, 175, 0.9);
  box-shadow: 0 0 15px rgba(255, 202, 175, 0.9);
  transition: all 0.3s ease;
}

.nvld-search:focus-within {
  box-shadow: 0 0 20px rgba(255, 161, 155, 0.9);
  border-color: #ffcaaf;
  transform: translateY(-2px);
}

.nvld-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.nvld-input::placeholder {
  color: rgba(38, 48, 53, 0.95);
}

.nvld-btn {
  width: 50px;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nvld-btn:hover {
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
}

.nvld-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* 导航样式 */
.nvld-nav-wrapper {
  background: rgba(255, 154, 141, 0.9);
  border-bottom: 1px solid rgba(255, 170, 153, 0.9);
  position: relative;
}

.nvld-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nvld-nav::-webkit-scrollbar {
  display: none;
}

.nvld-nav-item {
  padding: 15px 20px;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nvld-nav-item:hover {
  color: #ff9a8d;
  background: rgba(255, 170, 153, 0.9);
}

.nvld-nav-item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #ffaa99;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nvld-nav-item:hover:after {
  width: 100%;
}

/* 移动搜索框 */
.nvld-mobile-search {
  display: none;
  margin: 15px auto;
  max-width: 800px;
  padding: 0 15px;
}

.nvld-mobile-search-box {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 158, 125, 0.9);
  border: 1px solid rgba(255, 154, 141, 0.9);
}

/* 热搜词样式 */
.nvld-hot-words {
  max-width: 1200px;
  margin: 15px auto;
  padding: 0 15px;
}

.nvld-hot-words-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.nvld-hot-word-item {
  margin: 5px;
}

.nvld-hot-link {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  border: 1px solid rgba(255, 161, 155, 0.9);
  font-size: 13px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nvld-hot-link:before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  z-index: -1;
  border-radius: 20px;
  animation: nvld-rotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nvld-hot-link:hover:before {
  opacity: 1;
}

@keyframes nvld-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.nvld-hot-link:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 170, 153, 0.9);
}

/* 移动菜单按钮 */
.nvld-mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.nvld-mobile-menu-btn span {
  display: block;
  height: 2px;
  background: #fff;
  transform-origin: left center;
  transition: all 0.3s ease;
}

.nvld-mobile-menu-btn span:nth-child(1) {
  width: 100%;
}

.nvld-mobile-menu-btn span:nth-child(2) {
  width: 70%;
}

.nvld-mobile-menu-btn span:nth-child(3) {
  width: 100%;
}

.nvld-mobile-menu-btn:hover span {
  background: #ffa19b;
}

.nvld-mobile-menu-btn:hover span:nth-child(2) {
  width: 100%;
}

/* 视频内容区域样式 */
.nvld-section {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 15px;
  position: relative;
}

.nvld-section:before {
  content: '';
  position: absolute;
  top: -5px;
  left: 15px;
  width: 50px;
  height: 5px;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  border-radius: 5px;
}

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

.nvld-section-title {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.nvld-section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
}

.nvld-section-actions {
  display: flex;
  align-items: center;
}

.nvld-more-link {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%), rgba(255, 158, 125, 0.9));
  border: 1px solid rgba(255, 161, 155, 0.9);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nvld-more-link:hover {
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 161, 155, 0.9);
}

.nvld-keyword {
  color: #ffcaaf;
  font-weight: bold;
}

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

/* 视频卡片样式 */
.nvld-video-card {
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  box-shadow: 0 5px 15px rgba(255, 161, 155, 0.9);
}

.nvld-video-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 154, 141, 0.9);
  z-index: 10;
}

.nvld-video-card:before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nvld-video-card:hover:before {
  opacity: 1;
  animation: nvld-border-glow 2s linear infinite;
}

@keyframes nvld-border-glow {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.nvld-video-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.nvld-poster-image {
  position: relative;
  background-color: #ffcaaf;
  overflow: hidden;
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
}

.nvld-poster-image img {
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nvld-poster-image img.lazy {
  opacity: 0;
}

.nvld-poster-image img.lazy.loaded {
  opacity: 1;
}

.nvld-loading-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffa19b;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.nvld-loading-placeholder img {
  width: 50px;
  height: 50px;
  opacity: 0.8;
  object-fit: contain;
}

.nvld-video-card:hover .nvld-poster-image img {
  transform: scale(1.1);
}

.nvld-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%) 0%, rgba(255, 158, 125, 0.9) 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nvld-video-card:hover .nvld-video-overlay {
  opacity: 1;
}

.nvld-play-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 158, 125, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px rgba(255, 202, 175, 0.9);
  animation: nvld-pulse-play 2s infinite;
}

.nvld-video-card:hover .nvld-play-icon {
  transform: scale(1);
}

@keyframes nvld-pulse-play {
  0% { box-shadow: 0 0 0 0 rgba(255, 154, 141, 0.9); }
  70% { box-shadow: 0 0 0 15px rgba(255, 202, 175, 0.9); }
  100% { box-shadow: 0 0 0 0 rgba(255, 170, 153, 0.9); }
}

.nvld-play-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.nvld-video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 161, 155, 0.9);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(255, 202, 175, 0.9);
  backdrop-filter: blur(5px);
}

.nvld-video-quality {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.nvld-quality-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 154, 141, 0.9);
  border: 1px solid rgba(255, 202, 175, 0.9);
  border-radius: 3px;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  backdrop-filter: blur(5px);
  letter-spacing: 1px;
}

.nvld-video-info {
  padding: 15px;
}

.nvld-video-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nvld-video-title a {
  color: #fff;
  transition: color 0.3s ease;
}

.nvld-video-title a:hover {
  color: #ffcaaf;
}

.nvld-video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  color: rgba(38, 48, 53, 0.95);
}

.nvld-meta-item {
  display: inline-block;
  padding: 2px 6px;
  background: rgba(255, 158, 125, 0.9); color: #000;
  border-radius: 3px;
}

.nvld-video-rating {
  display: flex;
  align-items: center;
}

.nvld-star {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 2px;
  position: relative;
}

.nvld-star:before {
  content: '★';
  color: rgba(38, 48, 53, 0.95);
}

.nvld-star-full:before {
  color: #ffaa99;
}

.nvld-score {
  margin-left: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #ffcaaf;
}

/* 增强的筛选器样式 */
.nvld-category-filter {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 10px;
  padding: 5px 0;
  position: relative;
}

.nvld-category-filter::-webkit-scrollbar {
  display: none;
}

.nvld-category-filter:before {
  content: '';
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%), rgba(255, 161, 155, 0.9), rgba(255, 170, 153, 0.9));
  z-index: 0;
}

.nvld-filter-item {
  padding: 8px 20px;
  background: rgba(255, 202, 175, 0.9);
  border: 1px solid rgba(255, 170, 153, 0.9);
  border-radius: 20px;
  color: rgba(38, 48, 53, 0.95);
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  user-select: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nvld-filter-item:hover {
  color: #fff;
  background: rgba(255, 158, 125, 0.9);
  border-color: rgba(38, 48, 53, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 170, 153, 0.9);
}

.nvld-filter-item:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%), transparent);
  transition: all 0.5s ease;
}

.nvld-filter-item:hover:after {
  left: 100%;
}

.nvld-filter-active {
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(255, 154, 141, 0.9);
  position: relative;
}

.nvld-filter-active:before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  z-index: -1;
  animation: nvld-rotate-gradient 3s linear infinite;
}

@keyframes nvld-rotate-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.nvld-filter-active:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 7px 20px rgba(255, 154, 141, 0.9);
}

/* 分页样式 */
.nvld-pagination-wrapper {
  margin-top: 40px;
}

.nvld-pagination {
  display: flex;
  justify-content: center;
}

.nvld-pagination-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nvld-page-nums {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.nvld-page-num {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 8px;
  background: rgba(255, 202, 175, 0.9);
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nvld-page-num:hover {
  background: rgba(255, 161, 155, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 161, 155, 0.9);
}

.nvld-page-current {
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 158, 125, 0.9);
}

.nvld-page-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 15px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 158, 125, 0.9);
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nvld-page-btn:hover {
  background: rgba(255, 154, 141, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 161, 155, 0.9);
}

.nvld-page-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nvld-page-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.nvld-total-count {
  font-size: 14px;
  color: rgba(38, 48, 53, 0.95);
}

.nvld-page-last {
  display: inline-block;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 8px;
  background: rgba(255, 202, 175, 0.9);
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nvld-page-last:hover {
  background: rgba(255, 170, 153, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 154, 141, 0.9);
}

/* 播放器区域 */
.nvld-player-section {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 15px;
  position: relative;
}

.nvld-player-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 154, 141, 0.9);
  position: relative;
}

.nvld-player-wrapper:before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  border-radius: 10px;
  animation: nvld-border-glow 2s linear infinite;
}

/* 底部导航区域 */
.nvld-footer-nav {
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.nvld-footer-nav:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%), transparent);
}

.nvld-footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.nvld-footer-nav-column {
  position: relative;
}

.nvld-footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.nvld-footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
}

.nvld-footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nvld-footer-link {
  color: rgba(38, 48, 53, 0.95);
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding-left: 15px;
}

.nvld-footer-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff9a8d;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.nvld-footer-link:hover {
  color: #ff9e7d;
  transform: translateX(5px);
}

.nvld-footer-link:hover:before {
  opacity: 1;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 10px #ff9e7d;
}

.nvld-contact-label {
  display: inline-block;
  color: #ffcaaf;
  font-weight: 600;
  margin-right: 5px;
}

.nvld-contact-value {
  color: rgba(38, 48, 53, 0.95);
}

.nvld-footer-qrcode {
  margin-top: 20px;
}

.nvld-qrcode-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  border: 1px solid rgba(255, 158, 125, 0.9);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 202, 175, 0.9);
  transition: all 0.3s ease;
}

.nvld-qrcode-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 170, 153, 0.9);
  border-color: rgba(38, 48, 53, 0.95);
}

.nvld-qrcode-placeholder {
  width: 80px;
  height: 80px;
  color: rgba(38, 48, 53, 0.95);
  background: rgba(255, 170, 153, 0.9);
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.nvld-qrcode-placeholder:before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%), transparent);
  animation: nvld-scan 2s infinite linear;
}

@keyframes nvld-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.nvld-qrcode-text {
  font-size: 12px;
  color: rgba(38, 48, 53, 0.95);
}

/* 页脚版权区域 */
.nvld-footer {
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  padding: 40px 0 50px;
  position: relative;
}

.nvld-footer:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%), #ff9a8d, rgba(255, 170, 153, 0.9), transparent);
}

.nvld-footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.nvld-footer-logo {
  text-align: center;
}

.nvld-footer-logo-link {
  display: inline-block;
  transition: all 0.3s ease;
}

.nvld-footer-logo-link:hover {
  transform: scale(1.05);
}

.nvld-site-name {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 158, 125, 0.9);
  margin-bottom: 5px;
}

.nvld-site-slogan {
  font-size: 14px;
  color: rgba(38, 48, 53, 0.95);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nvld-footer-info {
  text-align: center;
}

.nvld-copyright {
  font-size: 14px;
  color: rgba(38, 48, 53, 0.95);
  margin-bottom: 20px;
}

.nvld-footer-warning {
  font-size: 12px;
  color: rgba(38, 48, 53, 0.95);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* 回到顶部按钮 */
.nvld-back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 202, 175, 0.9);
  border: 2px solid rgba(255, 170, 153, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 158, 125, 0.9);
}

.nvld-back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nvld-back-to-top:hover {
  background: rgba(255, 161, 155, 0.9);
  border-color: rgba(38, 48, 53, 0.95);
  transform: translateY(-5px);
  box-shadow: 0 7px 20px rgba(255, 202, 175, 0.9);
}

.nvld-back-to-top svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: all 0.3s ease;
}

.nvld-back-to-top:hover svg {
  transform: translateY(-3px);
}

/* 响应式布局 */
@media (max-width: 992px) {
  .nvld-search-box {
    flex: 0 0 320px;
  }
  
  .nvld-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }

  .nvld-footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nvld-search-box {
    display: none;
  }
  
  .nvld-mobile-search {
    display: block;
  }
  
  .nvld-mobile-menu-btn {
    display: flex;
  }
  
  .nvld-nav {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nvld-nav.active {
    max-height: 500px;
  }
  
  .nvld-nav-item {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 202, 175, 0.9);
  }
  
  .nvld-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nvld-section-actions {
    margin-top: 10px;
  }
  
  .nvld-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
  
  .nvld-pagination-inner {
    flex-direction: column;
  }
  
  .nvld-page-info {
    margin: 10px 0 0;
    width: 100%;
    justify-content: center;
  }
  
  .nvld-link-grid {
    gap: 10px;
  }
  
  .nvld-link-item {
    padding: 8px 15px;
    font-size: 13px;
  }
  
  .nvld-footer-content {
    gap: 20px;
  }
  
  .nvld-back-to-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
  }
  
  .nvld-category-filter {
    gap: 10px;
    margin-top: 5px;
  }
  
  .nvld-filter-item {
    padding: 6px 15px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .nvld-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .nvld-category-filter {
    margin-top: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .nvld-category-filter::-webkit-scrollbar {
    display: none;
  }
  
  .nvld-filter-item {
    flex: 0 0 auto;
  }
  
  .nvld-footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .nvld-footer-nav {
    padding: 40px 0;
  }
}

/* 视频详情页样式 */
.nvld-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  margin-bottom: 30px;
  color: #fff;
}

.nvld-detail-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  opacity: 0;
  transform: scale(1.1);
  z-index: -1;
  transition: opacity 0.5s ease;
}

.nvld-detail-backdrop:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%) 0%, rgba(255, 158, 125, 0.9) 100%);
  z-index: -1;
}

.nvld-detail-backdrop:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 158, 125, 0.9) 0%, transparent 60%);
  z-index: -1;
  animation: nvld-pulse-glow 3s infinite alternate;
}

@keyframes nvld-pulse-glow {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.nvld-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  position: relative;
  z-index: 1;
}

.nvld-detail-poster {
  flex: 0 0 300px;
  position: relative;
  margin-right: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(255, 170, 153, 0.9);
  transform: perspective(1000px) rotateY(5deg);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nvld-detail-poster:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.nvld-detail-poster:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(255, 202, 175, 0.9);
  box-shadow: 0 0 20px rgba(255, 154, 141, 0.9);
  border-radius: 8px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.nvld-detail-poster:hover:before {
  opacity: 1;
  animation: nvld-border-pulse 1.5s infinite;
}

@keyframes nvld-border-pulse {
  0% {
    box-shadow: 0 0 15px rgba(255, 170, 153, 0.9);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 170, 153, 0.9);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 154, 141, 0.9);
  }
}

.nvld-detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.nvld-detail-poster:hover img {
  transform: scale(1.05);
}

.nvld-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 202, 175, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.nvld-detail-poster:hover .nvld-poster-overlay {
  opacity: 1;
}

.nvld-play-now-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 158, 125, 0.9);
  transform: scale(0.9);
}

.nvld-play-now-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  margin-bottom: 5px;
}

.nvld-play-now-btn span {
  font-size: 12px;
  position: absolute;
  bottom: -30px;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(255, 202, 175, 0.9);
}

.nvld-play-now-btn:hover {
  transform: scale(1);
  box-shadow: 0 15px 25px rgba(255, 202, 175, 0.9);
}

.nvld-play-now-btn:after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 170, 153, 0.9);
  animation: nvld-pulse-btn 2s infinite;
}

@keyframes nvld-pulse-btn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.nvld-detail-info {
  flex: 1;
}

.nvld-title-wrapper {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.nvld-detail-title {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-right: 15px;
  text-shadow: 0 0 15px rgba(255, 170, 153, 0.9);
  letter-spacing: 1px;
  animation: nvld-text-shadow 5s infinite alternate;
}

@keyframes nvld-text-shadow {
  0% {
    text-shadow: 0 0 15px rgba(255, 202, 175, 0.9);
  }
  50% {
    text-shadow: 0 0 25px rgba(255, 202, 175, 0.9);
  }
  100% {
    text-shadow: 0 0 15px rgba(255, 158, 125, 0.9);
  }
}

.nvld-detail-badge {
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(255, 158, 125, 0.9);
  animation: nvld-badge-pulse 2s infinite alternate;
}

@keyframes nvld-badge-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 154, 141, 0.9);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 170, 153, 0.9);
  }
}

.nvld-detail-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.nvld-detail-meta-item {
  margin-right: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: rgba(38, 48, 53, 0.95);
  font-size: 14px;
  font-weight: 500;
}

.nvld-detail-meta-item i {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.nvld-icon-calendar {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 202, 175, 0.9)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
}

.nvld-icon-location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 170, 153, 0.9)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.nvld-icon-tag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 158, 125, 0.9)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'%3E%3C/path%3E%3Cline x1='7' y1='7' x2='7.01' y2='7'%3E%3C/line%3E%3C/svg%3E");
}

.nvld-icon-eye {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 170, 153, 0.9)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.nvld-detail-rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.nvld-detail-score {
  font-size: 24px;
  font-weight: 900;
  color: #ff9e7d;
  margin-left: 15px;
  background: rgba(255, 158, 125, 0.9);
  border: 2px solid rgba(255, 161, 155, 0.9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 170, 153, 0.9);
}

.nvld-rating-stars {
  display: flex;
}

.nvld-star {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  position: relative;
}

.nvld-star:before {
  content: '★';
  color: rgba(38, 48, 53, 0.95);
  font-size: 20px;
}

.nvld-star-full:before {
  content: '★';
  color: #ffcaaf;
  text-shadow: 0 0 10px rgba(255, 161, 155, 0.9);
}

.nvld-detail-director,
.nvld-detail-actor {
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(38, 48, 53, 0.95);
}

.nvld-label {
  font-weight: bold;
  color: #ffa19b;
  margin-right: 5px;
}

.nvld-value {
  color: rgba(38, 48, 53, 0.95);
}

.nvld-detail-action-btns {
  display: flex;
  margin-top: 30px;
}

.nvld-btn-primary {
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  border: none;
  padding: 12px 24px;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  display: flex;
  align-items: center;
  margin-right: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(255, 158, 125, 0.9);
  transition: all 0.3s ease;
  cursor: pointer;
}

.nvld-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 158, 125, 0.9);
}

.nvld-btn-primary svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: #fff;
}

.nvld-btn-secondary {
  background: rgba(255, 158, 125, 0.9);
  border: 2px solid rgba(255, 154, 141, 0.9);
  padding: 12px 24px;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  display: flex;
  align-items: center;
  margin-right: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nvld-btn-secondary:hover {
  background: rgba(255, 170, 153, 0.9);
  border-color: rgba(38, 48, 53, 0.95);
  transform: translateY(-3px);
}

.nvld-btn-secondary svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: #ffa19b;
}

.nvld-detail-content {
  margin-bottom: 40px;
}

.nvld-detail-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 170, 153, 0.9);
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nvld-detail-tabs::-webkit-scrollbar {
  display: none;
}

.nvld-tab {
  padding: 15px 25px;
  font-weight: bold;
  color: rgba(38, 48, 53, 0.95);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nvld-tab:hover {
  color: #fff;
}

.nvld-tab:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.nvld-tab-active {
  color: #ffaa99;
}

.nvld-tab-active:after {
  background: #ffcaaf;
  box-shadow: 0 0 15px rgba(255, 158, 125, 0.9);
}

.nvld-tab-content {
  display: none;
  animation: nvld-fade-in 0.5s ease;
}

@keyframes nvld-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nvld-tab-content.active {
  display: block;
}

.nvld-description {
  background: rgba(255, 202, 175, 0.9);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.nvld-description:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 161, 155, 0.9) 0%, transparent 70%);
  opacity: 0.5;
  z-index: -1;
}

.nvld-description-text {
  line-height: 1.8;
  color: rgba(38, 48, 53, 0.95);
  font-size: 16px;
}

.nvld-playlist {
  margin-bottom: 30px;
}

.nvld-playlist-group {
  margin-bottom: 20px;
}

.nvld-playlist-header {
  margin-bottom: 15px;
  border-left: 4px solid #ff9a8d;
  padding-left: 15px;
}

.nvld-playlist-title {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.nvld-playlist-items,
.nvld-download-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nvld-playlist-item {
  background: rgba(255, 202, 175, 0.9);
  border: 1px solid rgba(255, 158, 125, 0.9);
  border-radius: 5px;
  padding: 8px 15px;
  color: rgba(38, 48, 53, 0.95);
  font-size: 14px;
  transition: all 0.3s ease;
}

.nvld-playlist-item:hover {
  background: rgba(255, 154, 141, 0.9);
  border-color: rgba(38, 48, 53, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 158, 125, 0.9);
  color: #000;
}

.nvld-download-item {
  background: rgba(255, 158, 125, 0.9);
  border: 1px solid rgba(255, 154, 141, 0.9);
  border-radius: 5px;
  padding: 10px 20px;
  color: rgba(38, 48, 53, 0.95);
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nvld-download-item svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: #ffcaaf;
}

.nvld-download-item:hover {
  background: rgba(255, 158, 125, 0.9);
  border-color: rgba(38, 48, 53, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 161, 155, 0.9);
  color: #fff;
}

.nvld-download-group {
  margin-bottom: 20px;
}

.nvld-download-header {
  margin-bottom: 15px;
  border-left: 4px solid #ff9a8d;
  padding-left: 15px;
}

.nvld-download-title {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 992px) {
  .nvld-detail-container {
    flex-direction: column;
  }
  
  .nvld-detail-poster {
    width: 250px;
    max-width: 100%;
    margin: 0 auto 30px;
  }
  
  .nvld-detail-info {
    text-align: center;
  }
  
  .nvld-title-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nvld-detail-meta {
    justify-content: center;
  }
  
  .nvld-detail-rating {
    justify-content: center;
  }
  
  .nvld-detail-action-btns {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nvld-detail-title {
    font-size: 28px;
  }
  
  .nvld-detail-badge {
    margin-top: 10px;
  }
  
  .nvld-detail-action-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .nvld-btn-primary,
  .nvld-btn-secondary {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    justify-content: center;
  }
  
  .nvld-detail-tabs {
    justify-content: space-between;
  }
  
  .nvld-tab {
    padding: 15px 10px;
    font-size: 14px;
  }
}

/* 播放页样式 */
.nvld-play-info-section {
  background: rgba(255, 202, 175, 0.9);
  margin-bottom: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 154, 141, 0.9);
  position: relative;
  overflow: hidden;
}

.nvld-play-info-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 170, 153, 0.9) 0%, transparent 70%);
  z-index: 0;
  animation: nvld-pulse-glow 4s infinite alternate;
}

.nvld-play-info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.nvld-play-title-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.nvld-play-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-right: 15px;
  margin-bottom: 5px;
  text-shadow: 0 0 15px rgba(255, 158, 125, 0.9);
}

.nvld-play-badge {
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(255, 161, 155, 0.9);
}

.nvld-play-meta {
  display: flex;
  flex-wrap: wrap;
}

.nvld-play-meta-item {
  margin-right: 20px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  color: rgba(38, 48, 53, 0.95);
  font-size: 14px;
}

.nvld-play-meta-item i {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.nvld-icon-play {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 161, 155, 0.9)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='5 3 19 12 5 21 5 3'%3E%3C/polygon%3E%3C/svg%3E");
}

.nvld-play-episodes-section {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 15px;
}

.nvld-play-source-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255, 161, 155, 0.9);
  margin-bottom: 20px;
}

.nvld-play-source-tabs::-webkit-scrollbar {
  display: none;
}

.nvld-play-source-tab {
  padding: 15px 20px;
  font-weight: bold;
  color: rgba(38, 48, 53, 0.95);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nvld-play-source-tab:hover {
  color: #fff;
}

.nvld-play-source-tab:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.nvld-play-source-active {
  color: #ffaa99;
}

.nvld-play-source-active:after {
  background: #ffaa99;
  box-shadow: 0 0 15px rgba(255, 158, 125, 0.9);
}

.nvld-play-episodes-box {
  display: none;
}

.nvld-play-episodes-box.active {
  display: block;
  animation: nvld-fade-in 0.3s ease;
}

.nvld-play-episodes-content {
  background: rgba(255, 161, 155, 0.9);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.nvld-play-episodes-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 170, 153, 0.9);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

.nvld-play-episodes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 161, 155, 0.9);
}

.nvld-play-episodes-title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.nvld-play-episodes-control {
  display: flex;
}

.nvld-play-control-btn {
  background: rgba(255, 154, 141, 0.9);
  border: 1px solid rgba(255, 158, 125, 0.9);
  color: rgba(38, 48, 53, 0.95);
  font-size: 12px;
  padding: 5px 10px;
  margin-left: 10px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nvld-play-control-btn svg {
  margin-right: 5px;
}

.nvld-play-control-btn:hover {
  background: rgba(255, 170, 153, 0.9);
  color: #fff;
  border-color: rgba(38, 48, 53, 0.95);
}

.nvld-play-episodes-list {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 170, 153, 0.9) rgba(255, 158, 125, 0.9);
}

.nvld-play-episodes-list::-webkit-scrollbar {
  width: 8px;
}

.nvld-play-episodes-list::-webkit-scrollbar-track {
  background: rgba(255, 154, 141, 0.9);
  border-radius: 4px;
}

.nvld-play-episodes-list::-webkit-scrollbar-thumb {
  background: rgba(255, 202, 175, 0.9);
  border-radius: 4px;
}

.nvld-play-episode-item {
  background: rgba(255, 170, 153, 0.9);
  border: 1px solid rgba(255, 154, 141, 0.9);
  border-radius: 5px;
  padding: 8px 15px;
  color: rgba(38, 48, 53, 0.95);
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 60px;
  text-align: center;
}

.nvld-play-episode-item:hover {
  background: rgba(255, 154, 141, 0.9);
  border-color: rgba(38, 48, 53, 0.95);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 158, 125, 0.9);
}

.nvld-play-episode-active {
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%), rgba(255, 202, 175, 0.9));
  border-color: rgba(38, 48, 53, 0.95);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 154, 141, 0.9);
  position: relative;
  overflow: hidden;
}

.nvld-play-episode-active:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffcaaf 0%, #ff9a8d 100%), transparent);
  animation: nvld-shine 2s infinite;
}

@keyframes nvld-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.nvld-play-episode-num {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .nvld-play-title {
    font-size: 22px;
  }
  
  .nvld-play-episodes-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nvld-play-episodes-control {
    margin-top: 10px;
  }
  
  .nvld-play-control-btn {
    margin-left: 0;
    margin-right: 10px;
  }
}

/* 背景图片懒加载样式 */
.nvld-detail-backdrop {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.nvld-detail-backdrop.nvld-backdrop-loaded {
    opacity: 1;
}

/* 详情页海报图特殊样式 */
.nvld-detail-poster-img {
  aspect-ratio: auto;
  height: 100%;
}

.nvld-detail-poster-img .nvld-loading-placeholder {
  background-color: #ff9e7d;
}
