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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
  background-attachment: fixed;
  color: #374151;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}
.header .header-content {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .logo img {
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}
.header .logo .site-name {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header .nav-menu {
  display: flex;
  gap: 16px;
}
.header .nav-menu .nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}
.header .nav-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #f97316;
  transition: width 0.3s ease;
  border-radius: 1.5px;
}
.header .nav-menu .nav-link:hover, .header .nav-menu .nav-link.active {
  color: #f97316;
  background-color: rgba(249, 115, 22, 0.05);
}
.header .nav-menu .nav-link:hover::after, .header .nav-menu .nav-link.active::after {
  width: 60%;
}
.header .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 6px;
  background: transparent;
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.header .menu-toggle span {
  width: 22px;
  height: 2px;
  background: #f97316;
  transition: 0.3s;
  position: absolute;
  left: 9px;
  border-radius: 2px;
}
.header .menu-toggle span:nth-child(1) {
  top: 14px;
}
.header .menu-toggle span:nth-child(2) {
  top: 20px;
  width: 16px;
}
.header .menu-toggle span:nth-child(3) {
  top: 26px;
}
.header .menu-toggle:hover {
  background: rgba(249, 115, 22, 0.05);
}
.header .menu-toggle.active {
  background: rgba(249, 115, 22, 0.1);
}
.header .menu-toggle.active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
  width: 22px;
}
.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .menu-toggle.active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.search-section {
  padding: 100px 0 30px;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.search-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(249, 115, 22, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
}
.search-section .search-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.search-section .search-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.search-section .search-box:focus-within {
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateY(-2px);
}
.search-section .search-box .search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-section .search-box .search-icon {
  width: 22px;
  height: 22px;
  margin-left: 20px;
  color: #f97316;
  opacity: 0.8;
}
.search-section .search-box input {
  flex: 1;
  padding: 14px 0;
  background: transparent;
  border: none;
  color: #374151;
  font-size: 16px;
  font-weight: 500;
}
.search-section .search-box input::placeholder {
  color: rgba(107, 114, 128, 0.6);
  font-weight: 400;
}
.search-section .search-box input:focus {
  outline: none;
}
.search-section .search-box .search-btn {
  padding: 14px 30px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  border: none;
  border-radius: 40px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 4px;
}
.search-section .search-box .search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
  background: linear-gradient(135deg, rgb(249.3841004184, 123.9623430962, 36.9158995816), rgb(251.3075376884, 154.3804020101, 74.9924623116));
}

.main-content {
  padding: 80px 0;
  position: relative;
}
.main-content .main-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1280px;
  margin: 10px auto;
  padding: 0 20px;
  position: relative;
}
.main-content .main-wrapper .container {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .main-content {
    padding: 25px 0 50px;
  }
  .main-content .main-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .main-content {
    padding: 20px 0 40px;
  }
  .main-content .main-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .main-content {
    padding: 20px 0 40px;
  }
  .main-wrapper {
    padding: 0 12px;
  }
  .featured-section:first-of-type .masonry-grid {
    grid-template-columns: 1fr;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child, .featured-section:first-of-type .masonry-grid .video-card:nth-child(2), .featured-section:first-of-type .masonry-grid .video-card:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }
  .featured-section:first-of-type .masonry-grid .video-card:nth-child(n+4) {
    display: none;
  }
  .featured-section:first-of-type .masonry-grid .video-card .video-thumbnail {
    padding-top: 56.25%;
  }
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 0 16px 0;
  position: relative;
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}
.section-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #374151;
  position: relative;
  padding-left: 16px;
}
.section-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 24px;
  background: #f97316;
  border-radius: 3px;
}
.section-header .view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
}
.section-header .view-all i {
  font-size: 14px;
  transition: transform 0.3s;
}
.section-header .view-all:hover {
  background: rgba(249, 115, 22, 0.15);
  transform: translateY(-2px);
}
.section-header .view-all:hover i {
  transform: translateX(4px);
}
.section-header .search-box {
  max-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: all 0.3s ease;
}
.section-header .search-box:focus-within {
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.2);
}
.section-header .search-box .search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-header .search-box .search-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  color: #f97316;
  opacity: 0.8;
}
.section-header .search-box input {
  flex: 1;
  padding: 6px 0;
  background: transparent;
  border: none;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}
.section-header .search-box input::placeholder {
  color: rgba(107, 114, 128, 0.6);
  font-weight: 400;
}
.section-header .search-box input:focus {
  outline: none;
}
.section-header .search-box .search-btn {
  padding: 6px 12px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 2px;
}
.section-header .search-box .search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.banner-ad {
  margin: 40px 0;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}
.banner-ad::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  z-index: 2;
}
.banner-ad img {
  display: block;
  width: 100%;
  transition: transform 0.5s ease;
}
.banner-ad:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .banner-ad {
    margin: 30px 0;
    border-radius: 12px;
  }
}
.video-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.video-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: 1px solid rgba(249, 115, 22, 0.08);
  position: relative;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.2);
}
.video-card:hover .video-thumbnail img {
  transform: scale(1.08);
}
.video-card:hover .video-info .video-title {
  color: #f97316;
}
.video-card .video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}
.video-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.video-card .video-thumbnail .play-overlay {
  display: none;
}
.video-card .video-thumbnail .play-overlay .play-button {
  display: none;
}
.video-card .video-thumbnail .video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  background: #f97316;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}
.video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.video-card .video-info {
  padding: 12px 15px;
  background: white;
}
.video-card .video-info .video-title {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}
.video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
}
.video-card .video-info .video-meta .meta-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.video-card .video-info .video-meta .meta-left .views {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f97316;
  font-weight: 600;
}
.video-card .video-info .video-meta .meta-left .views::before {
  content: "👁";
  font-size: 12px;
}
.video-card .video-info .video-meta .meta-left .date {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fb923c;
  font-weight: 600;
}
.video-card .video-info .video-meta .meta-left .date::before {
  content: "📅";
  font-size: 12px;
}
.video-card .video-info .video-meta .meta-right .duration {
  padding: 3px 8px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 20px;
  color: #f97316;
  font-weight: 600;
}

.ad-section {
  margin: 48px 0;
}
.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: 40px auto 30px;
  display: flex;
  justify-content: center;
  position: relative;
}
.pagination-container::before {
  display: none;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 50px;
  padding: 8px 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: none;
  position: relative;
  overflow: hidden;
}
.pagination-container ul::after {
  display: none;
}
.pagination-container ul.page-no li.active {
  background: #fff;
  font-weight: 600;
  color: #f97316;
  box-shadow: none;
  transform: none;
  border-color: transparent;
  position: relative;
}
.pagination-container ul.page-no li.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #f97316;
  border-radius: 3px;
}
.pagination-container ul.page-no li.active a {
  color: #f97316;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: transparent;
  text-align: center;
  color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  border: none;
  box-shadow: none;
}
.pagination-container ul li.active {
  background: #fff;
  font-weight: 600;
  color: #f97316;
  box-shadow: none;
  transform: none;
  border-color: transparent;
  position: relative;
}
.pagination-container ul li.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #f97316;
  border-radius: 3px;
}
.pagination-container ul li.active a {
  color: #f97316;
}
.pagination-container ul li.active::before {
  display: none;
}
.pagination-container ul li::before {
  display: none;
}
.pagination-container ul li a {
  width: 100%;
  height: 100%;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.pagination-container ul li a.active {
  color: #f97316;
  font-weight: 600;
  background-color: transparent;
}
.pagination-container ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #f97316;
  border-radius: 3px;
}
.pagination-container ul li:hover:not(.active):not(.disabled) {
  color: #f97316;
  transform: none;
  box-shadow: none;
  border-color: transparent;
  background-color: rgba(249, 115, 22, 0.05);
}
.pagination-container ul li:hover:not(.active):not(.disabled) a {
  color: #f97316;
}
.pagination-container ul li.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: transparent;
  color: rgba(107, 114, 128, 0.6);
  box-shadow: none;
  transform: none;
}
.pagination-container ul li.page-options {
  width: auto;
  min-width: 80px;
  padding: 0 15px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.5px;
}
.pagination-container ul li.page-options a {
  width: 100%;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container ul li.page-prev, .pagination-container ul li.page-next {
  width: 120px;
  min-width: 80px;
  padding: 0 15px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.7);
}
.pagination-container ul li.page-prev a, .pagination-container ul li.page-next a {
  width: 100%;
  white-space: nowrap;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.pagination-container ul li.page-prev .layui-icon, .pagination-container ul li.page-next .layui-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
  margin-right: 4px;
}
.pagination-container ul li.page-prev:hover, .pagination-container ul li.page-next:hover {
  background-color: rgba(249, 115, 22, 0.05);
}
.pagination-container ul li.page-prev:hover .layui-icon, .pagination-container ul li.page-next:hover .layui-icon {
  transform: translateX(-3px);
}
.pagination-container ul li.page-next a {
  flex-direction: row-reverse;
}
.pagination-container ul li.page-next .layui-icon {
  margin-right: 0;
  margin-left: 4px;
}
.pagination-container ul li.page-next:hover .layui-icon {
  transform: translateX(3px);
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 30px auto 20px;
  }
  .pagination-container ul {
    padding: 6px 10px;
    gap: 5px;
  }
  .pagination-container ul li {
    width: 36px;
    height: 36px;
  }
  .pagination-container ul li a {
    font-size: 14px;
  }
  .pagination-container ul li.active::after,
  .pagination-container ul li a.active::after {
    bottom: -6px;
    width: 16px;
    height: 2px;
  }
  .pagination-container ul li.page-options {
    width: auto;
    min-width: 70px;
    padding: 0 12px;
  }
  .pagination-container ul li.page-options a {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pagination-container ul li.page-prev, .pagination-container ul li.page-next {
    width: auto;
    min-width: 70px;
    padding: 0 12px;
  }
  .pagination-container ul li.page-prev a, .pagination-container ul li.page-next a {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .pagination-container ul {
    padding: 4px 8px;
    gap: 2px;
  }
  .pagination-container ul li {
    width: 32px;
    height: 32px;
  }
  .pagination-container ul li a {
    font-size: 13px;
  }
  .pagination-container ul li.active::after,
  .pagination-container ul li a.active::after {
    bottom: -4px;
    width: 14px;
    height: 2px;
  }
  .pagination-container ul li.page-options {
    width: auto;
    min-width: 60px;
    padding: 0 8px;
  }
  .pagination-container ul li.page-options a {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pagination-container ul li.page-prev, .pagination-container ul li.page-next {
    width: auto;
    min-width: 60px;
    padding: 0 8px;
  }
  .pagination-container ul li.page-prev a, .pagination-container ul li.page-next a {
    font-size: 12px;
  }
  .pagination-container ul li.page-prev .layui-icon, .pagination-container ul li.page-next .layui-icon {
    margin-right: 2px;
  }
  .pagination-container ul li.page-next .layui-icon {
    margin-right: 0;
    margin-left: 2px;
  }
}

.footer {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(249, 115, 22, 0.1);
  padding: 60px 0 30px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.footer .footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer .footer-section ul {
  list-style: none;
}
.footer .footer-section ul li {
  margin-bottom: 12px;
}
.footer .footer-section ul li a {
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0;
  display: inline-block;
  position: relative;
}
.footer .footer-section ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  transition: width 0.3s ease;
}
.footer .footer-section ul li a:hover {
  color: #f97316;
  transform: translateX(5px);
}
.footer .footer-section ul li a:hover::before {
  width: 100%;
}
.footer .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.footer .footer-links::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10px 10px, rgba(249, 115, 22, 0.03) 2px, transparent 0), radial-gradient(circle at 25px 25px, rgba(249, 115, 22, 0.02) 2px, transparent 0);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}
.footer .footer-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #fb923c, #fdba74);
  opacity: 0.7;
}
.footer .footer-links .link-label {
  color: #f97316;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  padding-left: 15px;
  margin-right: 10px;
}
.footer .footer-links .link-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #f97316;
  border-radius: 2px;
}
.footer .footer-links .link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 1;
}
.footer .footer-links .footer-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(249, 115, 22, 0.08);
  overflow: hidden;
  z-index: 1;
  text-align: center;
}
.footer .footer-links .footer-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f97316, #fb923c);
  z-index: -1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(100%);
}
.footer .footer-links .footer-link:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
  border-color: transparent;
}
.footer .footer-links .footer-link:hover::before {
  transform: translateY(0);
}
.footer .footer-bottom {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}
.masonry-grid .video-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.masonry-grid .video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f97316, #fb923c, #fdba74);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.masonry-grid .video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}
.masonry-grid .video-card:hover::before {
  opacity: 1;
}
.masonry-grid .video-card:hover .video-thumbnail .video-tag {
  transform: translateY(-2px) scale(1.05);
}
.masonry-grid .video-card:hover .video-info .video-title {
  color: #f97316;
}
.masonry-grid .video-card .video-thumbnail {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.masonry-grid .video-card .video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.masonry-grid .video-card .video-thumbnail .play-overlay {
  display: none;
}
.masonry-grid .video-card .video-thumbnail .play-overlay .play-button {
  display: none;
}
.masonry-grid .video-card .video-thumbnail .video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  color: white;
  background: #f97316;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.2);
  max-width: 60px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.masonry-grid .video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}
.masonry-grid .video-card .video-info {
  padding: 6px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
}
.masonry-grid .video-card .video-info .video-title {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}
.masonry-grid .video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
}
.masonry-grid .video-card .video-info .video-meta .meta-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.masonry-grid .video-card .video-info .video-meta .meta-left .views {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 8px;
  color: #f97316;
  font-weight: 600;
}
.masonry-grid .video-card .video-info .video-meta .meta-left .views::before {
  content: "👁";
  font-size: 10px;
}
.masonry-grid .video-card .video-info .video-meta .meta-left .date {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(118, 75, 162, 0.1);
  border-radius: 8px;
  color: #fb923c;
  font-weight: 600;
}
.masonry-grid .video-card .video-info .video-meta .meta-left .date::before {
  content: "📅";
  font-size: 10px;
}
.masonry-grid .video-card .video-info .video-meta .meta-right .quality {
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #4ade80, #fbbf24);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }
}
.filter-section {
  display: none;
}

@media (max-width: 768px) {
  .filter-section {
    display: none;
  }
}
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50%;
  color: #f97316;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 2px solid rgba(102, 126, 234, 0.2);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.back-to-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f97316, #fb923c);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}
.back-to-top:hover::before {
  opacity: 1;
}
.back-to-top:hover .layui-icon {
  color: #ffffff;
  transform: translateY(-2px);
}
.back-to-top .layui-icon {
  font-size: 24px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .header .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: none;
    z-index: 999;
  }
  .header .nav-menu.active {
    display: flex;
  }
  .header .nav-menu .nav-link {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 8px;
    border-left: 2px solid transparent;
    border-bottom: none;
  }
  .header .nav-menu .nav-link::after {
    display: none;
  }
  .header .nav-menu .nav-link:hover, .header .nav-menu .nav-link.active {
    border-left: 2px solid #f97316;
    background-color: rgba(249, 115, 22, 0.05);
  }
  .header .menu-toggle {
    display: flex;
  }
  .search-section {
    padding: 32px 0;
    margin-bottom: 16px;
  }
  .search-section .search-wrapper {
    padding: 0 16px;
  }
  .search-section .search-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .search-section .search-box input {
    padding: 8px 12px;
    font-size: 14px;
  }
  .search-section .search-box .search-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .category-section {
    padding: 16px 0;
  }
  .main-content {
    padding: 80px 0 16px;
  }
  .main-content .main-wrapper .container {
    padding: 0;
  }
  .sidebar-ads {
    display: none;
  }
  .main-wrapper .sidebar-ads {
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 0 16px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
  }
  .masonry-grid .video-card.featured, .masonry-grid .video-card.medium {
    grid-column: span 1;
    grid-row: span 1;
  }
  .masonry-grid .video-card.featured .video-thumbnail, .masonry-grid .video-card.medium .video-thumbnail {
    padding-top: 56.25%;
  }
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
  .back-to-top .layui-icon {
    font-size: 18px;
  }
  .video-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .video-card .video-thumbnail .play-overlay {
    display: none;
  }
  .masonry-grid .video-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .masonry-grid .video-card:hover .play-overlay {
    opacity: 0 !important;
    background: none !important;
  }
  .masonry-grid .video-card:hover .play-button {
    transform: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-content .main-wrapper {
    gap: 20px;
  }
  .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .masonry-grid .video-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 768px) {
  .pagination {
    gap: 4px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .pagination .page-btn {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .pagination .page-btn.prev, .pagination .page-btn.next {
    padding: 0 8px;
  }
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #f97316, #fb923c);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgb(250.280334728, 144.8744769874, 71.719665272), rgb(252.0251256281, 173.9346733668, 109.9748743719));
}

@media (max-width: 768px) {
  .footer {
    padding: 24px 0 16px;
  }
  .footer .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
  }
  .footer .footer-links .link-label {
    font-size: 16px;
    margin-bottom: 5px;
    width: 100%;
  }
  .footer .footer-links .link-label::before {
    height: 16px;
  }
  .footer .footer-links .link-list {
    gap: 8px;
    width: 100%;
    justify-content: flex-start;
  }
  .footer .footer-links .footer-link {
    font-size: 13px;
    padding: 6px 12px;
  }
}
.featured-section {
  margin-bottom: 40px;
}
.featured-section:first-of-type .masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}
.featured-section:first-of-type .masonry-grid .video-card:first-child {
  grid-column: 1/3;
  grid-row: 1/3;
}
.featured-section:first-of-type .masonry-grid .video-card:first-child .video-thumbnail {
  padding-top: 56.25%;
  position: relative;
}
.featured-section:first-of-type .masonry-grid .video-card:first-child .video-thumbnail .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.featured-section:first-of-type .masonry-grid .video-card:first-child .video-thumbnail .play-overlay .play-button {
  width: 60px;
  height: 60px;
  background: rgba(249, 115, 22, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}
.featured-section:first-of-type .masonry-grid .video-card:first-child .video-thumbnail:hover .play-overlay {
  opacity: 1;
}
.featured-section:first-of-type .masonry-grid .video-card:first-child .video-thumbnail .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.featured-section:first-of-type .masonry-grid .video-card:first-child .video-info {
  padding: 15px;
}
.featured-section:first-of-type .masonry-grid .video-card:first-child .video-title {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-section:first-of-type .masonry-grid .video-card:first-child .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.featured-section:first-of-type .masonry-grid .video-card:first-child .video-meta .meta-left {
  display: flex;
  gap: 15px;
  color: #6b7280;
  font-size: 14px;
}
.featured-section:first-of-type .masonry-grid .video-card:first-child .video-meta .meta-left .views, .featured-section:first-of-type .masonry-grid .video-card:first-child .video-meta .meta-left .date {
  color: #6b7280;
}
.featured-section:first-of-type .masonry-grid .video-card:nth-child(2) {
  grid-column: 3/4;
  grid-row: 1/2;
}
.featured-section:first-of-type .masonry-grid .video-card:nth-child(3) {
  grid-column: 3/4;
  grid-row: 2/3;
}
.featured-section:first-of-type .masonry-grid .video-card:nth-child(n+4) {
  display: none;
}
.featured-section:not(:first-of-type) .masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}
.featured-section .video-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
}
.featured-section .video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.featured-section .video-card:hover .video-thumbnail img {
  transform: scale(1.03);
}
.featured-section .video-card:hover .video-info .video-title {
  color: #f97316;
}
.featured-section .video-card .video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.featured-section .video-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.featured-section .video-card .video-thumbnail .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.featured-section .video-card .video-thumbnail .play-overlay .play-button {
  width: 45px;
  height: 45px;
  background: rgba(249, 115, 22, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}
.featured-section .video-card .video-thumbnail .video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: white;
  background: #f97316;
  z-index: 2;
}
.featured-section .video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.featured-section .video-card .video-info {
  padding: 12px;
  background: #ffffff;
}
.featured-section .video-card .video-info .video-title {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}
.featured-section .video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b7280;
  font-size: 12px;
  font-weight: 400;
}
.featured-section .video-card .video-info .video-meta .meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.featured-section .video-card .video-info .video-meta .meta-left .views {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6b7280;
}
.featured-section .video-card .video-info .video-meta .meta-left .views::before {
  content: "👁";
  font-size: 12px;
}
.featured-section .video-card .video-info .video-meta .meta-left .date {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6b7280;
}
.featured-section .video-card .video-info .video-meta .meta-left .date::before {
  content: "📅";
  font-size: 12px;
}
.featured-section .video-card .video-info .video-meta .meta-right .duration {
  padding: 2px 6px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 4px;
  color: #f97316;
  font-weight: 500;
}

.video-list-section .masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .featured-section:first-of-type .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 15px;
  }
  .featured-section:first-of-type .masonry-grid .video-card {
    display: block !important;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child {
    grid-column: 1/4; /* 占据整行 */
    grid-row: 1/2;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child .video-thumbnail {
    padding-top: 50%; /* 更宽的比例 */
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child .video-thumbnail .play-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child .video-info {
    padding: 12px;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child .video-title {
    font-size: 16px;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child .video-meta .meta-left {
    gap: 12px;
    font-size: 13px;
  }
  .featured-section:first-of-type .masonry-grid .video-card:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .featured-section:first-of-type .masonry-grid .video-card:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .featured-section:first-of-type .masonry-grid .video-card:nth-child(4) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .featured-section:first-of-type .masonry-grid .video-card:nth-child(n+5) {
    display: none !important;
  }
  .featured-section:not(:first-of-type) .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .featured-section:not(:first-of-type) .masonry-grid .video-card {
    display: block !important;
  }
  .video-list-section .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .featured-section:first-of-type .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 10px;
  }
  .featured-section:first-of-type .masonry-grid .video-card {
    display: block !important;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child {
    grid-column: span 2;
    grid-row: 1/2;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child .video-thumbnail .play-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child .video-thumbnail .video-duration {
    font-size: 10px;
    padding: 2px 6px;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child .video-info {
    padding: 10px;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child .video-title {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child .video-meta .meta-left {
    gap: 8px;
    font-size: 12px;
  }
  .featured-section:first-of-type .masonry-grid .video-card:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .featured-section:first-of-type .masonry-grid .video-card:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .featured-section:first-of-type .masonry-grid .video-card:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .featured-section:first-of-type .masonry-grid .video-card:nth-child(5) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .featured-section:first-of-type .masonry-grid .video-card:nth-child(n+6) {
    display: none !important;
  }
  .featured-section:first-of-type .masonry-grid .video-card .video-thumbnail {
    padding-top: 56.25% !important;
  }
  .featured-section:not(:first-of-type) .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .featured-section:not(:first-of-type) .masonry-grid .video-card {
    display: block !important;
  }
  .video-list-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }
}
.search-result-section .result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}
.search-result-section .result-header .result-info .current-keyword {
  font-size: 16px;
  color: #6b7280;
}
.search-result-section .keyword-match {
  color: #f97316;
  font-weight: 600;
  padding: 0 2px;
  position: relative;
}
.search-result-section .keyword-match::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(249, 115, 22, 0.2);
  border-radius: 2px;
  z-index: -1;
}

.keyword-highlight {
  color: #f97316;
  font-weight: 600;
  position: relative;
}
.keyword-highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(249, 115, 22, 0.2);
  border-radius: 3px;
  z-index: -1;
}

@media (max-width: 768px) {
  .search-result-section .result-header {
    margin-bottom: 16px;
  }
}
.video-player-section {
  margin-bottom: 40px;
}
.video-player-section .video-player {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16/9;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.15);
}
.video-player-section .video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-player-section .video-info {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.15);
}
.video-player-section .video-info .video-title {
  font-size: 28px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 16px;
  line-height: 1.4;
  background: linear-gradient(135deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.video-player-section .video-info .video-meta {
  display: flex;
  gap: 32px;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
}
.video-player-section .video-info .video-meta .views, .video-player-section .video-info .video-meta .date {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  color: #f97316;
}

.video-player-section .video-info {
  margin-top: 18px;
  padding: 24px 32px 20px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin-left: auto;
  margin-right: auto;
}

.video-player-section .video-title {
  font-size: 22px;
  font-weight: 700;
  color: #22223b;
  line-height: 1.4;
  margin: 0 0 10px 0;
  word-break: break-all;
}

.video-player-section .video-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.video-player-section .video-tags .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 14px;
  border-radius: 12px;
  color: #fff;
  background: #ff6b9d;
}

.video-player-section .video-tags .tag.hot {
  background: #ff6b9d;
}

.video-player-section .video-tags .tag.recommend {
  background: #ff9800;
}

.video-player-section .video-desc {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 8px;
  word-break: break-all;
}

.video-player-section .video-date {
  font-size: 13px;
  color: #8b8b8b;
  margin-top: 0;
}

.related-section .section-header {
  margin-bottom: 20px;
}
.related-section .section-header h2 {
  font-size: 20px;
  font-weight: 500;
  color: #374151;
}
.related-section .masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .related-section .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .related-section .section-header {
    margin-bottom: 16px;
  }
  .related-section .section-header h2 {
    font-size: 18px;
  }
  .related-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.plyr--video {
  border-radius: 0;
  --plyr-color-main: #f97316;
}

@media (max-width: 768px) {
  .video-card {
    border-radius: 6px;
  }
  .video-card .video-thumbnail {
    border-radius: 0;
    box-shadow: none;
  }
  .video-card .video-thumbnail .video-tag {
    font-size: 9px;
    padding: 2px 6px;
    top: 6px;
    left: 6px;
    border-radius: 3px;
  }
  .video-card .video-thumbnail .video-duration {
    font-size: 9px;
    padding: 2px 6px;
    bottom: 6px;
    right: 6px;
    border-radius: 3px;
  }
  .video-card .video-info {
    padding: 8px;
  }
  .video-card .video-info .video-title {
    font-size: 12px;
    margin-bottom: 4px;
    -webkit-line-clamp: 2;
    line-height: 1.3;
  }
  .video-card .video-info .video-meta .meta-left {
    gap: 6px;
  }
  .video-card .video-info .video-meta .meta-left .views, .video-card .video-info .video-meta .meta-left .date {
    font-size: 9px;
  }
  .video-card .video-info .video-meta .meta-left .views::before, .video-card .video-info .video-meta .meta-left .date::before {
    font-size: 9px;
  }
  .video-card .video-info .video-meta .meta-right .duration {
    padding: 2px 5px;
    font-size: 9px;
    border-radius: 3px;
  }
  .video-card:hover {
    transform: none;
  }
  .featured-section:first-of-type .masonry-grid .video-card:first-child .video-info .video-title {
    font-size: 13px;
  }
}
.list-title-section {
  margin: 40px 0 30px;
  text-align: center;
  position: relative;
}
.list-title-section .list-title-content {
  padding: 0 20px;
}
.list-title-section .list-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.list-title-section .list-main-title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(249, 115, 22, 0.1);
  z-index: -1;
  border-radius: 4px;
}
.list-title-section .list-subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .list-title-section {
    margin: 30px 0 25px;
  }
  .list-title-section .list-main-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .list-title-section .list-subtitle {
    font-size: 14px;
  }
  .list-title-section::after {
    width: 40px;
    height: 2px;
    bottom: -10px;
  }
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 18px;
    padding-left: 12px;
  }
  .section-header h2::before {
    width: 4px;
    height: 18px;
  }
  .section-header .view-all {
    padding: 6px 12px;
    font-size: 12px;
    gap: 4px;
  }
  .section-header .view-all i {
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-header h2 {
    font-size: 20px;
  }
  .section-header .view-all {
    padding: 6px 16px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .section-header-with-search {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .section-header-with-search .search-box {
    max-width: 100%;
    width: 100%;
    margin-top: 5px;
  }
  .section-header-with-search .search-box .search-input-wrapper {
    gap: 5px;
  }
  .section-header-with-search .search-box input {
    font-size: 13px;
    padding: 5px 0;
  }
  .section-header-with-search .search-box .search-btn {
    padding: 5px 10px;
    font-size: 12px;
  }
  .section-header-with-button {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .section-header-with-button h2 {
    font-size: 18px;
    padding-left: 12px;
  }
  .section-header-with-button h2::before {
    width: 4px;
    height: 18px;
  }
  .section-header-with-button .view-all {
    padding: 6px 12px;
    font-size: 12px;
    gap: 4px;
  }
  .section-header-with-button .view-all i {
    font-size: 12px;
  }
  .section-header h2 {
    font-size: 18px;
    padding-left: 12px;
  }
  .section-header h2::before {
    width: 4px;
    height: 18px;
  }
}

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