@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f5f5f5;
  color: #333333;
  line-height: 1.5;
  padding-top: 80px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar .logo {
  display: flex;
  align-items: center;
  position: relative;
  animation: slideInRight 0.6s ease forwards;
}
.navbar .logo::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 25px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}
.navbar .logo img {
  height: 42px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}
.navbar .logo img:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 4px 16px rgba(33, 150, 243, 0.2));
}
.navbar .nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
  background: rgba(0, 0, 0, 0.02);
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: scaleIn 0.6s ease forwards;
}
.navbar .nav-links a {
  color: #333333;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.navbar .nav-links a:hover {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
  color: #2196f3;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}
.navbar .nav-links a.active {
  background: linear-gradient(135deg, #2196f3 0%, rgb(71.7076923077, 168.3076923077, 245.0923076923) 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.25);
  font-weight: 600;
}
.navbar .nav-links a.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.navbar .nav-links a.active:hover::before {
  opacity: 1;
}
.navbar .nav-links a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.navbar .nav-links a:active::after {
  width: 200px;
  height: 200px;
}
.navbar .hamburger {
  display: none;
  width: 32px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  padding: 6px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.navbar .hamburger:hover {
  background: rgba(33, 150, 243, 0.08);
  border-color: rgba(33, 150, 243, 0.2);
  transform: scale(1.05);
}
.navbar .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2196f3 0%, rgb(105.5769230769, 184.3269230769, 246.9230769231) 100%);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.navbar .hamburger:hover span:nth-child(1) {
  transform: translateY(2px) rotate(8deg);
  background: linear-gradient(90deg, rgb(81.3846153846, 172.8846153846, 245.6153846154) 0%, #2196f3 100%);
}
.navbar .hamburger:hover span:nth-child(2) {
  transform: scaleX(0.7);
  background: linear-gradient(90deg, #2196f3 0%, rgb(129.7692307692, 195.7692307692, 248.2307692308) 100%);
}
.navbar .hamburger:hover span:nth-child(3) {
  transform: translateY(-2px) rotate(-8deg);
  background: linear-gradient(90deg, rgb(105.5769230769, 184.3269230769, 246.9230769231) 0%, #2196f3 100%);
}

.nav-menu {
  margin: 0 20px;
}
.nav-menu .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu .nav-list .nav-item {
  position: relative;
  margin: 0 5px;
}
.nav-menu .nav-list .nav-item a {
  display: block;
  padding: 0 15px;
  line-height: 60px;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}
.nav-menu .nav-list .nav-item a:hover {
  color: #2196f3;
}
.nav-menu .nav-list .nav-item.active a {
  color: #2196f3;
}
.nav-menu .nav-list .nav-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 160px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 5px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
.nav-menu .nav-list .nav-item .sub-menu li {
  list-style: none;
}
.nav-menu .nav-list .nav-item .sub-menu li a {
  padding: 8px 15px;
  line-height: 1.5;
  font-size: 14px;
}
.nav-menu .nav-list .nav-item .sub-menu li a:hover {
  background-color: #f8f9fa;
}
.nav-menu .nav-list .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333333;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}



.search-section {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(33, 150, 243, 0.02) 100%);
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.search-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.search-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}
.search-section .search-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.search-section .search-header {
  margin-bottom: 40px;
}
.search-section .search-header .search-title {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.search-section .search-header .search-title i {
  color: #2196f3;
  font-size: 32px;
  animation: pulse 2s ease-in-out infinite;
}
.search-section .search-header .search-subtitle {
  font-size: 16px;
  color: #6c757d;
  font-weight: 400;
}
.search-section .search-box {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  justify-content: center;
  align-items: center;
}
.search-section .search-box .search-input-wrapper {
  position: relative;
  flex: 1;
  max-width: 500px;
}
.search-section .search-box .search-input-wrapper .search-input {
  width: 100%;
  height: 56px;
  padding: 0 24px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.search-section .search-box .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: #2196f3;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1), 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.search-section .search-box .search-input-wrapper .search-input::placeholder {
  color: #6c757d;
  font-weight: 400;
}
.search-section .search-box .search-input-wrapper .search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 12px;
  margin-top: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.search-section .search-box .search-input-wrapper .search-suggestions .suggestion-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #6c757d;
}
.search-section .search-box .search-input-wrapper .search-suggestions .suggestion-item:hover {
  background: rgba(33, 150, 243, 0.08);
  color: #2196f3;
}
.search-section .search-box .search-input-wrapper .search-suggestions .suggestion-item i {
  font-size: 14px;
}
.search-section .search-box .search-input-wrapper .search-suggestions .suggestion-item span {
  font-size: 14px;
  font-weight: 500;
}
.search-section .search-box .search-input-wrapper:focus-within .search-suggestions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search-section .search-box .search-btn {
  height: 56px;
  padding: 0 32px;
  border: none;
  border-radius: 28px;
  background: linear-gradient(135deg, #2196f3 0%, rgb(91.0615384615, 177.4615384615, 246.1384615385) 100%);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.25);
  white-space: nowrap;
}
.search-section .search-box .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(33, 150, 243, 0.35);
  background: linear-gradient(135deg, rgb(57.1923076923, 161.4423076923, 244.3076923077) 0%, #2196f3 100%);
}
.search-section .search-box .search-btn:active {
  transform: translateY(0);
}
.search-section .search-box .search-btn i {
  font-size: 16px;
}
.search-section .search-box .search-btn span {
  font-size: 16px;
}
.search-section .search-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.search-section .search-tags .tag-label {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}
.search-section .search-tags .search-tag {
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}
.search-section .search-tags .search-tag:hover {
  background: linear-gradient(135deg, #2196f3 0%, rgb(71.7076923077, 168.3076923077, 245.0923076923) 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.25);
  border-color: rgba(33, 150, 243, 0.3);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.hot-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
}
.hot-section .section-header {
  margin-bottom: 40px;
}
.hot-section .section-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.hot-section .section-header .header-content .title-section {
  flex: 1;
}
.hot-section .section-header .header-content .title-section .section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}
.hot-section .section-header .header-content .title-section .section-title i {
  color: #2196f3;
  font-size: 24px;
  animation: pulse 2s ease-in-out infinite;
}
.hot-section .section-header .header-content .title-section .section-subtitle {
  font-size: 16px;
  color: #6c757d;
  font-weight: 400;
}
.hot-section .section-header .header-content .header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hot-section .section-header .header-content .header-actions .filter-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}
.hot-section .section-header .header-content .header-actions .filter-tabs .filter-tab {
  padding: 8px 16px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hot-section .section-header .header-content .header-actions .filter-tabs .filter-tab:hover {
  color: #2196f3;
  background: rgba(33, 150, 243, 0.08);
}
.hot-section .section-header .header-content .header-actions .filter-tabs .filter-tab.active {
  background: linear-gradient(135deg, #2196f3 0%, rgb(71.7076923077, 168.3076923077, 245.0923076923) 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.25);
}
.hot-section .section-header .header-content .header-actions .more-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6c757d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.hot-section .section-header .header-content .header-actions .more-link:hover {
  color: #2196f3;
  background: rgba(33, 150, 243, 0.08);
  border-color: rgba(33, 150, 243, 0.2);
  transform: translateY(-1px);
}
.hot-section .section-header .header-content .header-actions .more-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.hot-section .section-header .header-content .header-actions .more-link:hover i {
  transform: translateX(3px);
}
.hot-section .hot-content .featured-area {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hot-section .hot-content .featured-area {
    grid-template-columns: 7fr 3fr;
    gap: 30px;
    align-items: stretch;
  }
}
@media (max-width: 1023px) {
  .hot-section .hot-content .featured-area {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.hot-section .hot-content .featured-area .featured-main .featured-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .hot-section .hot-content .featured-area .featured-main .featured-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
.hot-section .hot-content .featured-area .featured-main .featured-card:hover {
  transform: translateY(-5px);
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb .video-overlay .overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb .video-overlay .overlay-content .play-btn-large {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb .video-overlay .overlay-content .play-btn-large:hover {
  transform: scale(1.1);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb .video-overlay .overlay-content .play-btn-large i {
  font-size: 24px;
  color: #2196f3;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb .video-overlay .overlay-content .video-stats {
  display: flex;
  gap: 12px;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb .video-overlay .overlay-content .video-stats span {
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb .video-overlay .featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2196f3 0%, rgb(105.5769230769, 184.3269230769, 246.9230769231) 100%);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb .video-overlay .featured-badge i {
  font-size: 10px;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-thumb:hover img {
  transform: scale(1.05);
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-info {
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .hot-section .hot-content .featured-area .featured-main .featured-card .video-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-info .video-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 10px;
  line-height: 1.4;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  word-break: break-all !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-info .video-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-info .video-meta span {
  font-size: 14px;
  color: #6c757d;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-info .video-meta span.category {
  color: #2196f3;
  font-weight: 500;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-info .video-tags {
  display: flex;
  gap: 8px;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-info .video-tags .tag {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}
.hot-section .hot-content .featured-area .featured-main .featured-card .video-info .video-tags .tag.hot {
  background: linear-gradient(135deg, #2196f3 0%, rgb(81.3846153846, 172.8846153846, 245.6153846154) 100%);
  color: #ffffff;
}
.hot-section .hot-content .featured-area .featured-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .hot-section .hot-content .featured-area .featured-sidebar {
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  .hot-section .hot-content .featured-area .featured-sidebar {
    flex-direction: row;
    gap: 15px;
    height: auto;
  }
  .hot-section .hot-content .featured-area .featured-sidebar .side-card {
    flex: 1;
    min-height: 200px;
  }
}
@media (max-width: 480px) {
  .hot-section .hot-content .featured-area .featured-sidebar {
    flex-direction: column;
    gap: 12px;
  }
  .hot-section .hot-content .featured-area .featured-sidebar .side-card {
    min-height: 180px;
  }
}
.hot-section .hot-content .featured-area .featured-sidebar .side-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .hot-section .hot-content .featured-area .featured-sidebar .side-card {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}
.hot-section .hot-content .featured-area .featured-sidebar .side-card:hover {
  transform: translateY(-3px);
}
.hot-section .hot-content .featured-area .featured-sidebar .side-card .video-thumb {
  position: relative;
  aspect-ratio: 16/9;
}
.hot-section .hot-content .featured-area .featured-sidebar .side-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hot-section .hot-content .featured-area .featured-sidebar .side-card .video-thumb .video-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.hot-section .hot-content .featured-area .featured-sidebar .side-card .video-thumb .video-overlay .duration {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}
.hot-section .hot-content .featured-area .featured-sidebar .side-card .video-thumb:hover img {
  transform: scale(1.05);
}
.hot-section .hot-content .featured-area .featured-sidebar .side-card .video-info {
  padding: 14px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .hot-section .hot-content .featured-area .featured-sidebar .side-card .video-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.hot-section .hot-content .featured-area .featured-sidebar .side-card .video-info .video-title {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 8px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  word-break: break-all;
}
.hot-section .hot-content .featured-area .featured-sidebar .side-card .video-info .video-meta .views {
  font-size: 12px;
  color: #6c757d;
}
.hot-section .hot-content .recommend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card:hover {
  transform: translateY(-5px);
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-thumb .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 12px;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-thumb .video-overlay .duration {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-thumb .video-overlay .play-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-thumb .video-overlay .play-btn:hover {
  transform: scale(1.1);
  background: #ffffff;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-thumb .video-overlay .play-btn i {
  font-size: 14px;
  color: #2196f3;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-thumb .rank-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #2196f3 0%, rgb(105.5769230769, 184.3269230769, 246.9230769231) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-thumb:hover img {
  transform: scale(1.05);
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-info {
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-info .video-title {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 8px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  word-break: break-all;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-info .video-meta span {
  font-size: 12px;
  color: #6c757d;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-info .video-tags {
  display: flex;
  gap: 6px;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-info .video-tags .tag {
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}
.hot-section .hot-content .recommend-grid .grid-item .video-card .video-info .video-tags .tag.hot {
  background: linear-gradient(135deg, #2196f3 0%, rgb(81.3846153846, 172.8846153846, 245.6153846154) 100%);
  color: #ffffff;
}

.video-container {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
}
.video-container .video-wrapper .video-player-section {
  margin-bottom: 30px;
}
.video-container .video-wrapper .video-player-section .player-wrapper {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.video-container .video-wrapper .video-player-section .player-wrapper .video-player {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.video-container .video-wrapper .video-player-section .player-wrapper .video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-title {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2196f3 0%, rgb(105.5769230769, 184.3269230769, 246.9230769231) 100%);
  border-radius: 2px;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 16px 20px;
  background: rgba(33, 150, 243, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(33, 150, 243, 0.1);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta .upload-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta .upload-time i {
  color: #2196f3;
  font-size: 16px;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta .video-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta .video-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta .video-stats .stat-item i {
  color: #2196f3;
  font-size: 14px;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta .video-stats .stat-item.views i {
  color: #ff6b6b;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta .video-stats .stat-item.likes i {
  color: #ff8e8e;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta .video-stats .stat-item.comments i {
  color: #74b9ff;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta .video-category {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #2196f3 0%, rgb(81.3846153846, 172.8846153846, 245.6153846154) 100%);
  color: #ffffff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta .video-category i {
  font-size: 10px;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-desc {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-desc p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin: 0;
  font-weight: 400;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-tags .tag {
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
  color: #2196f3;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(33, 150, 243, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-tags .tag:hover {
  background: linear-gradient(135deg, #2196f3 0%, rgb(71.7076923077, 168.3076923077, 245.0923076923) 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.25);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-tags .tag.hot {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color: #ffffff;
  border-color: #ff6b6b;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-tags .tag.new {
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  color: #ffffff;
  border-color: #00b894;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-tags .tag.featured {
  background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
  color: #ffffff;
  border-color: #fdcb6e;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-actions .action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-actions .action-btn.like-btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color: #ffffff;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-actions .action-btn.like-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-actions .action-btn.like-btn.liked {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-actions .action-btn.share-btn {
  background: linear-gradient(135deg, #2196f3 0%, rgb(81.3846153846, 172.8846153846, 245.6153846154) 100%);
  color: #ffffff;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-actions .action-btn.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-actions .action-btn.download-btn {
  background: rgba(0, 0, 0, 0.05);
  color: #333333;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-actions .action-btn.download-btn:hover {
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
  border-color: rgba(33, 150, 243, 0.2);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-actions .action-btn i {
  font-size: 14px;
}

.search-result-section {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
}
.search-result-section .search-header {
  margin-bottom: 40px;
}
.search-result-section .search-header .search-info {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.search-result-section .search-header .search-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2196f3 0%, rgb(105.5769230769, 184.3269230769, 246.9230769231) 100%);
}
.search-result-section .search-header .search-info .search-title {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-result-section .search-header .search-info .search-title i {
  color: #2196f3;
  font-size: 24px;
}
.search-result-section .search-header .search-info .search-summary {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.5;
}
.search-result-section .search-header .search-info .search-summary .search-keyword {
  color: #2196f3;
  font-weight: 600;
  background: rgba(33, 150, 243, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(33, 150, 243, 0.2);
}
.search-result-section .video-list-grid {
  margin-bottom: 40px;
}
.search-result-section .pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.search-result-section .pagination-container ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-result-section .pagination-container ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-result-section .pagination-container ul li a:hover {
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
  border-color: rgba(33, 150, 243, 0.2);
  transform: translateY(-1px);
}
.search-result-section .pagination-container ul li a.active {
  background: linear-gradient(135deg, #2196f3 0%, rgb(81.3846153846, 172.8846153846, 245.6153846154) 100%);
  color: #ffffff;
  border-color: #2196f3;
}
.search-result-section .pagination-container ul li.page-options a {
  width: auto;
  min-width: 80px;
  padding: 0 16px;
  font-size: 13px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .search-result-section .search-header .search-info {
    padding: 20px;
  }
  .search-result-section .search-header .search-info .search-title {
    font-size: 24px;
  }
  .search-result-section .search-header .search-info .search-title i {
    font-size: 20px;
  }
  .search-result-section .pagination-container ul {
    gap: 6px;
  }
  .search-result-section .pagination-container ul li a {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .search-result-section .pagination-container ul.page-options a {
    padding: 0 12px;
    font-size: 12px;
    min-width: 70px;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .search-result-section .search-header .search-info {
    padding: 16px;
  }
  .search-result-section .search-header .search-info .search-title {
    font-size: 20px;
  }
  .search-result-section .search-header .search-info .search-title i {
    font-size: 18px;
  }
  .search-result-section .search-header .search-info .search-summary {
    font-size: 14px;
  }
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}
.section-title .title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.section-title .title-wrapper h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title .title-wrapper h2 i {
  font-size: 18px;
  color: #2196f3;
}
.section-title .title-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.section-title .title-actions .more-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.section-title .title-actions .more-link span {
  font-size: 14px;
}
.section-title .title-actions .more-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.section-title .title-actions .more-link:hover {
  color: #2196f3;
}
.section-title .title-actions .more-link:hover i {
  transform: translateX(3px);
}

@media screen and (max-width: 768px) {
  .section-title {
    gap: 10px;
    padding: 0 10px;
  }
  .section-title .title-wrapper h2 {
    font-size: 18px;
  }
  .section-title .title-actions .more-link {
    font-size: 13px;
  }
  .section-title .title-actions .more-link span {
    font-size: 13px;
  }
  .section-title .title-actions .more-link i {
    font-size: 11px;
  }
}
@media screen and (max-width: 480px) {
  .section-title {
    gap: 8px;
    padding: 0 8px;
  }
  .section-title .title-wrapper h2 {
    font-size: 16px;
  }
  .section-title .title-actions .more-link {
    font-size: 12px;
  }
  .section-title .title-actions .more-link span {
    font-size: 12px;
  }
  .section-title .title-actions .more-link i {
    font-size: 10px;
  }
}
.video-list {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.video-list .recommend-grid {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.video-list .recommend-grid .recommend-card {
  width: calc(50% - 10px);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.video-list .recommend-grid .recommend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.video-list .recommend-grid .recommend-card .video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  aspect-ratio: 16/9;
}
.video-list .recommend-grid .recommend-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.video-list .recommend-grid .recommend-card .video-thumb .video-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  align-items: center;
}
.video-list .recommend-grid .recommend-card .video-thumb .video-overlay .duration {
  background-color: rgba(0, 0, 0, 0.8);
  color: #333333;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.video-list .recommend-grid .recommend-card .video-info {
  padding: 12px;
  background: #ffffff;
}
.video-list .recommend-grid .recommend-card .video-info .video-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333333;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-list .recommend-grid .recommend-card .video-info .video-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.video-list .recommend-grid .recommend-card .video-info .video-tags .tag {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  background-color: #f8f9fa;
  color: #333333;
  transition: all 0.3s;
}
.video-list .recommend-grid .recommend-card .video-info .video-tags .tag.hot {
  background-color: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}
.video-list .recommend-grid .recommend-card .video-info .video-tags .tag:hover {
  background-color: #2196f3;
  color: #ffffff;
}
.video-list .recommend-grid .recommend-card:hover .video-thumb img {
  transform: scale(1.05);
}
.video-list .hot-list {
  width: 350px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.video-list .hot-list .list-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
  border-radius: 12px;
  color: #333333;
}
.video-list .hot-list .hot-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
  margin-bottom: 12px;
}
.video-list .hot-list .hot-card:last-child {
  margin-bottom: 0;
}
.video-list .hot-list .hot-card:hover {
  background-color: #f8f9fa;
  transform: translateX(5px);
}
.video-list .hot-list .hot-card:hover .video-title {
  color: #2196f3;
}
.video-list .hot-list .hot-card .video-thumb {
  width: 120px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.video-list .hot-list .hot-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-list .hot-list .hot-card .video-thumb .video-overlay {
  position: absolute;
  bottom: 6px;
  right: 6px;
}
.video-list .hot-list .hot-card .video-thumb .video-overlay .duration {
  background-color: rgba(0, 0, 0, 0.8);
  color: #333333;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 11px;
}
.video-list .hot-list .hot-card .video-thumb .rank-num {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 24px;
  height: 24px;
  background-color: rgba(33, 150, 243, 0.9);
  color: #333333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.video-list .hot-list .hot-card .video-info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}
.video-list .hot-list .hot-card .video-info .video-title {
  font-size: 15px;
  line-height: 1.4;
  color: #333333;
  transition: color 0.3s;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  max-height: 2.8em;
}

.banner-ad-section {
  margin: 10px 0;
}
.banner-ad-section .banner-ad {
  width: 100%;
}

.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: white;
  border-color: #2196f3;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  text-align: center;
  color: #333333;
  border: 1px solid #e9ecef;
  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: white;
  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: white;
}
.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: #6c757d;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background-color: #ffffff;
  border-color: #e9ecef;
  color: #6c757d;
  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: #ffffff;
  padding: 40px 0;
  margin-top: 60px;
  border-top: 1px solid #e9ecef;
}
.footer .footer-content {
  text-align: center;
}
.footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.footer .footer-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2196f3 0%, rgb(105.5769230769, 184.3269230769, 246.9230769231) 100%);
  border-radius: 2px;
}
.footer .footer-links a {
  color: #333333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.footer .footer-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.08) 0%, rgba(33, 150, 243, 0.04) 100%);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.footer .footer-links a:hover {
  color: #2196f3;
  background: rgba(33, 150, 243, 0.08);
  border-color: rgba(33, 150, 243, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.15);
}
.footer .footer-links a:hover::before {
  left: 0;
}
.footer .footer-links a:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(33, 150, 243, 0.1);
}
.footer .footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #2196f3 0%, rgb(105.5769230769, 184.3269230769, 246.9230769231) 100%);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}
.footer .footer-links a:hover::after {
  width: 70%;
}
.footer .copyright {
  color: #6c757d;
  font-size: 14px;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
  .footer .footer-links {
    gap: 20px;
    padding: 20px 0;
  }
  .footer .footer-links a {
    font-size: 14px;
    padding: 8px 15px;
  }
  .footer .copyright {
    font-size: 13px;
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 25px 0;
  }
  .footer .footer-links {
    gap: 15px;
    padding: 15px 0;
  }
  .footer .footer-links a {
    font-size: 13px;
    padding: 6px 12px;
  }
  .footer .copyright {
    font-size: 12px;
    padding: 10px 16px;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  .navbar .nav-search .search-input {
    width: 150px;
  }
  .navbar .nav-search .search-input:focus {
    width: 180px;
  }
  .video-list {
    flex-direction: column;
  }
  .video-list .recommend-grid .recommend-card {
    width: calc(50% - 10px);
  }
  .video-list .hot-list {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header .navbar .container {
    padding: 0 20px;
  }
  .header .navbar .nav-links {
    display: none;
  }
  .header .navbar .hamburger {
    display: flex;
  }
  .video-list {
    flex-direction: column;
  }
  .video-list .recommend-grid .recommend-card {
    width: calc(50% - 10px);
  }
  .video-list .hot-list {
    width: 100%;
  }
  .section-title {
    gap: 15px;
    text-align: center;
  }
  .section-title .title-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .section-title .title-wrapper h2 {
    font-size: 24px;
  }
  .section-title .title-actions .more-link {
    font-size: 14px;
    padding: 8px 16px;
  }
  .hot-list .list-title {
    font-size: 20px;
    padding: 12px 15px;
  }
  .footer .footer-links {
    gap: 15px;
    padding: 15px 0;
  }
  .footer .footer-links a {
    font-size: 14px;
    padding: 6px 12px;
  }
  .banner-ad-section {
    padding: 20px 0;
  }
  .hot-section {
    padding: 30px 0;
  }
  .hot-section .section-header {
    margin-bottom: 30px;
  }
  .hot-section .section-header .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hot-section .section-header .header-content .title-section .section-title {
    font-size: 24px;
  }
  .hot-section .section-header .header-content .title-section .section-title i {
    font-size: 20px;
  }
  .hot-section .section-header .header-content .title-section .section-subtitle {
    font-size: 14px;
  }
  .hot-section .section-header .header-content .header-actions {
    width: 100%;
    justify-content: space-between;
  }
  .hot-section .section-header .header-content .header-actions .filter-tabs .filter-tab {
    padding: 6px 12px;
    font-size: 13px;
  }
  .hot-section .section-header .header-content .header-actions .more-link {
    padding: 6px 12px;
    font-size: 13px;
  }
  .hot-section .hot-content .featured-area {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .hot-section .hot-content .featured-area .featured-main .featured-card .video-info {
    padding: 16px;
  }
  .hot-section .hot-content .featured-area .featured-main .featured-card .video-info .video-title {
    font-size: 16px;
  }
  .hot-section .hot-content .featured-area .featured-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .hot-section .hot-content .recommend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .hot-section .hot-content .recommend-grid .grid-item .video-card .video-info {
    padding: 12px;
  }
  .hot-section .hot-content .recommend-grid .grid-item .video-card .video-info .video-title {
    font-size: 13px;
  }
  .latest-section {
    padding: 20px 0;
  }
  .latest-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .latest-section .video-grid .latest-card .video-info {
    padding: 10px;
  }
  .latest-section .video-grid .latest-card .video-info .video-title {
    font-size: 13px;
  }
  .latest-section .video-grid .latest-card .video-info .video-meta .upload-time {
    font-size: 11px;
  }
}
@media screen and (max-width: 480px) {
  .video-list .recommend-grid {
    gap: 10px;
  }
  .video-list .recommend-grid .recommend-card {
    width: calc(50% - 5px);
  }
  .banner-ad-section {
    padding: 15px 0;
  }
  .banner-ad-section .banner-ad {
    min-height: 40px;
    padding: 10px;
  }
  .hot-section {
    padding: 20px 0;
  }
  .hot-section .section-header .header-content .title-section .section-title {
    font-size: 20px;
  }
  .hot-section .section-header .header-content .title-section .section-title i {
    font-size: 18px;
  }
  .hot-section .section-header .header-content .title-section .section-subtitle {
    font-size: 13px;
  }
  .hot-section .section-header .header-content .header-actions .filter-tabs .filter-tab {
    padding: 5px 10px;
    font-size: 12px;
  }
  .hot-section .section-header .header-content .header-actions .more-link {
    padding: 5px 10px;
    font-size: 12px;
  }
  .hot-section .hot-content .featured-area .featured-sidebar {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hot-section .hot-content .recommend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hot-section .hot-content .recommend-grid .grid-item .video-card .video-info {
    padding: 10px;
  }
  .hot-section .hot-content .recommend-grid .grid-item .video-card .video-info .video-title {
    font-size: 12px;
  }
  .latest-section {
    padding: 15px 0;
  }
  .latest-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .latest-section .video-grid .latest-card .video-info {
    padding: 8px;
  }
  .latest-section .video-grid .latest-card .video-info .video-title {
    font-size: 12px;
  }
  .video-list .recommend-grid {
    gap: 10px;
  }
  .video-list .recommend-grid .recommend-card {
    width: calc(50% - 5px);
  }
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1002;
  padding: 0;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1003;
  background: linear-gradient(135deg, #2196f3 0%, rgb(91.0615384615, 177.4615384615, 246.1384615385) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu .close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.35);
  background: linear-gradient(135deg, rgb(57.1923076923, 161.4423076923, 244.3076923077) 0%, #2196f3 100%);
}
.mobile-menu .close-btn:active {
  transform: scale(0.95) rotate(90deg);
}
.mobile-menu .close-btn span {
  display: block;
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.mobile-menu .close-btn span:nth-child(1) {
  transform: rotate(45deg);
}
.mobile-menu .close-btn span:nth-child(2) {
  opacity: 0;
}
.mobile-menu .close-btn span:nth-child(3) {
  transform: rotate(-45deg);
}
.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 120px;
  padding: 0 40px;
}
.mobile-menu .nav-links a {
  color: #333333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
}
.mobile-menu .nav-links a:hover {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
  color: #2196f3;
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.15);
  border-color: rgba(33, 150, 243, 0.2);
}
.mobile-menu .nav-links a.active {
  background: linear-gradient(135deg, #2196f3 0%, rgb(71.7076923077, 168.3076923077, 245.0923076923) 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.25);
  font-weight: 600;
  border-color: rgba(33, 150, 243, 0.3);
}
.mobile-menu .nav-links a.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu .nav-links a.active:hover::before {
  opacity: 1;
}
.mobile-menu .nav-links a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.mobile-menu .nav-links a:active::after {
  width: 200px;
  height: 200px;
}

@media screen and (max-width: 768px) {
  .navbar .container {
    height: 60px;
    padding: 0 20px;
  }
  .navbar .logo img {
    height: 40px;
  }
  .navbar .logo::after {
    display: none;
  }
  .navbar .nav-links {
    display: none;
  }
  .navbar .hamburger {
    display: flex;
    width: 28px;
    height: 24px;
    padding: 4px;
  }
  .navbar .hamburger span {
    height: 2px;
  }
  .mobile-menu {
    display: block;
  }
  .video-list {
    flex-direction: column;
  }
  .video-list .recommend-grid .recommend-card {
    width: calc(50% - 10px);
  }
  .video-list .hot-list {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .video-list .recommend-grid {
    gap: 10px;
  }
  .video-list .recommend-grid .recommend-card {
    width: calc(50% - 5px);
  }
}
body.menu-open {
  overflow: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.navbar .logo {
  animation: slideInRight 0.6s ease forwards;
}

.navbar .nav-search {
  animation: slideInRight 0.6s ease 0.2s forwards;
  opacity: 0;
  transform: translateX(30px);
}

.hot-section {
  padding: 40px 0;
  background-color: #ffffff;
}
.hot-section .section-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #2196f3;
  position: relative;
}
.hot-section .section-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: rgb(129.7692307692, 195.7692307692, 248.2307692308);
}
.hot-section .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}
.hot-section .section-title .more-link {
  color: #2196f3;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #2196f3;
  border-radius: 20px;
  transition: all 0.3s;
  background-color: transparent;
}
.hot-section .section-title .more-link:hover {
  background-color: #2196f3;
  color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

.video-card .video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16/9;
}
.video-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.video-card .video-thumb .video-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  align-items: center;
}
.video-card .video-thumb .video-overlay .duration {
  background-color: rgba(0, 0, 0, 0.8);
  color: #333333;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.video-card .video-thumb .rank-num {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  background-color: rgba(33, 150, 243, 0.9);
  color: #333333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.recommend-grid .grid-item.large {
  grid-column: 1/-1;
  margin-bottom: 10px;
}
.recommend-grid .grid-item.large .recommend-card.featured .video-thumb {
  aspect-ratio: 16/9;
}
.recommend-grid .grid-item.large .recommend-card.featured .video-info {
  padding: 16px;
}
.recommend-grid .grid-item.large .recommend-card.featured .video-info .video-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.recommend-grid .grid-item.large .recommend-card.featured .video-info .video-meta {
  margin-top: 10px;
  font-size: 14px;
}
.recommend-grid .grid-item .recommend-card .video-thumb {
  aspect-ratio: 16/9;
}
.recommend-grid .grid-item .recommend-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recommend-grid .grid-item .recommend-card .video-info {
  padding: 12px;
}
.recommend-grid .grid-item .recommend-card .video-info .video-title {
  font-size: 15px;
  margin-bottom: 8px;
}
.recommend-grid .grid-item .recommend-card .video-info .video-meta {
  font-size: 13px;
}

@media screen and (max-width: 1200px) {
  .recommend-grid {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .recommend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .recommend-grid .grid-item.large {
    grid-column: 1/-1;
    margin-bottom: 8px;
  }
  .recommend-grid .grid-item.large .recommend-card.featured .video-info {
    padding: 12px;
  }
  .recommend-grid .grid-item.large .recommend-card.featured .video-info .video-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .recommend-grid {
    gap: 10px;
  }
  .recommend-grid .grid-item.large {
    margin-bottom: 6px;
  }
  .recommend-grid .grid-item.large .recommend-card.featured .video-info {
    padding: 10px;
  }
  .recommend-grid .grid-item.large .recommend-card.featured .video-info .video-title {
    font-size: 15px;
  }
  .recommend-grid .grid-item.large .recommend-card.featured .video-info .video-meta {
    font-size: 12px;
  }
  .recommend-grid .grid-item .recommend-card .video-info {
    padding: 8px;
  }
  .recommend-grid .grid-item .recommend-card .video-info .video-title {
    font-size: 13px;
  }
  .recommend-grid .grid-item .recommend-card .video-info .video-meta {
    font-size: 11px;
  }
}
.hot-list .hot-card .video-thumb .video-overlay {
  position: absolute;
  bottom: 6px;
  right: 6px;
}
.hot-list .hot-card .video-thumb .video-overlay .duration {
  background-color: rgba(0, 0, 0, 0.8);
  color: #333333;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 11px;
}
.hot-list .hot-card .video-thumb .rank-num {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 24px;
  height: 24px;
  background-color: rgba(33, 150, 243, 0.9);
  color: #333333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.latest-section {
  padding: 40px 0;
  background-color: #ffffff;
}
.latest-section .section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #2196f3;
  position: relative;
}
.latest-section .section-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: rgb(129.7692307692, 195.7692307692, 248.2307692308);
}
.latest-section .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.latest-section .section-title .more-link {
  color: #2196f3;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #2196f3;
  border-radius: 20px;
  transition: all 0.3s;
  background-color: transparent;
}
.latest-section .section-title .more-link:hover {
  background-color: #2196f3;
  color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}
.latest-section .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (min-width: 1400px) {
  .latest-section .video-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .latest-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .latest-section .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .latest-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .latest-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.latest-section .video-grid .latest-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.latest-section .video-grid .latest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.latest-section .video-grid .latest-card:hover .video-thumb img {
  transform: scale(1.05);
}
.latest-section .video-grid .latest-card .video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.latest-section .video-grid .latest-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.latest-section .video-grid .latest-card .video-thumb .video-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.latest-section .video-grid .latest-card .video-thumb .video-overlay .duration {
  background-color: rgba(0, 0, 0, 0.8);
  color: #333333;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.latest-section .video-grid .latest-card .video-info {
  padding: 12px;
}
.latest-section .video-grid .latest-card .video-info .video-title {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin: 0 0 8px 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.latest-section .video-grid .latest-card .video-info .video-meta .upload-time {
  font-size: 12px;
  color: #6c757d;
}

@media screen and (max-width: 1024px) {
  .latest-section .video-grid {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .latest-section {
    padding: 30px 0;
  }
  .latest-section .video-grid {
    gap: 15px;
  }
  .latest-section .video-grid .latest-card .video-info {
    padding: 10px;
  }
  .latest-section .video-grid .latest-card .video-info .video-title {
    font-size: 13px;
  }
  .latest-section .video-grid .latest-card .video-info .video-meta .upload-time {
    font-size: 11px;
  }
}
@media screen and (max-width: 480px) {
  .latest-section {
    padding: 20px 0;
  }
  .latest-section .video-grid {
    gap: 10px;
  }
  .latest-section .video-grid .latest-card .video-info {
    padding: 8px;
  }
  .latest-section .video-grid .latest-card .video-info .video-title {
    font-size: 12px;
  }
}
.list-section {
  padding: 30px 0;
  background-color: #ffffff;
}
.list-section .list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #2196f3;
}
.list-section .list-header .list-title {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}
.list-section .list-header .list-count {
  font-size: 14px;
  color: #6c757d;
}
.list-section .video-list-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.list-section .video-list-grid .list-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.list-section .video-list-grid .list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.list-section .video-list-grid .list-card:hover .video-thumb img {
  transform: scale(1.05);
}
.list-section .video-list-grid .list-card .video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.list-section .video-list-grid .list-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.list-section .video-list-grid .list-card .video-thumb .video-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.list-section .video-list-grid .list-card .video-thumb .video-overlay .duration {
  background-color: rgba(0, 0, 0, 0.8);
  color: #333333;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.list-section .video-list-grid .list-card .video-info {
  padding: 15px;
}
.list-section .video-list-grid .list-card .video-info .video-title {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1024px) {
  .list-section .video-list-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .list-section {
    padding: 20px 0;
  }
  .list-section .list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .list-section .list-header .list-title {
    font-size: 20px;
  }
  .list-section .video-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .list-section .video-list-grid .list-card .video-info {
    padding: 12px;
  }
  .list-section .video-list-grid .list-card .video-info .video-title {
    font-size: 14px;
  }
  .pagination-wrapper {
    margin-top: 30px;
  }
  .pagination-wrapper .pagination {
    gap: 5px;
  }
  .pagination-wrapper .pagination .page-btn,
  .pagination-wrapper .pagination .page-num {
    padding: 6px 10px;
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .list-section {
    padding: 15px 0;
  }
  .list-section .video-list-grid {
    gap: 10px;
  }
  .list-section .video-list-grid .list-card .video-info {
    padding: 10px;
  }
  .list-section .video-list-grid .list-card .video-info .video-title {
    font-size: 13px;
  }
}
.search-result-section {
  padding: 30px 0;
  background-color: #ffffff;
}
.search-result-section .search-header {
  margin-bottom: 30px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.search-result-section .search-header .search-info .search-title {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 12px 0;
}
.search-result-section .search-header .search-info .search-summary {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}
.search-result-section .search-header .search-info .search-summary .search-keyword {
  color: #2196f3;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .search-result-section {
    padding: 15px;
    margin-bottom: 20px;
  }
  .search-result-section .search-info .search-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .search-result-section .search-info .search-summary {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .search-result-section {
    padding: 12px;
    margin-bottom: 15px;
  }
  .search-result-section .search-info .search-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .search-result-section .search-info .search-summary {
    font-size: 12px;
  }
}
.search-result-section .video-list-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.search-result-section .video-list-grid .list-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.search-result-section .video-list-grid .list-card:hover {
  transform: translateY(-5px);
}
.search-result-section .video-list-grid .list-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.search-result-section .video-list-grid .list-card .video-thumb a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.search-result-section .video-list-grid .list-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-result-section .video-list-grid .list-card .video-thumb .video-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 4px 8px;
  border-radius: 4px;
}
.search-result-section .video-list-grid .list-card .video-thumb .video-overlay .duration {
  color: #fff;
  font-size: 12px;
}
.search-result-section .video-list-grid .list-card .video-info {
  padding: 12px;
}
.search-result-section .video-list-grid .list-card .video-info .video-title {
  font-size: 14px;
  color: #333333;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

@media screen and (max-width: 1024px) {
  .search-result-section .video-list-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .search-result-section {
    padding: 20px 0;
  }
  .search-result-section .search-header {
    gap: 15px;
  }
  .search-result-section .search-header .search-info .search-title {
    font-size: 20px;
  }
  .search-result-section .search-header .search-wrapper input {
    height: 40px;
    font-size: 14px;
  }
  .search-result-section .search-header .search-wrapper .search-btn {
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
  }
  .search-result-section .search-header .search-wrapper .search-btn span {
    display: none;
  }
  .search-result-section .video-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 480px) {
  .search-result-section {
    padding: 15px 0;
  }
  .search-result-section .search-header {
    gap: 12px;
  }
  .search-result-section .search-header .search-info .search-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .search-result-section .search-header .search-info .search-summary {
    font-size: 13px;
  }
  .search-result-section .search-header .search-wrapper {
    gap: 8px;
  }
  .search-result-section .search-header .search-wrapper input {
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
  .search-result-section .search-header .search-wrapper .search-btn {
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
  .search-result-section .video-list-grid {
    gap: 10px;
  }
}
.video-player-section {
  background-color: #ffffff;
}
.video-player-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.video-player-section .container .player-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.video-player-section .container .player-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
}

.video-info-section {
  padding: 30px 0;
  background: #ffffff;
}
.video-info-section .video-info-wrapper .video-main-info {
  padding: 25px;
  background: rgba(33, 150, 243, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(33, 150, 243, 0.08);
}
.video-info-section .video-info-wrapper .video-main-info .video-title {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 10px 0;
  line-height: 1.4;
}
.video-info-section .video-info-wrapper .video-main-info .video-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(33, 150, 243, 0.08);
}
.video-info-section .video-info-wrapper .video-main-info .video-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6c757d;
  font-size: 14px;
}
.video-info-section .video-info-wrapper .video-main-info .video-meta span i {
  font-size: 16px;
  color: #2196f3;
}
.video-info-section .video-info-wrapper .video-main-info .video-description {
  color: #333333;
  font-size: 15px;
  line-height: 1.6;
}
.video-info-section .video-info-wrapper .video-main-info .video-description p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .video-info-section {
    padding: 20px 0;
  }
  .video-info-section .video-info-wrapper .video-main-info {
    padding: 20px;
  }
  .video-info-section .video-info-wrapper .video-main-info .video-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .video-info-section .video-info-wrapper .video-main-info .video-meta {
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .video-info-section .video-info-wrapper .video-main-info .video-meta span {
    font-size: 13px;
  }
  .video-info-section .video-info-wrapper .video-main-info .video-meta span i {
    font-size: 15px;
  }
  .video-info-section .video-info-wrapper .video-main-info .video-description {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .video-info-section {
    padding: 15px 0;
  }
  .video-info-section .video-info-wrapper .video-main-info {
    padding: 15px;
  }
  .video-info-section .video-info-wrapper .video-main-info .video-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .video-info-section .video-info-wrapper .video-main-info .video-meta {
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .video-info-section .video-info-wrapper .video-main-info .video-meta span {
    font-size: 12px;
  }
  .video-info-section .video-info-wrapper .video-main-info .video-meta span i {
    font-size: 14px;
  }
  .video-info-section .video-info-wrapper .video-main-info .video-description {
    font-size: 13px;
  }
}
.related-section {
  padding: 30px 0;
  background-color: #ffffff;
}
.related-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.related-section .container .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 10px 0;
}
.related-section .container .video-list-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.related-section .container .video-list-grid .list-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.related-section .container .video-list-grid .list-card:hover {
  transform: translateY(-5px);
}
.related-section .container .video-list-grid .list-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.related-section .container .video-list-grid .list-card .video-thumb a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.related-section .container .video-list-grid .list-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-section .container .video-list-grid .list-card .video-thumb .video-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 4px 8px;
  border-radius: 4px;
}
.related-section .container .video-list-grid .list-card .video-thumb .video-overlay .duration {
  color: #fff;
  font-size: 12px;
}
.related-section .container .video-list-grid .list-card .video-info {
  padding: 12px;
}
.related-section .container .video-list-grid .list-card .video-info .video-title {
  font-size: 14px;
  color: #333333;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

@media screen and (max-width: 1200px) {
  .related-section .container .video-list-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .video-info-section {
    padding: 20px 0;
  }
  .video-info-section .container .video-info-wrapper .video-main-info {
    padding: 15px;
  }
  .video-info-section .container .video-info-wrapper .video-main-info .video-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .video-info-section .container .video-info-wrapper .video-main-info .video-meta {
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
  .video-info-section .container .video-info-wrapper .video-main-info .video-meta span {
    font-size: 13px;
  }
  .video-info-section .container .video-info-wrapper .video-main-info .video-meta span i {
    font-size: 15px;
  }
  .video-info-section .container .video-info-wrapper .video-main-info .video-description {
    font-size: 13px;
  }
  .related-section {
    padding: 20px 0;
  }
  .related-section .container .section-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .related-section .container .video-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .related-section .container .video-list-grid .list-card .video-info {
    padding: 10px;
  }
  .related-section .container .video-list-grid .list-card .video-info .video-title {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .video-info-section {
    padding: 15px 0;
  }
  .video-info-section .container .video-info-wrapper .video-main-info {
    padding: 12px;
  }
  .video-info-section .container .video-info-wrapper .video-main-info .video-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .video-info-section .container .video-info-wrapper .video-main-info .video-meta {
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    flex-wrap: wrap;
  }
  .video-info-section .container .video-info-wrapper .video-main-info .video-meta span {
    font-size: 12px;
  }
  .video-info-section .container .video-info-wrapper .video-main-info .video-meta span i {
    font-size: 14px;
  }
  .video-info-section .container .video-info-wrapper .video-main-info .video-description {
    font-size: 12px;
  }
  .related-section {
    padding: 15px 0;
  }
  .related-section .container .section-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .related-section .container .video-list-grid {
    gap: 10px;
  }
  .related-section .container .video-list-grid .list-card .video-info {
    padding: 8px;
  }
  .related-section .container .video-list-grid .list-card .video-info .video-title {
    font-size: 12px;
  }
}
.plyr {
  --plyr-color-main: #2196f3;
  --plyr-video-background: #f8f9fa;
  --plyr-menu-background: #f8f9fa;
  --plyr-menu-color: #333333;
  --plyr-menu-item-text-color: #6c757d;
  --plyr-menu-item-hover-background: rgba(255, 255, 255, 0.1);
  --plyr-menu-item-hover-text-color: #333333;
  --plyr-tooltip-background: #f8f9fa;
  --plyr-tooltip-color: #333333;
  --plyr-range-fill-background: #2196f3;
  --plyr-range-thumb-background: #2196f3;
  --plyr-control-icon-size: 18px;
  --plyr-control-spacing: 10px;
  --plyr-control-radius: 8px;
  --plyr-video-controls-background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

@media screen and (max-width: 768px) {
  .header .navbar .container {
    height: 56px;
    padding: 0 8px;
    gap: 8px;
    grid-template-columns: auto 1fr auto;
  }
  .header .navbar .logo img {
    height: 36px;
  }
  .header .navbar .nav-search {
    max-width: 200px;
    flex: 1 1 200px;
  }
  .header .navbar .nav-search .search-input {
    height: 38px;
    font-size: 16px;
    padding: 0 38px 0 14px;
  }
  .header .navbar .nav-search .search-btn {
    width: 32px;
    height: 32px;
    right: 4px;
  }
  .header .navbar .nav-search .search-btn i {
    font-size: 16px;
  }
  .header .navbar .hamburger {
    height: 34px;
    width: 34px;
    padding: 3px;
  }
  body {
    padding-top: 56px;
  }
}
@media screen and (max-width: 480px) {
  .header .navbar .container {
    height: 48px;
    padding: 0 4px;
    gap: 4px;
    grid-template-columns: auto 1fr auto;
  }
  .header .navbar .logo img {
    height: 28px;
  }
  .header .navbar .nav-search {
    max-width: 140px;
    flex: 1 1 140px;
  }
  .header .navbar .nav-search .search-input {
    height: 32px;
    font-size: 14px;
    padding: 0 28px 0 10px;
  }
  .header .navbar .nav-search .search-btn {
    width: 24px;
    height: 24px;
    right: 2px;
  }
  .header .navbar .nav-search .search-btn i {
    font-size: 13px;
  }
  .header .navbar .hamburger {
    height: 28px;
    width: 28px;
    padding: 2px;
  }
  body {
    padding-top: 48px;
  }
}
/* 回到顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2196f3 0%, rgb(81.3846153846, 172.8846153846, 245.6153846154) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
  z-index: 1000;
  border: 2px solid rgba(33, 150, 243, 0.1);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(135deg, rgb(57.1923076923, 161.4423076923, 244.3076923077) 0%, rgb(105.5769230769, 184.3269230769, 246.9230769231) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(33, 150, 243, 0.4);
  border-color: rgba(33, 150, 243, 0.2);
}
.back-to-top:hover i {
  transform: translateY(-2px);
}
.back-to-top:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.5);
}
.back-to-top i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .back-to-top i {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  .back-to-top i {
    font-size: 16px;
  }
}
/* 瀑布流布局 */
.waterfall-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  margin-top: 30px;
}

/* 左侧推荐网格 */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
}
.recommend-grid .grid-item.large {
  grid-column: 1/-1;
  grid-row: 1/2;
}
.recommend-grid .recommend-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.recommend-grid .recommend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.recommend-grid .recommend-card.featured .video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.recommend-grid .recommend-card.featured .video-thumb .play-btn i {
  font-size: 24px;
  color: #795548;
}
.recommend-grid .recommend-card.featured .video-thumb:hover .play-btn {
  opacity: 1;
}
.recommend-grid .recommend-card.featured .video-info {
  padding: 20px;
}
.recommend-grid .recommend-card.featured .video-info .video-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.recommend-grid .recommend-card.featured .video-info .video-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #666;
}
.recommend-grid .recommend-card.featured .video-info .video-meta .views, .recommend-grid .recommend-card.featured .video-info .video-meta .upload-time {
  display: flex;
  align-items: center;
}
.recommend-grid .recommend-card.featured .video-info .video-meta .views::before, .recommend-grid .recommend-card.featured .video-info .video-meta .upload-time::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #ddd;
  border-radius: 50%;
  margin-right: 8px;
}
.recommend-grid .recommend-card .video-thumb {
  position: relative;
  overflow: hidden;
}
.recommend-grid .recommend-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.recommend-grid .recommend-card .video-thumb .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 15px;
}
.recommend-grid .recommend-card .video-thumb .video-overlay .duration {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.recommend-grid .recommend-card .video-info {
  padding: 15px;
}
.recommend-grid .recommend-card .video-info .video-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommend-grid .recommend-card .video-info .video-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #666;
}
.recommend-grid .recommend-card .video-info .video-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.recommend-grid .recommend-card .video-info .video-tags .tag {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  background: #f5f5f5;
  color: #666;
}
.recommend-grid .recommend-card .video-info .video-tags .tag.hot {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #fff;
}

/* 右侧瀑布流热门排行 */
.hot-waterfall {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;
}
.hot-waterfall .waterfall-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}
.hot-waterfall .waterfall-header .list-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hot-waterfall .waterfall-header .list-title i {
  color: #ff6b6b;
  font-size: 20px;
}
.hot-waterfall .waterfall-header .waterfall-tabs {
  display: flex;
  gap: 2px;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 2px;
}
.hot-waterfall .waterfall-header .waterfall-tabs .tab {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}
.hot-waterfall .waterfall-header .waterfall-tabs .tab.active {
  background: #795548;
  color: #fff;
}
.hot-waterfall .waterfall-header .waterfall-tabs .tab:hover:not(.active) {
  background: rgba(121, 85, 72, 0.1);
  color: #795548;
}
.hot-waterfall .waterfall-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hot-waterfall .waterfall-list .waterfall-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hot-waterfall .waterfall-list .waterfall-item .rank-badge {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #795548 0%, #8d6e63 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 8px;
}
.hot-waterfall .waterfall-list .waterfall-item .rank-badge:nth-child(1) {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}
.hot-waterfall .waterfall-list .waterfall-item .rank-badge:nth-child(2) {
  background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
}
.hot-waterfall .waterfall-list .waterfall-item .rank-badge:nth-child(3) {
  background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
}
.hot-waterfall .waterfall-list .waterfall-item .hot-card {
  flex: 1;
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hot-waterfall .waterfall-list .waterfall-item .hot-card:hover {
  background: #f5f5f5;
  transform: translateX(5px);
}
.hot-waterfall .waterfall-list .waterfall-item .hot-card .video-thumb {
  position: relative;
  overflow: hidden;
}
.hot-waterfall .waterfall-list .waterfall-item .hot-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hot-waterfall .waterfall-list .waterfall-item .hot-card .video-thumb .video-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 4px 6px;
}
.hot-waterfall .waterfall-list .waterfall-item .hot-card .video-thumb .video-overlay .duration {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
}
.hot-waterfall .waterfall-list .waterfall-item .hot-card .video-info {
  padding: 10px;
}
.hot-waterfall .waterfall-list .waterfall-item .hot-card .video-info .video-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hot-waterfall .waterfall-list .waterfall-item .hot-card .video-info .video-meta {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: #666;
}
.hot-waterfall .waterfall-list .waterfall-item .hot-card .video-info .video-meta .views, .hot-waterfall .waterfall-list .waterfall-item .hot-card .video-info .video-meta .likes {
  display: flex;
  align-items: center;
}

/* 响应式适配 */
@media screen and (max-width: 1200px) {
  .waterfall-layout {
    grid-template-columns: 1fr 280px;
    gap: 20px;
  }
  .recommend-grid {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .waterfall-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hot-waterfall .waterfall-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .hot-waterfall .waterfall-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hot-waterfall .waterfall-list .waterfall-item {
    flex-direction: column;
  }
  .hot-waterfall .waterfall-list .waterfall-item .rank-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    margin-top: 0;
  }
  .hot-waterfall .waterfall-list .waterfall-item .hot-card {
    width: 100%;
  }
  .hot-waterfall .waterfall-list .waterfall-item .hot-card .video-thumb {
    aspect-ratio: 16/9;
    position: relative;
  }
  .hot-waterfall .waterfall-list .waterfall-item .hot-card .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hot-waterfall .waterfall-list .waterfall-item .hot-card .video-info {
    padding: 12px;
  }
  .hot-waterfall .waterfall-list .waterfall-item .hot-card .video-info .video-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .hot-waterfall .waterfall-list .waterfall-item .hot-card .video-info .video-meta {
    font-size: 12px;
    gap: 8px;
  }
}
@media screen and (max-width: 480px) {
  .hot-waterfall {
    padding: 12px;
  }
  .hot-waterfall .waterfall-list {
    gap: 8px;
  }
  .hot-waterfall .waterfall-list .waterfall-item .hot-card .video-info {
    padding: 8px;
  }
  .hot-waterfall .waterfall-list .waterfall-item .hot-card .video-info .video-title {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .hot-waterfall .waterfall-list .waterfall-item .hot-card .video-info .video-meta {
    font-size: 11px;
    gap: 6px;
  }
}
/* 强制保证推荐区为两列网格，防止嵌套失效 */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 768px) {
  .recommend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .recommend-grid .grid-item.large {
    grid-column: 1/-1;
    margin-bottom: 8px;
  }
  .recommend-grid .grid-item.large .recommend-card.featured .video-info {
    padding: 10px;
  }
  .recommend-grid .grid-item.large .recommend-card.featured .video-info .video-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .recommend-grid {
    gap: 6px;
  }
  .recommend-grid .grid-item.large {
    margin-bottom: 6px;
  }
  .recommend-grid .grid-item.large .recommend-card.featured .video-info {
    padding: 8px;
  }
  .recommend-grid .grid-item.large .recommend-card.featured .video-info .video-title {
    font-size: 15px;
  }
  .recommend-grid .grid-item.large .recommend-card.featured .video-info .video-meta {
    font-size: 12px;
  }
  .recommend-grid .grid-item .recommend-card .video-info {
    padding: 8px;
  }
  .recommend-grid .grid-item .recommend-card .video-info .video-title {
    font-size: 13px;
  }
  .recommend-grid .grid-item .recommend-card .video-info .video-meta {
    font-size: 11px;
  }
}
.video-container {
  background: #ffffff;
  padding: 30px 0;
}
.video-container .video-wrapper .video-player-section {
  width: 100%;
  background: rgba(33, 150, 243, 0.02);
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(33, 150, 243, 0.08);
  border-bottom: none;
  overflow: hidden;
}
.video-container .video-wrapper .video-player-section .plyr {
  width: 100%;
  aspect-ratio: 16/9;
}
.video-container .video-wrapper .video-info-section {
  padding: 0;
  background: none;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info {
  padding: 25px;
  background: rgba(33, 150, 243, 0.02);
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(33, 150, 243, 0.08);
  border-top: none;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-title {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 10px 0;
  line-height: 1.4;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(33, 150, 243, 0.08);
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6c757d;
  font-size: 14px;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta span i {
  font-size: 16px;
}
.video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-desc {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .video-container {
    padding: 15px 0;
  }
  .video-container .video-wrapper {
    gap: 0;
  }
  .video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info {
    padding: 15px;
  }
  .video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta {
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta span {
    font-size: 13px;
  }
  .video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-meta span i {
    font-size: 15px;
  }
  .video-container .video-wrapper .video-info-section .video-info-wrapper .video-main-info .video-desc {
    font-size: 13px;
    line-height: 1.5;
  }
}
.featured-card .video-info .video-title {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  word-break: break-all !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

.featured-card .video-info {
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  max-width: 100% !important;
}

.video-info .video-title {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  word-break: break-all !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

.video-info {
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  max-width: 100% !important;
}

.featured-area {
  width: 100% !important;
  overflow: hidden !important;
  max-width: 100% !important;
}

.featured-main {
  width: 100% !important;
  overflow: hidden !important;
  max-width: 100% !important;
}

.featured-card {
  width: 100% !important;
  overflow: hidden !important;
  max-width: 100% !important;
}

.recommend-grid .video-card .video-info .video-title {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  word-break: break-all !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

.recommend-grid .video-card .video-info {
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  max-width: 100% !important;
}

.recommend-grid .video-card {
  width: 100% !important;
  overflow: hidden !important;
  max-width: 100% !important;
}

.recommend-grid .grid-item {
  width: 100% !important;
  overflow: hidden !important;
  max-width: 100% !important;
}

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