* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  line-height: 1.5;
  padding-top: 60px;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  padding: 15px 0;
  border-bottom: 1px solid #242424;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo img {
  height: 40px;
  width: auto;
}
.navbar .nav-links {
  display: flex;
  gap: 20px;
}
.navbar .nav-links a {
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s;
}
.navbar .nav-links a:hover, .navbar .nav-links a.active {
  background-color: #00a1d6;
}
.navbar .hamburger {
  display: none;
  width: 24px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.navbar .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.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: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}
.nav-menu .nav-list .nav-item a:hover {
  color: #00a1d6;
}
.nav-menu .nav-list .nav-item.active a {
  color: #00a1d6;
}
.nav-menu .nav-list .nav-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 160px;
  background-color: #242424;
  border-radius: 4px;
  padding: 5px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  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: rgba(255, 255, 255, 0.1);
}
.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: #ffffff;
  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);
}

.main-content {
  padding-top: 10px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.section-title h2 {
  font-size: 24px;
  font-weight: bold;
}
.section-title .more-link {
  color: #00a1d6;
  text-decoration: none;
}
.section-title .more-link:hover {
  text-decoration: underline;
}

.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: 4px;
  overflow: hidden;
  transition: all 0.3s;
  background-color: #242424;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.video-list .recommend-grid .recommend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.video-list .recommend-grid .recommend-card .video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 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: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.video-list .recommend-grid .recommend-card .video-info {
  padding: 12px;
  background: linear-gradient(to top, #242424, rgb(28.35, 28.35, 28.35));
}
.video-list .recommend-grid .recommend-card .video-info .video-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #ffffff;
  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: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: all 0.3s;
}
.video-list .recommend-grid .recommend-card .video-info .video-tags .tag.hot {
  background-color: rgba(0, 161, 214, 0.3);
  color: rgb(61, 206.953271028, 255);
}
.video-list .recommend-grid .recommend-card .video-info .video-tags .tag:hover {
  background-color: rgba(0, 161, 214, 0.4);
  color: #ffffff;
}
.video-list .recommend-grid .recommend-card:hover .video-thumb img {
  transform: scale(1.05);
}
.video-list .hot-list {
  width: 350px;
  background-color: #242424;
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.video-list .hot-list .list-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid #00a1d6;
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.video-list .hot-list .hot-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 4px;
  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: rgb(48.75, 48.75, 48.75);
  transform: translateX(5px);
}
.video-list .hot-list .hot-card:hover .video-title {
  color: #00a1d6;
}
.video-list .hot-list .hot-card .video-thumb {
  width: 120px;
  height: 68px;
  border-radius: 4px;
  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: #ffffff;
  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(0, 161, 214, 0.9);
  color: #ffffff;
  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: #ffffff;
  transition: color 0.3s;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -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: #00a1d6;
  font-weight: 600;
  color: white;
  border-color: #00a1d6;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #242424;
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  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(0, 161, 214, 0.1);
  border-color: #00a1d6;
  color: #00a1d6;
  transform: translateY(-1px);
}
.pagination-container ul li.active {
  background: #00a1d6;
  font-weight: 600;
  color: white;
  border-color: #00a1d6;
  box-shadow: 0 4px 12px rgba(0, 161, 214, 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: #00a1d6;
  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: #b8b8b8;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background-color: #242424;
  border-color: rgba(255, 255, 255, 0.1);
  color: #b8b8b8;
  transform: none;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 20px auto 15px;
  }
  .pagination-container ul {
    gap: 8px;
  }
  .pagination-container ul li {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .pagination-container ul li a {
    width: 36px;
    height: 36px;
  }
  .pagination-container ul li.page-options {
    width: 60px;
  }
  .pagination-container ul li.page-options a {
    width: 60px;
  }
}

.footer {
  background-color: #242424;
  padding: 40px 0;
  margin-top: 60px;
}
.footer .footer-content {
  text-align: center;
}
.footer .footer-links {
  margin-bottom: 20px;
}
.footer .footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
}
.footer .footer-links a:hover {
  color: #00a1d6;
}
.footer .copyright {
  color: #b8b8b8;
  font-size: 14px;
}

.search-section {
  padding: 30px 0;
  background-color: #1a1a1a;
}
.search-section .search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}
.search-section .search-wrapper input {
  flex: 1;
  height: 50px;
  padding: 0 20px;
  border: 2px solid #242424;
  border-radius: 25px;
  background-color: #242424;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s;
  min-width: 0;
}
.search-section .search-wrapper input::placeholder {
  color: #b8b8b8;
}
.search-section .search-wrapper input:focus {
  outline: none;
  border-color: #00a1d6;
  box-shadow: 0 0 0 3px rgba(0, 161, 214, 0.1);
}
.search-section .search-wrapper .search-btn {
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: 25px;
  background-color: #00a1d6;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.search-section .search-wrapper .search-btn i {
  font-size: 18px;
}
.search-section .search-wrapper .search-btn:hover {
  background-color: rgb(0, 122.6308411215, 163);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 161, 214, 0.3);
}
.search-section .search-wrapper .search-btn:active {
  transform: translateY(0);
}

@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  .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 .nav-wrapper {
    padding: 0 15px;
  }
  .header .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #242424;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }
  .header .nav-menu.active {
    transform: translateX(0);
  }
  .header .nav-menu .nav-list {
    flex-direction: column;
  }
  .header .nav-menu .nav-list .nav-item {
    margin: 0;
    width: 100%;
  }
  .header .nav-menu .nav-list .nav-item a {
    padding: 12px 15px;
    line-height: 1.5;
  }
  .header .nav-menu .nav-list .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
  }
  .header .nav-menu .nav-list .nav-item .sub-menu li a {
    padding-left: 30px;
  }
  .header .nav-menu .nav-list .nav-item:hover .sub-menu {
    display: block;
  }
  .header .search-box {
    display: none;
  }
  .header .menu-toggle {
    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 h2 {
    font-size: 20px;
  }
  .footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .footer .footer-links a {
    margin: 0;
  }
  .search-section {
    padding: 20px 0;
  }
  .search-section .search-wrapper {
    gap: 10px;
    padding: 0 15px;
    max-width: none;
  }
  .search-section .search-wrapper input {
    height: 45px;
    font-size: 15px;
    padding: 0 15px;
  }
  .search-section .search-wrapper .search-btn {
    height: 45px;
    padding: 0 15px;
    font-size: 15px;
  }
  .search-section .search-wrapper .search-btn span {
    display: none;
  }
  .banner-ad-section {
    padding: 20px 0;
  }
  .hot-section {
    padding: 20px 0;
  }
  .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);
  }
  .search-section .search-wrapper {
    gap: 8px;
    padding: 0 10px;
  }
  .search-section .search-wrapper input {
    height: 42px;
    font-size: 14px;
    padding: 0 12px;
  }
  .search-section .search-wrapper .search-btn {
    height: 42px;
    padding: 0 12px;
    font-size: 14px;
    min-width: 42px;
  }
  .banner-ad-section {
    padding: 15px 0;
  }
  .banner-ad-section .banner-ad {
    min-height: 40px;
    padding: 10px;
  }
  .hot-section {
    padding: 15px 0;
  }
  .latest-section {
    padding: 15px 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;
  }
  .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-color: rgba(26, 26, 26, 0.98);
  z-index: 1002;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1003;
}
.mobile-menu .close-btn span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  left: 0;
  top: 50%;
  transform-origin: center;
}
.mobile-menu .close-btn span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
.mobile-menu .close-btn span:nth-child(2) {
  opacity: 0;
}
.mobile-menu .close-btn span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.mobile-menu .close-btn:hover span {
  background-color: #00a1d6;
}
.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
}
.mobile-menu .nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s;
}
.mobile-menu .nav-links a:hover, .mobile-menu .nav-links a.active {
  background-color: #00a1d6;
}

@media screen and (max-width: 768px) {
  .navbar .nav-links {
    display: none;
  }
  .navbar .hamburger {
    display: flex;
  }
  .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;
}

.hot-section {
  padding: 40px 0;
  background-color: #1a1a1a;
}
.hot-section .section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #00a1d6;
  position: relative;
}
.hot-section .section-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: rgb(61, 206.953271028, 255);
}
.hot-section .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}
.hot-section .section-title .more-link {
  color: #00a1d6;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #00a1d6;
  border-radius: 20px;
  transition: all 0.3s;
  background-color: transparent;
}
.hot-section .section-title .more-link:hover {
  background-color: #00a1d6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 161, 214, 0.3);
}

.video-card .video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  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: #ffffff;
  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(0, 161, 214, 0.9);
  color: #ffffff;
  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 .recommend-card .video-thumb .video-overlay .duration {
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.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: #ffffff;
  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(0, 161, 214, 0.9);
  color: #ffffff;
  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: #1a1a1a;
}
.latest-section .section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #00a1d6;
  position: relative;
}
.latest-section .section-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: rgb(61, 206.953271028, 255);
}
.latest-section .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.latest-section .section-title .more-link {
  color: #00a1d6;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #00a1d6;
  border-radius: 20px;
  transition: all 0.3s;
  background-color: transparent;
}
.latest-section .section-title .more-link:hover {
  background-color: #00a1d6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 161, 214, 0.3);
}
.latest-section .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.latest-section .video-grid .latest-card {
  background-color: #242424;
  border-radius: 4px;
  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: #ffffff;
  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: #ffffff;
  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: #b8b8b8;
}

@media screen and (max-width: 1024px) {
  .latest-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .latest-section {
    padding: 30px 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) {
  .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: #1a1a1a;
}
.list-section .list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #00a1d6;
}
.list-section .list-header .list-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.list-section .list-header .list-count {
  font-size: 14px;
  color: #b8b8b8;
}
.list-section .video-list-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.list-section .video-list-grid .list-card {
  background-color: #242424;
  border-radius: 4px;
  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: #ffffff;
  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: #ffffff;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -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: #1a1a1a;
}
.search-result-section .search-header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search-result-section .search-header .search-info .search-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
}
.search-result-section .search-header .search-info .search-summary {
  font-size: 14px;
  color: #b8b8b8;
}
.search-result-section .search-header .search-info .search-summary .search-keyword {
  color: #00a1d6;
  font-weight: 500;
}
.search-result-section .search-header .search-wrapper {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 600px;
}
.search-result-section .search-header .search-wrapper input {
  flex: 1;
  height: 45px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background-color: #242424;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s;
}
.search-result-section .search-header .search-wrapper input:focus {
  outline: none;
  border-color: #00a1d6;
}
.search-result-section .search-header .search-wrapper input::placeholder {
  color: #b8b8b8;
}
.search-result-section .search-header .search-wrapper .search-btn {
  height: 45px;
  padding: 0 20px;
  border: none;
  border-radius: 4px;
  background-color: #00a1d6;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}
.search-result-section .search-header .search-wrapper .search-btn:hover {
  background-color: rgb(0, 141.8154205607, 188.5);
}
.search-result-section .search-header .search-wrapper .search-btn i {
  font-size: 18px;
}
.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: #242424;
  border-radius: 4px;
  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: #ffffff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -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 {
  padding: 30px 0;
  background-color: #1a1a1a;
}
.video-player-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.video-player-section .container .player-wrapper {
  width: 100%;
  border-radius: 4px;
  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-color: #1a1a1a;
}
.video-info-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.video-info-section .container .video-info-wrapper {
  width: 100%;
}
.video-info-section .container .video-info-wrapper .video-main-info {
  background-color: #242424;
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.video-info-section .container .video-info-wrapper .video-main-info .video-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 15px 0;
}
.video-info-section .container .video-info-wrapper .video-main-info .video-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.video-info-section .container .video-info-wrapper .video-main-info .video-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #b8b8b8;
  font-size: 14px;
}
.video-info-section .container .video-info-wrapper .video-main-info .video-meta span i {
  font-size: 16px;
}
.video-info-section .container .video-info-wrapper .video-main-info .video-description {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.related-section {
  padding: 30px 0;
  background-color: #1a1a1a;
}
.related-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.related-section .container .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px 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: #242424;
  border-radius: 4px;
  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: #ffffff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -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-player-section {
    padding: 20px 0;
  }
  .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-player-section {
    padding: 15px 0;
  }
  .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: #00a1d6;
  --plyr-video-background: #242424;
  --plyr-menu-background: #242424;
  --plyr-menu-color: #ffffff;
  --plyr-menu-item-text-color: #b8b8b8;
  --plyr-menu-item-hover-background: rgba(255, 255, 255, 0.1);
  --plyr-menu-item-hover-text-color: #ffffff;
  --plyr-tooltip-background: #242424;
  --plyr-tooltip-color: #ffffff;
  --plyr-range-fill-background: #00a1d6;
  --plyr-range-thumb-background: #00a1d6;
  --plyr-control-icon-size: 18px;
  --plyr-control-spacing: 10px;
  --plyr-control-radius: 4px;
  --plyr-video-controls-background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

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