@charset "UTF-8";
/* Reset CSS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Variables */
/* Base styles */
body {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-top: 66px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}

.header {
  background-color: #242424;
  padding: 18px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}
@media (max-width: 1024px) {
  .header .container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .header .container {
    padding: 0 15px;
  }
}
.header .logo img {
  height: 36px;
}
.header .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
@media (max-width: 768px) {
  .header .menu-toggle {
    display: flex;
  }
}
.header .menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}
.header .menu-toggle span:first-child {
  top: 0;
}
.header .menu-toggle span:nth-child(2) {
  top: 8px;
}
.header .menu-toggle span:last-child {
  top: 16px;
}
.header .menu-toggle.active span:first-child {
  top: 8px;
  transform: rotate(45deg);
}
.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .menu-toggle.active span:last-child {
  top: 8px;
  transform: rotate(-45deg);
}
.header .nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
  position: relative;
}
.header .nav-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.header .nav-menu a:nth-child(1) {
  animation-delay: 0.1s;
}
.header .nav-menu a:nth-child(2) {
  animation-delay: 0.2s;
}
.header .nav-menu a:nth-child(3) {
  animation-delay: 0.3s;
}
.header .nav-menu a:nth-child(4) {
  animation-delay: 0.4s;
}
.header .nav-menu a:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.header .nav-menu a.active {
  color: #2196f3;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
  border: 1px solid rgba(33, 150, 243, 0.3);
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.2);
}
.header .nav-menu a.hot {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.header .nav-menu a.hot:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.header .nav-menu a.recommend {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.header .nav-menu a.recommend:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.header .nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #2196f3;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.header .nav-menu a:hover::after {
  width: 80%;
}
.header .nav-menu a.active::after {
  width: 80%;
  background: #2196f3;
}
.header .nav-menu a.hot::after {
  background: #2196f3;
}
.header .nav-menu a.recommend::after {
  background: #2196f3;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.overlay.active {
  display: block;
}

.main-content {
  min-height: calc(100vh - 66px - 60px);
  padding: 20px 0;
}
.main-content .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .main-content .container {
    gap: 20px;
  }
}

.search-container {
  background-color: transparent;
  padding: 20px 0;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .search-container {
    padding: 15px 0;
    margin: 15px 0;
  }
}
.search-container .search-box {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
}
.search-container .search-box input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #242424;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.2s ease;
}
.search-container .search-box input::placeholder {
  color: #999999;
}
.search-container .search-box input:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}
.search-container .search-box input:hover {
  border-color: #555;
}
.search-container .search-box .search-btn {
  padding: 16px 24px;
  background-color: #2196f3;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.search-container .search-box .search-btn:hover {
  background-color: rgb(12.0615384615, 129.6615384615, 223.1384615385);
  transform: translateY(-1px);
}
.search-container .search-box .search-btn:active {
  transform: translateY(0);
}

.category-section {
  margin: 20px 0;
}
.category-section .category-tags {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
}
.category-section .category-tags::-webkit-scrollbar {
  display: none;
}
.category-section .category-tags a {
  color: #999999;
  text-decoration: none;
  padding: 6px 15px;
  border-radius: 20px;
  background-color: #242424;
  white-space: nowrap;
  font-size: 14px;
  transition: all 0.3s;
}
.category-section .category-tags a.active {
  background-color: #2196f3;
  color: #ffffff;
}
.category-section .category-tags a:hover {
  background-color: rgb(48.75, 48.75, 48.75);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: 18px;
  font-weight: normal;
}
.section-header .more {
  color: #999999;
  text-decoration: none;
  font-size: 14px;
}
.section-header .more:hover {
  color: #2196f3;
}

.hot-section {
  margin: 30px 0;
}
@media (max-width: 768px) {
  .hot-section {
    margin: 15px 0;
  }
}
.hot-section .hot-grid {
  display: grid;
  grid-template-columns: 65% 33%;
  gap: 2%;
}
@media (max-width: 1024px) {
  .hot-section .hot-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.hot-section .hot-grid .main-video .video-card.large {
  background-color: #242424;
  border-radius: 8px;
  overflow: hidden;
}
.hot-section .hot-grid .main-video .video-card.large .video-thumbnail {
  position: relative;
  aspect-ratio: 3/4;
}
.hot-section .hot-grid .main-video .video-card.large .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hot-section .hot-grid .main-video .video-card.large .video-info {
  padding: 12px;
}
.hot-section .hot-grid .main-video .video-card.large .video-info .video-title {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  min-width: 0;
}
@media (max-width: 768px) {
  .hot-section .hot-grid .main-video .video-card.large .video-info .video-title {
    font-size: 14px;
  }
}
.hot-section .hot-grid .main-video .video-card.large .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hot-section .hot-grid .main-video .video-card.large .video-info .video-meta .meta-left {
  display: flex;
  gap: 12px;
  color: #999999;
  font-size: 14px;
}
@media (max-width: 768px) {
  .hot-section .hot-grid .main-video .video-card.large .video-info .video-meta .meta-left {
    font-size: 12px;
    gap: 8px;
  }
}
.hot-section .hot-grid .main-video .video-card.large .video-info .video-meta .meta-right .tag.hot {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.hot-section .hot-grid .side-videos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .hot-section .hot-grid .side-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .hot-section .hot-grid .side-videos {
    gap: 10px;
  }
}
.hot-section .hot-grid .side-videos .video-card.small {
  display: flex;
  background-color: #242424;
  border-radius: 8px;
  overflow: hidden;
  height: 110px;
}
@media (max-width: 1024px) {
  .hot-section .hot-grid .side-videos .video-card.small {
    flex-direction: column;
    height: auto;
  }
}
.hot-section .hot-grid .side-videos .video-card.small .video-thumbnail {
  position: relative;
  width: 178px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .hot-section .hot-grid .side-videos .video-card.small .video-thumbnail {
    width: 100%;
    aspect-ratio: 3/4;
  }
}
.hot-section .hot-grid .side-videos .video-card.small .video-thumbnail img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .hot-section .hot-grid .side-videos .video-card.small .video-thumbnail img {
    height: 100%;
  }
}
.hot-section .hot-grid .side-videos .video-card.small .video-info {
  padding: 8px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hot-section .hot-grid .side-videos .video-card.small .video-info .video-title {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: wrap !important;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .hot-section .hot-grid .side-videos .video-card.small .video-info .video-title {
    font-size: 13px;
  }
}
.hot-section .hot-grid .side-videos .video-card.small .video-info .video-meta {
  color: #999999;
  font-size: 12px;
}
@media (max-width: 768px) {
  .hot-section .hot-grid .side-videos .video-card.small .video-info .video-meta {
    font-size: 11px;
  }
}
.hot-section .video-thumbnail .video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.hot-section .video-thumbnail .video-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  background: #2196f3;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}
.hot-section .video-thumbnail:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.ad-section {
  margin: 15px 0;
}
.category-videos {
  margin: 30px 0;
}
@media (max-width: 768px) {
  .category-videos {
    margin: 15px 0;
  }
}
.category-videos .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .category-videos .section-header {
    margin-bottom: 15px;
  }
}
.category-videos .category-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .category-videos .category-grid {
    gap: 20px;
  }
}
.category-videos .category-row .category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.category-videos .category-row .category-header .category-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .category-videos .category-row .category-header .category-title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .category-videos .category-row .category-header .category-title {
    font-size: 18px;
  }
}
.category-videos .category-row .category-header .view-more {
  color: #2196f3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid rgba(33, 150, 243, 0.3);
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.category-videos .category-row .category-header .view-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.category-videos .category-row .category-header .view-more:hover {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.2) 0%, rgba(33, 150, 243, 0.1) 100%);
  border-color: rgba(33, 150, 243, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}
.category-videos .category-row .category-header .view-more:hover::before {
  left: 100%;
}
.category-videos .category-row .category-header .view-more:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}
.category-videos .category-row .video-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
@media (max-width: 1200px) {
  .category-videos .category-row .video-row {
    grid-template-columns: repeat(5, 1fr);
  }
  .category-videos .category-row .video-row .video-card:nth-child(n+6) {
    display: none;
  }
}
@media (max-width: 1024px) {
  .category-videos .category-row .video-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .category-videos .category-row .video-row .video-card:nth-child(n+5) {
    display: none;
  }
}
@media (max-width: 768px) {
  .category-videos .category-row .video-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .category-videos .category-row .video-row .video-card:nth-child(n+5) {
    display: block;
  }
}
@media (max-width: 480px) {
  .category-videos .category-row .video-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .category-videos .category-row .video-row .video-card:nth-child(n+5) {
    display: block;
  }
}
.category-videos .video-card.small {
  width: 100%;
  min-width: 0;
}
.category-videos .video-card.small .video-thumbnail {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
.category-videos .video-card.small .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-videos .video-card.small .video-title {
  padding: 10px 8px 8px;
  font-size: 13px;
  line-height: 1.3;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .category-videos .video-card.small .video-title {
    font-size: 12px;
    padding: 8px 6px 6px;
  }
}
.category-videos .video-card.small .video-info {
  padding: 8px;
}
.category-videos .video-card.small .video-info .video-title {
  font-size: 14px;
  margin-bottom: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.category-videos .video-card.small .video-info .video-date {
  font-size: 11px;
  color: #999999;
}

.hot-recommend-section {
  margin: 40px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hot-recommend-section {
    margin: 30px 0;
  }
}
.hot-recommend-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .hot-recommend-section .section-header {
    margin-bottom: 20px;
  }
}
.hot-recommend-section .section-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .hot-recommend-section .section-header h2 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .hot-recommend-section .section-header h2 {
    font-size: 18px;
  }
}
.hot-recommend-section .hot-videos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  min-width: 0;
  grid-template-rows: auto;
}
.hot-recommend-section .hot-videos-grid .video-card.hot:nth-child(n+7) {
  display: none !important;
}
@media (max-width: 1200px) {
  .hot-recommend-section .hot-videos-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
  }
  .hot-recommend-section .hot-videos-grid .video-card.hot:nth-child(n+7) {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .hot-recommend-section .hot-videos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .hot-recommend-section .hot-videos-grid .video-card.hot:nth-child(n+7) {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .hot-recommend-section .hot-videos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .hot-recommend-section .hot-videos-grid .video-card.hot:nth-child(n+7) {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .hot-recommend-section .hot-videos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .hot-recommend-section .hot-videos-grid .video-card.hot:nth-child(n+7) {
    display: none !important;
  }
}
.hot-recommend-section .hot-videos-grid .video-card.hot {
  background-color: transparent;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.hot-recommend-section .hot-videos-grid .video-card.hot:hover {
  transform: translateY(-2px);
}
.hot-recommend-section .hot-videos-grid .video-card.hot:hover .video-thumbnail img {
  transform: scale(1.05);
}
.hot-recommend-section .hot-videos-grid .video-card.hot .video-thumbnail {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.hot-recommend-section .hot-videos-grid .video-card.hot .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hot-recommend-section .hot-videos-grid .video-card.hot .video-title {
  padding: 12px 10px 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-top: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hot-recommend-section .hot-videos-grid .video-card.hot .video-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.hot-recommend-section .hot-videos-grid .video-card.hot .video-title:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hot-recommend-section .hot-videos-grid .video-card.hot .video-title:hover::before {
  left: 100%;
}
@media (max-width: 768px) {
  .hot-recommend-section .hot-videos-grid .video-card.hot .video-title {
    font-size: 13px;
    padding: 10px 8px 8px;
    margin-top: 6px;
    border-radius: 6px;
  }
}
@media (max-width: 480px) {
  .hot-recommend-section .hot-videos-grid .video-card.hot .video-title {
    font-size: 12px;
    padding: 8px 6px 6px;
    margin-top: 5px;
    border-radius: 5px;
  }
}

.video-card {
  background-color: transparent;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.3s ease;
}
.video-card:hover {
  transform: translateY(-2px);
}
.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}
.video-card .video-thumbnail {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}
.video-card .video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 12px;
}
.video-card .video-info {
  padding: 10px;
}
.video-card .video-info .video-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .video-card .video-info .video-title {
    font-size: 13px;
    margin-bottom: 4px;
  }
}
.video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.video-card .video-info .video-meta .video-date {
  color: #999999;
}
.video-card .video-info .video-meta .tags {
  display: flex;
  gap: 5px;
}
.video-card .video-info .video-meta .tags .tag {
  padding: 1px 4px;
  border-radius: 2px;
}
.video-card .video-info .video-meta .tags .tag.hot {
  color: #ff4757;
  background-color: rgba(255, 71, 87, 0.1);
}
.video-card .video-info .video-meta .tags .tag.recommend {
  color: #ffa502;
  background-color: rgba(255, 165, 2, 0.1);
}

.page-header {
  text-align: center;
}
@media (max-width: 1024px) {
  .page-header {
    margin: 25px 0;
  }
}
@media (max-width: 768px) {
  .page-header {
    margin: 15px 0;
  }
}
.page-header h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
.page-header p {
  color: #999999;
  font-size: 14px;
}
@media (max-width: 768px) {
  .page-header p {
    font-size: 12px;
  }
}

.video-list-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin: 30px 0;
}
@media (max-width: 1200px) {
  .video-list-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin: 25px 0;
  }
}
@media (max-width: 1024px) {
  .video-list-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
  }
}
@media (max-width: 768px) {
  .video-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
  }
}
.video-list-grid .video-card {
  background-color: #242424;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-list-grid .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.video-list-grid .video-card .video-thumbnail {
  position: relative;
  padding-top: 56.25%;
}
.video-list-grid .video-card .video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-list-grid .video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.video-list-grid .video-card .video-info {
  padding: 12px;
}
@media (max-width: 1024px) {
  .video-list-grid .video-card .video-info {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .video-list-grid .video-card .video-info {
    padding: 8px;
  }
}
.video-list-grid .video-card .video-info .video-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .video-list-grid .video-card .video-info .video-title {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .video-list-grid .video-card .video-info .video-title {
    font-size: 12px;
    margin-bottom: 4px;
    -webkit-line-clamp: 1;
  }
}
.video-list-grid .video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-list-grid .video-card .video-info .video-meta .video-date {
  color: #999999;
  font-size: 12px;
}
@media (max-width: 1024px) {
  .video-list-grid .video-card .video-info .video-meta .video-date {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .video-list-grid .video-card .video-info .video-meta .video-date {
    font-size: 10px;
  }
}
.video-list-grid .video-card .video-info .video-meta .category-tag {
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
}
@media (max-width: 1024px) {
  .video-list-grid .video-card .video-info .video-meta .category-tag {
    padding: 2px 5px;
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .video-list-grid .video-card .video-info .video-meta .category-tag {
    padding: 1px 4px;
    font-size: 10px;
  }
}
.video-list-grid .video-card .video-info .video-meta .category-tag.entertainment {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
}
.video-list-grid .video-card .video-info .video-meta .category-tag.gaming {
  background: rgba(155, 89, 182, 0.1);
  color: #9b59b6;
}
.video-list-grid .video-card .video-info .video-meta .category-tag.music {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}
.video-list-grid .video-card .video-info .video-meta .category-tag.sports {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}
.video-list-grid .video-card .video-info .video-meta .category-tag.tech {
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}

.friend-links {
  background-color: #242424;
  padding: 30px 0;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .friend-links {
    padding: 20px 0;
    margin-top: 20px;
  }
}
.friend-links .section-header {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .friend-links .section-header {
    margin-bottom: 15px;
  }
}
.friend-links .section-header h2 {
  font-size: 18px;
  font-weight: normal;
  color: #ffffff;
}
.friend-links .links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 768px) {
  .friend-links .links-grid {
    gap: 10px;
  }
}
.friend-links .links-grid .link-item {
  color: #999999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  position: relative;
  padding-right: 15px;
}
.friend-links .links-grid .link-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #333;
}
.friend-links .links-grid .link-item:hover {
  color: #2196f3;
}
@media (max-width: 768px) {
  .friend-links .links-grid .link-item {
    font-size: 13px;
    padding-right: 10px;
  }
}

.video-player video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  background: black;
}

.iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
}
.iframeBox .iframe {
  width: 100%;
  height: 100%;
}

.pagination-container {
  margin: 30px auto 20px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: #2196f3;
  font-weight: 600;
  color: #ffffff;
  border-color: #2196f3;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #242424;
  text-align: center;
  color: #999999;
  border: 1px solid #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.pagination-container ul li:hover:not(.active) {
  background-color: rgba(33, 150, 243, 0.1);
  border-color: #2196f3;
  color: #2196f3;
  transform: translateY(-1px);
}
.pagination-container ul li.active {
  background: #2196f3;
  font-weight: 600;
  color: #ffffff;
  border-color: #2196f3;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: inherit;
}
.pagination-container ul li a.active {
  background: #2196f3;
  font-weight: 600;
  color: #ffffff;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}
.pagination-container ul li:disabled, .pagination-container ul li.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #999999;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background-color: #242424;
  border-color: #333;
  color: #999999;
  transform: none;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 20px auto 15px;
  }
  .pagination-container ul {
    gap: 8px;
  }
  .pagination-container ul li {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .pagination-container ul li a {
    width: 36px;
    height: 36px;
  }
  .pagination-container ul li.page-options {
    width: 60px;
  }
  .pagination-container ul li.page-options a {
    width: 60px;
  }
}

.footer {
  background-color: #242424;
  padding: 20px 0;
  height: 60px;
}
.footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
.footer .container .copyright {
  color: #999999;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hot-section .hot-layout {
    grid-template-columns: 1fr;
  }
  .hot-section .hot-layout .sub-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .hot-section .hot-layout .sub-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .hot-section .hot-layout .sub-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .header .menu-toggle {
    display: flex;
  }
  .header .nav-menu {
    position: fixed;
    top: 66px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 66px);
    background: linear-gradient(135deg, rgba(36, 36, 36, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .nav-menu.active {
    left: 0;
    transform: translateX(0);
  }
  .header .nav-menu::before {
    content: "导航菜单";
    display: block;
    padding: 25px 30px 20px;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 20px 20px;
    text-align: center;
    letter-spacing: 1px;
    width: calc(100% - 40px);
  }
  .header .nav-menu a {
    padding: 20px 30px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 12px;
    margin: 0 20px 15px;
    width: calc(100% - 40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
    transform: translateX(-40px);
  }
  .header .nav-menu a:nth-child(1) {
    animation-delay: 0.15s;
  }
  .header .nav-menu a:nth-child(2) {
    animation-delay: 0.25s;
  }
  .header .nav-menu a:nth-child(3) {
    animation-delay: 0.35s;
  }
  .header .nav-menu a:nth-child(4) {
    animation-delay: 0.45s;
  }
  .header .nav-menu a:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  .header .nav-menu a:last-child {
    margin-bottom: 0;
  }
  .header .nav-menu a.active {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.12) 0%, rgba(33, 150, 243, 0.06) 100%);
    border-color: rgba(33, 150, 243, 0.3);
    box-shadow: 0 0 25px rgba(33, 150, 243, 0.25);
    color: #2196f3;
  }
  .header .nav-menu a.hot {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.1);
  }
  .header .nav-menu a.recommend {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.1);
  }
  .header .nav-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #2196f3, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .header .nav-menu a:hover::before {
    opacity: 1;
  }
  .header .nav-menu a.active::before {
    opacity: 1;
    background: #2196f3;
  }
  .nav-menu {
    gap: 10px;
  }
  .hot-section .video-grid {
    grid-template-columns: 1fr;
  }
  .hot-section .hot-grid .small-cards .video-card.small {
    flex-direction: column;
  }
  .hot-section .hot-grid .small-cards .video-card.small .video-thumbnail {
    width: 100%;
    height: auto;
    padding-top: 56.25%;
  }
  .video-card.horizontal {
    flex-direction: column;
  }
  .video-card.horizontal .video-thumbnail {
    width: 100% !important;
    padding-top: 56.25%;
  }
}
@media (max-width: 480px) {
  .search-box {
    flex-direction: column;
  }
  .search-box .search-btn {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .hot-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .hot-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .hot-section .video-grid {
    grid-template-columns: 1fr;
  }
}
.search-info {
  margin: 20px 0;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .search-info {
    margin: 15px 0;
    padding: 12px 16px;
  }
}
@media (max-width: 480px) {
  .search-info {
    margin: 12px 0;
    padding: 10px 14px;
  }
}
.search-info .result-stats {
  font-size: 15px;
  color: #999999;
  font-weight: 400;
}
@media (max-width: 768px) {
  .search-info .result-stats {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .search-info .result-stats {
    font-size: 13px;
  }
}
.search-info .result-stats .search-keyword {
  color: #2196f3;
  font-weight: 600;
  background-color: rgba(33, 150, 243, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 3px;
}
@media (max-width: 768px) {
  .search-info .result-stats .search-keyword {
    padding: 1px 5px;
  }
}
@media (max-width: 480px) {
  .search-info .result-stats .search-keyword {
    padding: 1px 4px;
  }
}

.search-results {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin: 20px 0;
}
@media (max-width: 1200px) {
  .search-results {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
}
@media (max-width: 1024px) {
  .search-results {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .search-results {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
  }
}
.search-results .video-card {
  background: #242424;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.search-results .video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.search-results .video-card .video-thumbnail {
  position: relative;
  padding-top: 56.25%;
}
.search-results .video-card .video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-results .video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.search-results .video-card .video-info {
  padding: 12px;
}
@media (max-width: 768px) {
  .search-results .video-card .video-info {
    padding: 8px;
  }
}
.search-results .video-card .video-info .video-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .search-results .video-card .video-info .video-title {
    font-size: 13px;
    margin-bottom: 4px;
  }
}
.search-results .video-card .video-info .video-meta {
  display: flex;
  gap: 10px;
  color: #999999;
  font-size: 12px;
}
@media (max-width: 768px) {
  .search-results .video-card .video-info .video-meta {
    font-size: 11px;
    gap: 8px;
  }
}
.search-results .video-card .video-info .video-desc {
  display: none;
}

.video-player-section {
  margin: 20px 0;
}
@media (max-width: 768px) {
  .video-player-section {
    margin: 15px 0;
  }
}
.video-player-section .player-wrapper {
  width: 100%;
  background: #242424;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.video-player-section .player-wrapper video {
  width: 100%;
  height: 100%;
}
.video-player-section .video-info {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .video-player-section .video-info {
    margin-top: 10px;
  }
}
.video-player-section .video-info .video-title {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .video-player-section .video-info .video-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.video-player-section .video-info .video-meta {
  color: #999999;
  font-size: 14px;
}
@media (max-width: 768px) {
  .video-player-section .video-info .video-meta {
    font-size: 12px;
  }
}

.video-info {
  margin: 25px 0;
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .video-info {
    margin: 20px 0;
    padding: 18px 20px;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .video-info {
    margin: 15px 0;
    padding: 15px 18px;
    border-radius: 10px;
  }
}
.video-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.video-info .video-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .video-info .video-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .video-info .video-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.video-info .video-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .video-info .video-meta {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .video-info .video-meta {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.video-info .video-meta .video-date {
  color: #999999;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.video-info .video-meta .video-date:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .video-info .video-meta .video-date {
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 6px;
  }
}
@media (max-width: 480px) {
  .video-info .video-meta .video-date {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 5px;
  }
}

.related-section {
  margin: 30px 0;
}
@media (max-width: 768px) {
  .related-section {
    margin: 20px 0;
  }
}
.related-section .section-header {
  margin-bottom: 15px;
}
.related-section .section-header h2 {
  font-size: 18px;
  font-weight: normal;
}
.related-section .related-videos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .related-section .related-videos {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
}
@media (max-width: 1024px) {
  .related-section .related-videos {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .related-section .related-videos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.related-section .related-videos .video-card {
  background: #242424;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.related-section .related-videos .video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.related-section .related-videos .video-card .video-thumbnail {
  position: relative;
  padding-top: 56.25%;
}
.related-section .related-videos .video-card .video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-section .related-videos .video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.related-section .related-videos .video-card .video-info {
  padding: 10px;
}
@media (max-width: 768px) {
  .related-section .related-videos .video-card .video-info {
    padding: 8px;
  }
}
.related-section .related-videos .video-card .video-info .video-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .related-section .related-videos .video-card .video-info .video-title {
    font-size: 13px;
    margin-bottom: 4px;
  }
}
.related-section .related-videos .video-card .video-info .video-meta {
  color: #999999;
  font-size: 12px;
}
@media (max-width: 768px) {
  .related-section .related-videos .video-card .video-info .video-meta {
    font-size: 11px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (max-width: 480px) {
  .header .nav-menu {
    width: 100vw;
  }
  .header .nav-menu::before {
    margin: 0 15px 20px;
    width: calc(100% - 30px);
    padding: 20px 20px 15px;
    font-size: 16px;
  }
  .header .nav-menu a {
    margin: 0 15px 12px;
    width: calc(100% - 30px);
    padding: 18px 20px;
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .header .nav-menu::before {
    margin: 0 10px 15px;
    width: calc(100% - 20px);
    padding: 18px 15px 12px;
    font-size: 15px;
  }
  .header .nav-menu a {
    margin: 0 10px 10px;
    width: calc(100% - 20px);
    padding: 16px 18px;
    font-size: 15px;
  }
}
.friend-links {
  padding: 30px 0;
  margin-top: 40px;
}
.friend-links .section-header {
  text-align: center;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.friend-links .section-header h2 {
  font-size: 18px;
  font-weight: 500;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}
.friend-links .links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}
.friend-links .links-grid .link-item {
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #999999;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.friend-links .links-grid .link-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.1), transparent);
  transition: left 0.5s ease;
}
.friend-links .links-grid .link-item:hover {
  color: #2196f3;
  border-color: rgba(33, 150, 243, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  transform: translateY(-1px);
}
.friend-links .links-grid .link-item:hover::before {
  left: 100%;
}
.friend-links .links-grid .link-item:active {
  transform: translateY(0);
}

.hot-titles-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .hot-titles-section {
    margin-top: 30px;
    padding-top: 25px;
  }
}
.hot-titles-section .section-header {
  margin-bottom: 20px;
}
.hot-titles-section .section-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .hot-titles-section .section-header h3 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .hot-titles-section .section-header h3 {
    font-size: 16px;
  }
}
.hot-titles-section .hot-titles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 1024px) {
  .hot-titles-section .hot-titles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .hot-titles-section .hot-titles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .hot-titles-section .hot-titles-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.hot-titles-section .hot-titles-grid .title-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hot-titles-section .hot-titles-grid .title-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.hot-titles-section .hot-titles-grid .title-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.hot-titles-section .hot-titles-grid .title-item:hover::before {
  left: 100%;
}
.hot-titles-section .hot-titles-grid .title-item:hover .hot-badge {
  background: linear-gradient(135deg, #ff4757, #ff3742);
  transform: scale(1.1);
}
.hot-titles-section .hot-titles-grid .title-item .title-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 15px;
}
@media (max-width: 768px) {
  .hot-titles-section .hot-titles-grid .title-item .title-text {
    font-size: 13px;
    margin-right: 12px;
  }
}
@media (max-width: 480px) {
  .hot-titles-section .hot-titles-grid .title-item .title-text {
    font-size: 12px;
    margin-right: 10px;
  }
}
.hot-titles-section .hot-titles-grid .title-item .hot-badge {
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hot-titles-section .hot-titles-grid .title-item .hot-badge {
    font-size: 9px;
    padding: 3px 6px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .hot-titles-section .hot-titles-grid .title-item .hot-badge {
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 8px;
  }
}

.episode-section {
  margin: 25px 0;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .episode-section {
    margin: 20px 0;
    padding: 15px 0;
  }
}
.episode-section .section-header {
  margin-bottom: 15px;
}
.episode-section .section-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 768px) {
  .episode-section .section-header h3 {
    font-size: 16px;
  }
}
.episode-section .episode-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 768px) {
  .episode-section .episode-list {
    gap: 8px;
  }
}
.episode-section .episode-list .episode-btn {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
}
@media (max-width: 768px) {
  .episode-section .episode-list .episode-btn {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 5px;
  }
}
@media (max-width: 480px) {
  .episode-section .episode-list .episode-btn {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
  }
}
.episode-section .episode-list .episode-btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.episode-section .episode-list .episode-btn.active {
  background-color: #2196f3;
  border-color: #2196f3;
  color: white;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}
.episode-section .episode-list .episode-btn.active:hover {
  background-color: rgb(12.8461538462, 138.0961538462, 237.6538461538);
  transform: translateY(-1px);
}
.episode-section .episode-list .episode-btn:active {
  transform: translateY(0);
}

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