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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #F5E6D3;
  color: #1A202C;
  line-height: 1.6;
}

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

.header {
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(229, 90, 28, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.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: 36px;
}
.header .logo .site-name {
  font-size: 20px;
  font-weight: 600;
  color: #E55A1C;
}
.header .nav-menu {
  display: flex;
  gap: 24px;
}
.header .nav-menu .nav-link {
  color: #4A5568;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.header .nav-menu .nav-link:hover, .header .nav-menu .nav-link.active {
  color: #E55A1C;
  background: rgba(59, 130, 246, 0.1);
}
.header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.header .menu-toggle span {
  width: 24px;
  height: 2px;
  background: #1A202C;
  transition: 0.3s;
  position: absolute;
  left: 8px;
}
.header .menu-toggle span:nth-child(1) {
  top: 12px;
}
.header .menu-toggle span:nth-child(2) {
  top: 19px;
}
.header .menu-toggle span:nth-child(3) {
  top: 26px;
}
.header .menu-toggle.active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .menu-toggle.active span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.search-section {
  padding: 32px 0;
  margin-bottom: 40px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(229, 90, 28, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.search-section .search-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.search-section .search-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1A202C;
  position: relative;
}
.search-section .search-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #E55A1C, #D1451E);
  border-radius: 1px;
}
.search-section .search-subtitle {
  font-size: 13px;
  color: #4A5568;
  margin-bottom: 20px;
  font-weight: 400;
}
.search-section .search-box {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  background: white;
  border: 1px solid rgba(229, 90, 28, 0.2);
  border-radius: 10px;
  padding: 3px;
  box-shadow: 0 2px 12px rgba(229, 90, 28, 0.08);
  transition: all 0.3s ease;
}
.search-section .search-box:focus-within {
  border-color: #E55A1C;
  box-shadow: 0 4px 16px rgba(229, 90, 28, 0.15);
  transform: translateY(-1px);
}
.search-section .search-box input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: #1A202C;
  font-size: 14px;
  font-weight: 500;
  border-radius: 7px;
}
.search-section .search-box input::placeholder {
  color: #4A5568;
  font-weight: 400;
}
.search-section .search-box input:focus {
  outline: none;
}
.search-section .search-box .search-btn {
  padding: 10px 16px;
  background: linear-gradient(135deg, #E55A1C, #D1451E);
  border: none;
  border-radius: 7px;
  color: white;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(229, 90, 28, 0.25);
}
.search-section .search-box .search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(229, 90, 28, 0.35);
}
.search-section .search-box .search-btn i {
  font-size: 13px;
}

.main-content {
  padding: 90px 0 32px;
}
.main-content .main-wrapper {
  display: flex;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8px;
}
.main-content .main-wrapper .container {
  flex: 1;
  min-width: 0;
  max-width: 1280px;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

@media (max-width: 768px) {
  .main-wrapper {
    flex-direction: column;
  }
  .main-wrapper .sidebar-ads {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
  }
  .main-wrapper .sidebar-ads .ad-card {
    width: 100%;
    box-sizing: border-box;
  }
  .main-wrapper .sidebar-ads .ad-card .ad-content img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding: 0 4px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1A202C;
  position: relative;
  padding-left: 20px;
  margin: 0;
}
.section-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 28px;
  background: linear-gradient(135deg, #E55A1C, #D1451E);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(229, 90, 28, 0.3);
}
.section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E55A1C, transparent);
  border-radius: 2px;
}
.section-header .view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  color: #E55A1C;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: rgba(229, 90, 28, 0.08);
  border: 2px solid rgba(229, 90, 28, 0.2);
  position: relative;
  overflow: hidden;
}
.section-header .view-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229, 90, 28, 0.1), transparent);
  transition: left 0.5s ease;
}
.section-header .view-all .layui-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.section-header .view-all:hover {
  color: white;
  background: #E55A1C;
  border-color: #E55A1C;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 90, 28, 0.3);
}
.section-header .view-all:hover::before {
  left: 100%;
}
.section-header .view-all:hover .layui-icon {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 24px;
  }
  .section-header h2 {
    font-size: 22px;
    padding-left: 16px;
  }
  .section-header h2::before {
    width: 4px;
    height: 20px;
  }
  .section-header h2::after {
    width: 40px;
    height: 2px;
    bottom: -6px;
  }
  .section-header .view-all {
    padding: 8px 16px;
    font-size: 12px;
  }
  .section-header .view-all .layui-icon {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .section-header {
    margin-bottom: 20px;
  }
  .section-header h2 {
    font-size: 20px;
    padding-left: 12px;
  }
  .section-header h2::before {
    width: 3px;
    height: 18px;
  }
  .section-header h2::after {
    width: 30px;
    height: 2px;
    bottom: -4px;
  }
  .section-header .view-all {
    padding: 6px 12px;
    font-size: 11px;
  }
  .section-header .view-all .layui-icon {
    font-size: 10px;
  }
}

.banner-ad {
  margin: 24px 0;
}

@media (max-width: 768px) {
  .banner-ad {
    margin: 16px 0;
  }
}
.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: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(229, 90, 28, 0.1);
  position: relative;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(229, 90, 28, 0.15);
  border-color: rgba(229, 90, 28, 0.3);
}
.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}
.video-card:hover .video-thumbnail .play-overlay {
  opacity: 1;
  transform: scale(1);
}
.video-card:hover .video-info .video-title {
  color: #E55A1C;
}
.video-card .video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-card .video-thumbnail .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.video-card .video-thumbnail .play-overlay i {
  color: #E55A1C;
  font-size: 24px;
  margin-left: 3px;
}
.video-card .video-thumbnail .video-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #E55A1C, #D1451E);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(229, 90, 28, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 11px;
  border-radius: 12px;
  z-index: 2;
  font-weight: 500;
}
.video-card .video-info {
  padding: 16px;
  background: #FFFFFF;
}
.video-card .video-info .video-title {
  font-size: 14px;
  font-weight: 600;
  color: #1A202C;
  line-height: 1.4;
  margin-bottom: 8px;
  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;
  font-size: 12px;
  color: #4A5568;
}
.video-card .video-info .video-meta .views {
  display: flex;
  align-items: center;
  gap: 4px;
}
.video-card .video-info .video-meta .views i {
  font-size: 14px;
  color: #E55A1C;
}
.video-card .video-info .video-meta .date {
  color: #4A5568;
}

.ad-section {
  margin: 48px 0;
}
.ad-section .banner-ad {
  background: #FFFFFF;
  border: 1px dashed #CBD5E0;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}
.ad-section .banner-ad .ad-content h3 {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 8px;
}
.ad-section .banner-ad .ad-content p {
  color: #4A5568;
  font-size: 14px;
}

.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 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px auto 24px;
  padding: 24px 0;
}
.pagination-container ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  align-items: center;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 90, 28, 0.08);
  backdrop-filter: blur(10px);
}
.pagination-container ul.page-no li.active {
  background: linear-gradient(135deg, #e55a1c, #ff6b35);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(229, 90, 28, 0.4);
  transform: scale(1.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.pagination-container ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
}
.pagination-container ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.pagination-container ul li:hover:before {
  left: 100%;
}
.pagination-container ul li:active {
  transform: scale(0.95);
}
.pagination-container ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #1A202C;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.pagination-container ul li a.active {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  background: linear-gradient(135deg, #e55a1c, #ff6b35);
}
.pagination-container ul li:hover:not(.active):not(.disabled),
.pagination-container ul li a:hover:not(.active):not(.disabled) {
  background: rgba(229, 90, 28, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 90, 28, 0.15);
  color: #E55A1C;
}
.pagination-container ul li.disabled,
.pagination-container ul li a.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  color: #4A5568;
}
.pagination-container ul li.page-options {
  min-width: 90px;
  font-weight: 500;
  margin: 0 4px;
}
.pagination-container ul li.page-options a {
  color: #E55A1C;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}
.pagination-container ul li.page-options a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E55A1C, #D1451E);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.pagination-container ul li.page-options a:hover:after {
  width: 100%;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 32px auto 20px;
  }
  .pagination-container ul {
    gap: 2px;
    padding: 8px;
  }
  .pagination-container ul li {
    min-width: 40px;
    height: 40px;
  }
  .pagination-container ul li a {
    font-size: 14px;
  }
  .pagination-container ul li.page-options {
    min-width: 70px;
  }
  .pagination-container ul li.page-options a {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .pagination-container {
    margin: 24px auto 16px;
  }
  .pagination-container ul {
    flex-wrap: wrap;
    gap: 4px;
    padding: 12px;
  }
  .pagination-container ul li {
    min-width: 36px;
    height: 36px;
  }
  .pagination-container ul li a {
    font-size: 13px;
  }
  .pagination-container ul li.page-options {
    min-width: 60px;
    order: -1;
    width: 100%;
    margin: 0 0 8px 0;
  }
  .pagination-container ul li.page-options a {
    font-size: 11px;
  }
}

.footer {
  background: #FFFFFF;
  border-top: 1px solid #CBD5E0;
  padding: 40px 0 20px;
  margin-top: 48px;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 24px;
}
.footer .footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1A202C;
  margin-bottom: 16px;
}
.footer .footer-section ul {
  list-style: none;
}
.footer .footer-section ul li {
  margin-bottom: 8px;
}
.footer .footer-section ul li a {
  color: #4A5568;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-section ul li a:hover {
  color: #E55A1C;
}
.footer .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px;
  background: #FFFFFF;
  border-radius: 12px;
  border-left: 4px solid #E55A1C;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}
.footer .footer-links:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #E55A1C, #D1451E);
  border-radius: 2px;
}
.footer .footer-links .link-label {
  color: #1A202C;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
  margin-right: 8px;
}
.footer .footer-links .link-label:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #E55A1C, transparent);
}
.footer .footer-links .link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer .footer-links .footer-link {
  color: #4A5568;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.footer .footer-links .footer-link:hover {
  color: #E55A1C;
  border-bottom-color: #E55A1C;
  transform: translateX(4px);
}
.footer .footer-links .footer-link:before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #E55A1C;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: all 0.3s ease;
}
.footer .footer-links .footer-link:hover:before {
  transform: translateY(-50%) scale(1);
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #CBD5E0;
  color: #4A5568;
  font-size: 14px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 30px;
  width: 100%;
}
.masonry-grid .video-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
  position: relative;
}
.masonry-grid .video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.masonry-grid .video-card:hover .play-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
}
.masonry-grid .video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1);
}
.masonry-grid .video-card .video-thumbnail {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.masonry-grid .video-card .video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.masonry-grid .video-card .video-thumbnail .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: all 0.2s ease;
}
.masonry-grid .video-card .video-thumbnail .play-overlay .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E55A1C;
  font-size: 20px;
  transition: all 0.2s ease;
}
.masonry-grid .video-card .video-thumbnail .video-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.masonry-grid .video-card .video-thumbnail .video-badges .badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: white;
  background: rgba(0, 0, 0, 0.8);
}
.masonry-grid .video-card .video-thumbnail .video-badges .badge.quality {
  background: #2F855A;
}
.masonry-grid .video-card .video-thumbnail .video-type {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: white;
  background: #E55A1C;
  z-index: 2;
}
.masonry-grid .video-card .video-info {
  padding: 14px;
}
.masonry-grid .video-card .video-info .video-title {
  font-size: 15px;
  font-weight: 500;
  color: #1A202C;
  line-height: 1.4;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.masonry-grid .video-card .video-info .video-meta {
  display: flex;
  gap: 12px;
  color: #4A5568;
  font-size: 13px;
}

@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: 6px;
    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: 44px;
  height: 44px;
  background: #FFFFFF;
  border-radius: 8px;
  color: #4A5568;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #CBD5E0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.back-to-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E55A1C;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.back-to-top:hover {
  transform: translateY(-2px);
  border-color: #E55A1C;
  box-shadow: 0 6px 16px rgba(229, 90, 28, 0.2);
}
.back-to-top:hover::before {
  opacity: 0.1;
}
.back-to-top:hover .layui-icon {
  color: #E55A1C;
  transform: translateY(-2px);
}
.back-to-top .layui-icon {
  font-size: 20px;
  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: #FFFFFF;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(229, 90, 28, 0.2);
    display: none;
  }
  .header .nav-menu.active {
    display: flex;
  }
  .header .nav-menu .nav-link {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 8px;
  }
  .header .menu-toggle {
    display: flex;
  }
  .search-section {
    padding: 24px 0;
    margin-bottom: 24px;
  }
  .search-section .search-wrapper {
    padding: 0 16px;
  }
  .search-section .search-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .search-section .search-subtitle {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .search-section .search-box {
    border-radius: 8px;
    padding: 2px;
  }
  .search-section .search-box input {
    padding: 8px 12px;
    font-size: 14px;
  }
  .search-section .search-box .search-btn {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 6px;
  }
  .category-section {
    padding: 16px 0;
  }
  .main-content {
    padding: 80px 0 16px;
  }
  .main-content .main-wrapper .container {
    padding: 0;
  }
  .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;
  }
  .main-content .container {
    max-width: calc(100% - 280px);
  }
  .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: 6px;
}

::-webkit-scrollbar-track {
  background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
  background: #E55A1C;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(234.2411067194, 123.2608695652, 73.7588932806);
}

@media (max-width: 768px) {
  .footer {
    padding: 24px 0 16px;
  }
  .footer .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer .footer-links .link-list {
    gap: 12px;
  }
  .footer .footer-links .footer-link {
    font-size: 13px;
  }
}
.featured-section .featured-grid {
  display: grid;
  grid-template-areas: "main side";
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px;
  margin-bottom: 48px;
  width: 100%;
}
.featured-section .featured-grid .featured-main {
  grid-area: main;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.featured-section .featured-grid .featured-main .featured-card {
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.featured-section .featured-grid .featured-main .featured-card .video-thumbnail {
  aspect-ratio: 16/9;
  position: relative;
}
.featured-section .featured-grid .featured-main .featured-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-section .featured-grid .featured-main .featured-card .video-thumbnail .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.featured-section .featured-grid .featured-main .featured-card .video-thumbnail .play-overlay i {
  color: #E55A1C;
  font-size: 32px;
  margin-left: 4px;
}
.featured-section .featured-grid .featured-main .featured-card .video-info {
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}
.featured-section .featured-grid .featured-main .featured-card .video-info .video-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  width: 100%;
}
.featured-section .featured-grid .featured-main .featured-card .video-info .video-desc {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.5;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.featured-section .featured-grid .featured-main .featured-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #4A5568;
  margin-bottom: 12px;
}
.featured-section .featured-grid .featured-main .featured-card .video-info .video-meta .meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.featured-section .featured-grid .featured-main .featured-card .video-info .video-meta .meta-left .views, .featured-section .featured-grid .featured-main .featured-card .video-info .video-meta .meta-left .likes, .featured-section .featured-grid .featured-main .featured-card .video-info .video-meta .meta-left .comments {
  display: flex;
  align-items: center;
  gap: 4px;
}
.featured-section .featured-grid .featured-main .featured-card .video-info .video-meta .meta-left .views i, .featured-section .featured-grid .featured-main .featured-card .video-info .video-meta .meta-left .likes i, .featured-section .featured-grid .featured-main .featured-card .video-info .video-meta .meta-left .comments i {
  font-size: 14px;
  color: #E55A1C;
}
.featured-section .featured-grid .featured-main .featured-card .video-info .video-meta .meta-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.featured-section .featured-grid .featured-main .featured-card .video-info .video-meta .meta-right .duration {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}
.featured-section .featured-grid .featured-main .featured-card .video-info .video-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.featured-section .featured-grid .featured-main .featured-card .video-info .video-tags .tag {
  background: linear-gradient(135deg, #E55A1C, #D1451E);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.featured-section .featured-grid .featured-main .featured-card:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.featured-section .featured-grid .featured-side {
  grid-area: side;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.featured-section .featured-grid .featured-side .side-card {
  flex: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.featured-section .featured-grid .featured-side .side-card .video-thumbnail {
  aspect-ratio: 16/9;
}
.featured-section .featured-grid .featured-side .side-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-section .featured-grid .featured-side .side-card .video-info {
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
}
.featured-section .featured-grid .featured-side .side-card .video-info .video-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  width: 100%;
  margin-bottom: 6px;
}
.featured-section .featured-grid .featured-side .side-card .video-info .video-meta {
  font-size: 11px;
  color: #4A5568;
}
.featured-section .featured-grid .featured-side .side-card .video-info .video-meta .date {
  color: #4A5568;
}

.featured-section .masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  width: 100%;
}

.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 .featured-grid {
    grid-template-areas: "main" "side";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .featured-section .featured-side {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    flex-direction: unset !important;
  }
  .featured-section .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .video-list-section .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .featured-section .featured-grid {
    grid-template-areas: "main" "side";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .featured-section .featured-side {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    flex-direction: unset !important;
  }
  .featured-section .featured-main .featured-card .video-info {
    padding: 16px;
  }
  .featured-section .featured-main .featured-card .video-info .video-title {
    font-size: 16px;
  }
  .featured-section .featured-main .featured-card .video-info .video-meta {
    font-size: 12px;
  }
  .featured-section .featured-main .featured-card .video-thumbnail .play-overlay {
    width: 60px;
    height: 60px;
  }
  .featured-section .featured-main .featured-card .video-thumbnail .play-overlay i {
    font-size: 24px;
  }
  .featured-section .featured-side .side-card .video-info {
    padding: 10px;
  }
  .featured-section .featured-side .side-card .video-info .video-title {
    font-size: 13px;
  }
  .featured-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .video-list-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 20px;
  }
}
.search-result-section .result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.search-result-section .result-header .result-info h2 {
  font-size: 20px;
  color: #1A202C;
  font-weight: 500;
  margin-bottom: 8px;
}
.search-result-section .result-header .result-info .current-keyword {
  color: #4A5568;
  font-size: 14px;
}
.search-result-section .result-header .result-info .current-keyword span {
  color: #E55A1C;
  font-weight: 500;
}
.search-result-section .result-header .result-count {
  color: #4A5568;
  font-size: 14px;
}
.search-result-section .result-header .result-count em {
  color: #E55A1C;
  font-style: normal;
  font-weight: 500;
}
.search-result-section .masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .search-result-section .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .search-result-section .result-header {
    margin-bottom: 16px;
  }
  .search-result-section .result-header .result-info h2 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .search-result-section .result-header .result-info .current-keyword {
    font-size: 13px;
  }
  .search-result-section .result-header .result-count {
    font-size: 13px;
  }
  .search-result-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 20px;
  }
}
.video-player-section {
  margin-bottom: 32px;
}
.video-player-section .video-container {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 90, 28, 0.1);
}
.video-player-section .video-player {
  width: 100%;
  aspect-ratio: 16/9;
  background: black;
  position: relative;
}
.video-player-section .video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-player-section .video-info {
  padding: 24px;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .video-player-section .video-info {
    padding: 16px;
  }
}
@media (max-width: 480px) {
  .video-player-section .video-info {
    padding: 12px;
  }
}
.video-player-section .video-info .video-title {
  font-size: 20px;
  font-weight: 600;
  color: #1A202C;
  margin-bottom: 16px;
  line-height: 1.4;
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 768px) {
  .video-player-section .video-info .video-title {
    font-size: 18px;
    margin-bottom: 12px;
    padding: 0 8px;
  }
}
@media (max-width: 480px) {
  .video-player-section .video-info .video-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 0 4px;
  }
}
.video-player-section .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: #4A5568;
}
.video-player-section .video-info .video-meta .meta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.video-player-section .video-info .video-meta .meta-left .views, .video-player-section .video-info .video-meta .meta-left .likes, .video-player-section .video-info .video-meta .meta-left .comments {
  display: flex;
  align-items: center;
  gap: 6px;
}
.video-player-section .video-info .video-meta .meta-left .views i, .video-player-section .video-info .video-meta .meta-left .likes i, .video-player-section .video-info .video-meta .meta-left .comments i {
  font-size: 16px;
  color: #E55A1C;
}
.video-player-section .video-info .video-meta .meta-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.video-player-section .video-info .video-meta .meta-right .duration {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.video-player-section .video-info .video-meta .meta-right .date {
  color: #4A5568;
}
.video-player-section .video-info .video-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.video-player-section .video-info .video-tags .tag {
  background: linear-gradient(135deg, #E55A1C, #D1451E);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.related-section .section-header {
  margin-bottom: 20px;
}
.related-section .section-header h2 {
  font-size: 20px;
  font-weight: 500;
  color: #1A202C;
}
.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: #E55A1C;
}

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