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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
  background: #1A1A1A;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 149, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(255, 214, 10, 0.08) 0%, transparent 50%);
  color: #E5E7EB;
  line-height: 1.6;
  min-height: 100vh;
}

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

.header {
  background: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.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;
  filter: brightness(1.2) contrast(1.1);
}
.header .logo .site-name {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header .nav-menu {
  display: flex;
  gap: 24px;
}
.header .nav-menu .nav-link {
  color: #9CA3AF;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.header .nav-menu .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  opacity: 0.1;
  transition: left 0.3s ease;
  z-index: -1;
}
.header .nav-menu .nav-link:hover, .header .nav-menu .nav-link.active {
  color: #FFFFFF;
  background: rgba(255, 149, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 149, 0, 0.3);
}
.header .nav-menu .nav-link:hover::before, .header .nav-menu .nav-link.active::before {
  left: 0;
}
.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: #E5E7EB;
  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: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}
.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: 600;
  margin-bottom: 8px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.search-section .search-subtitle {
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 24px;
  font-weight: 400;
  opacity: 0.9;
}
.search-section .search-box {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.search-section .search-box:focus-within {
  border-color: #FF9500;
  box-shadow: 0 0 24px rgba(255, 149, 0, 0.3);
  transform: translateY(-2px);
}
.search-section .search-box input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: #E5E7EB;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
}
.search-section .search-box input::placeholder {
  color: #9CA3AF;
  font-weight: 400;
}
.search-section .search-box input:focus {
  outline: none;
}
.search-section .search-box .search-btn {
  padding: 12px 18px;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 149, 0, 0.3);
}
.search-section .search-box .search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.4);
}
.search-section .search-box .search-btn i {
  font-size: 14px;
}
.search-section .hot-searches {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.search-section .hot-searches .hot-label {
  color: #9CA3AF;
  font-size: 13px;
  margin-right: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.search-section .hot-searches .hot-label i {
  color: #FF9500;
  font-size: 14px;
}
.search-section .hot-searches .hot-tag {
  padding: 4px 12px;
  background: rgba(255, 149, 0, 0.08);
  border: 1px solid rgba(255, 149, 0, 0.2);
  border-radius: 14px;
  color: #FF9500;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.search-section .hot-searches .hot-tag:hover {
  background: rgba(255, 149, 0, 0.15);
  border-color: rgba(255, 149, 0, 0.4);
}

.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: 28px;
  position: relative;
}
.section-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FF9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header h2::before {
  content: "";
  width: 4px;
  height: 28px;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 149, 0, 0.4);
}
.section-header .view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  color: #9CA3AF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 149, 0, 0.15);
  backdrop-filter: blur(10px);
  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(255, 149, 0, 0.1), transparent);
  transition: left 0.6s ease;
}
.section-header .view-all .layui-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.section-header .view-all:hover {
  color: #FF9500;
  background: rgba(255, 149, 0, 0.1);
  border-color: rgba(255, 149, 0, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.2);
}
.section-header .view-all:hover::before {
  left: 100%;
}
.section-header .view-all:hover .layui-icon {
  transform: translateX(3px);
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 24px;
  }
  .section-header h2 {
    font-size: 20px;
    gap: 8px;
  }
  .section-header h2::before {
    width: 3px;
    height: 24px;
  }
  .section-header .view-all {
    font-size: 13px;
    padding: 6px 12px;
  }
  .section-header .view-all .layui-icon {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .section-header {
    margin-bottom: 20px;
  }
  .section-header h2 {
    font-size: 18px;
    gap: 6px;
  }
  .section-header h2::before {
    width: 3px;
    height: 20px;
  }
  .section-header .view-all {
    font-size: 12px;
    padding: 5px 10px;
  }
  .section-header .view-all .layui-icon {
    font-size: 10px;
  }
}

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

@media (max-width: 768px) {
  .banner-ad {
    margin: 16px 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: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}
.video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.5);
}
.video-card:hover::before {
  opacity: 0.05;
}
.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}
.video-card:hover .video-thumbnail .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.video-card:hover .video-thumbnail .video-tag {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}
.video-card:hover .video-info .video-title {
  color: #FF9500;
}
.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.5s ease;
  filter: brightness(0.95);
}
.video-card .video-thumbnail .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 70px;
  height: 70px;
  background: rgba(0, 212, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.video-card .video-thumbnail .play-overlay i {
  color: white;
  font-size: 28px;
  margin-left: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.video-card .video-thumbnail .video-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 11px;
  border-radius: 12px;
  z-index: 2;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.video-card .video-info {
  padding: 16px;
  background: transparent;
}
.video-card .video-info .video-title {
  font-size: 14px;
  font-weight: 600;
  color: #E5E7EB;
  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: #9CA3AF;
}
.video-card .video-info .video-meta .video-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.video-card .video-info .video-meta .video-tags .tag {
  background: rgba(0, 212, 255, 0.2);
  color: #FF9500;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 500;
  border: 1px solid rgba(0, 212, 255, 0.3);
}
.video-card .video-info .video-meta .meta-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.video-card .video-info .video-meta .meta-right .views {
  display: flex;
  align-items: center;
  gap: 4px;
}
.video-card .video-info .video-meta .meta-right .views i {
  font-size: 12px;
  color: #FF9500;
}
.video-card .video-info .video-meta .meta-right .date {
  color: #9CA3AF;
  font-size: 11px;
}

.ad-section {
  margin: 48px 0;
}
.ad-section .banner-ad {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.ad-section .banner-ad .ad-content h3 {
  font-size: 18px;
  color: #E5E7EB;
  margin-bottom: 8px;
}
.ad-section .banner-ad .ad-content p {
  color: #9CA3AF;
  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: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.pagination-container ul.page-no li.active {
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 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(0, 212, 255, 0.2), 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: #E5E7EB;
  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, #FF9500 0%, #FF6B35 100%);
}
.pagination-container ul li:hover:not(.active):not(.disabled),
.pagination-container ul li a:hover:not(.active):not(.disabled) {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.2);
  color: #FF9500;
}
.pagination-container ul li.disabled,
.pagination-container ul li a.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  color: #9CA3AF;
}
.pagination-container ul li.page-options {
  min-width: 90px;
  font-weight: 500;
  margin: 0 4px;
}
.pagination-container ul li.page-options a {
  color: #FF9500;
  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(135deg, #FF9500 0%, #FF6B35 100%);
  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: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 0 20px;
  margin-top: 48px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}
.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: #FFFFFF;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  -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: 8px;
}
.footer .footer-section ul li a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-section ul li a:hover {
  color: #FF9500;
}
.footer .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 1px solid rgba(255, 149, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.footer .footer-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  border-radius: 0 2px 2px 0;
}
.footer .footer-links::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  background: #FF9500;
  border-radius: 50%;
  opacity: 0.6;
}
.footer .footer-links .link-label {
  color: #E5E7EB;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  padding: 6px 12px 6px 0;
  margin-right: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .footer-links .link-label::before {
  content: "🔗";
  font-size: 14px;
  opacity: 0.8;
}
.footer .footer-links .link-label::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, #FF9500, transparent);
  opacity: 0.8;
}
.footer .footer-links .link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  flex: 1;
}
.footer .footer-links .footer-link {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 6px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  backdrop-filter: blur(5px);
}
.footer .footer-links .footer-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  opacity: 0;
  border-radius: 18px;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.footer .footer-links .footer-link:hover {
  color: white;
  background: rgba(255, 149, 0, 0.1);
  border-color: rgba(255, 149, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.25);
}
.footer .footer-links .footer-link:hover::before {
  opacity: 0.9;
}
.footer .footer-links .footer-link:active {
  transform: translateY(-1px);
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9CA3AF;
  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: rgba(255, 255, 255, 0.06);
  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: #FF9500;
  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: #FFD60A;
}
.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: #FF9500;
  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: #FFFFFF;
  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: #E5E7EB;
  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: 50px;
  height: 50px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  color: #E5E7EB;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.back-to-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  border-color: #FF9500;
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
}
.back-to-top:hover::before {
  opacity: 0.9;
}
.back-to-top:hover .layui-icon {
  color: white;
  transform: translateY(-2px);
}
.back-to-top .layui-icon {
  font-size: 22px;
  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(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
  }
  .header .nav-menu.active {
    display: flex;
  }
  .header .nav-menu .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .header .menu-toggle {
    display: flex;
  }
  .search-section {
    padding: 24px 0;
    margin-bottom: 24px;
    border-radius: 12px;
  }
  .search-section .search-wrapper {
    padding: 0 16px;
  }
  .search-section .search-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .search-section .search-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .search-section .search-box {
    border-radius: 10px;
    padding: 3px;
  }
  .search-section .search-box input {
    padding: 10px 14px;
    font-size: 14px;
  }
  .search-section .search-box .search-btn {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 7px;
  }
  .search-section .search-box .search-btn i {
    font-size: 13px;
  }
  .search-section .hot-searches {
    margin-top: 16px;
  }
  .search-section .hot-searches .hot-label {
    font-size: 12px;
  }
  .search-section .hot-searches .hot-tag {
    padding: 3px 10px;
    font-size: 10px;
  }
  .search-result-section {
    margin-top: 24px;
  }
  .search-result-section .result-header {
    padding: 16px 18px;
    border-radius: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }
  .search-result-section .result-header::after {
    display: none;
  }
  .search-result-section .result-header::before {
    width: 3px;
  }
  .search-result-section .result-header .result-info {
    width: 100%;
  }
  .search-result-section .result-header .result-info h2 {
    font-size: 18px;
    gap: 6px;
  }
  .search-result-section .result-header .result-info h2::before {
    font-size: 14px;
  }
  .search-result-section .result-header .result-info .current-keyword {
    font-size: 13px;
    gap: 6px;
  }
  .search-result-section .result-header .result-info .current-keyword::before {
    font-size: 14px;
  }
  .search-result-section .result-header .result-info .current-keyword span {
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 10px;
  }
  .search-result-section .result-header .result-count {
    font-size: 12px;
    padding: 5px 10px;
    align-self: flex-end;
    border-radius: 10px;
  }
  .search-result-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }
  .search-result-section .masonry-grid::before {
    background-size: 15px 15px;
    opacity: 0.3;
  }
  .search-result-section .no-results {
    padding: 60px 16px;
    border-radius: 16px;
  }
  .search-result-section .no-results .no-results-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .search-result-section .no-results .no-results-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .search-result-section .no-results .no-results-desc {
    font-size: 14px;
  }
  .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: 46px;
    height: 46px;
  }
  .back-to-top .layui-icon {
    font-size: 20px;
  }
  .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: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00E1FF 0%, #9B5CF6 100%);
}

@media (max-width: 768px) {
  .footer {
    padding: 24px 0 16px;
  }
  .footer .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 10px;
  }
  .footer .footer-links::after {
    display: none;
  }
  .footer .footer-links .link-label {
    font-size: 14px;
    padding: 4px 8px 4px 0;
    margin-right: 0;
    width: 100%;
  }
  .footer .footer-links .link-label::before {
    font-size: 12px;
  }
  .footer .footer-links .link-label::after {
    width: 60%;
  }
  .footer .footer-links .link-list {
    gap: 8px;
    width: 100%;
    justify-content: flex-start;
  }
  .footer .footer-links .footer-link {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 14px;
  }
}
.featured-section .featured-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
  width: 100%;
}
.featured-section .featured-grid .featured-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.featured-section .featured-grid .featured-top .large-card .video-thumbnail {
  aspect-ratio: 16/9;
  position: relative;
}
.featured-section .featured-grid .featured-top .large-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-section .featured-grid .featured-top .large-card .video-info {
  padding: 16px;
}
.featured-section .featured-grid .featured-top .large-card .video-info .video-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.featured-section .featured-grid .featured-top .large-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9CA3AF;
}
.featured-section .featured-grid .featured-top .large-card .video-info .video-meta .video-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.featured-section .featured-grid .featured-top .large-card .video-info .video-meta .video-tags .tag {
  background: rgba(255, 149, 0, 0.2);
  color: #FF9500;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 500;
  border: 1px solid rgba(255, 149, 0, 0.3);
}
.featured-section .featured-grid .featured-top .large-card .video-info .video-meta .meta-right .date {
  color: #9CA3AF;
  font-size: 11px;
}
.featured-section .featured-grid .featured-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.featured-section .featured-grid .featured-bottom .small-card .video-thumbnail {
  aspect-ratio: 16/9;
  position: relative;
}
.featured-section .featured-grid .featured-bottom .small-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-section .featured-grid .featured-bottom .small-card .video-info {
  padding: 12px;
}
.featured-section .featured-grid .featured-bottom .small-card .video-info .video-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.featured-section .featured-grid .featured-bottom .small-card .video-info .video-meta {
  font-size: 11px;
  color: #9CA3AF;
}
.featured-section .featured-grid .featured-bottom .small-card .video-info .video-meta .date {
  color: #9CA3AF;
}

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

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

@media (min-width: 768px) and (max-width: 991px) {
  .featured-section .featured-grid {
    gap: 20px;
  }
  .featured-section .featured-grid .featured-top {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .featured-section .featured-grid .featured-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .featured-section .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .video-list-section {
    margin-top: 24px;
  }
  .video-list-section .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .featured-section .featured-grid {
    gap: 16px;
  }
  .featured-section .featured-grid .featured-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .featured-section .featured-grid .featured-top .large-card .video-info {
    padding: 14px;
  }
  .featured-section .featured-grid .featured-top .large-card .video-info .video-title {
    font-size: 15px;
  }
  .featured-section .featured-grid .featured-top .large-card .video-info .video-meta {
    font-size: 11px;
  }
  .featured-section .featured-grid .featured-top .large-card .video-info .video-meta .video-tags {
    gap: 4px;
  }
  .featured-section .featured-grid .featured-top .large-card .video-info .video-meta .video-tags .tag {
    font-size: 9px;
    padding: 2px 5px;
  }
  .featured-section .featured-grid .featured-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .featured-section .featured-grid .featured-bottom .small-card .video-info {
    padding: 10px;
  }
  .featured-section .featured-grid .featured-bottom .small-card .video-info .video-title {
    font-size: 13px;
  }
  .featured-section .featured-grid .featured-bottom .small-card .video-info .video-meta {
    font-size: 10px;
  }
  .featured-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .video-list-section {
    margin-top: 20px;
  }
  .video-list-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 24px;
  }
}
.search-result-section {
  margin-top: 32px;
}
.search-result-section .result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 149, 0, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}
.search-result-section .result-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(255, 149, 0, 0.4);
}
.search-result-section .result-header::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.search-result-section .result-header .result-info {
  flex: 1;
  position: relative;
}
.search-result-section .result-header .result-info h2 {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-result-section .result-header .result-info .current-keyword {
  color: #9CA3AF;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.search-result-section .result-header .result-info .current-keyword::before {
  content: "·";
  color: #FF9500;
  font-size: 16px;
  font-weight: bold;
}
.search-result-section .result-header .result-info .current-keyword span {
  color: #FF9500;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(255, 149, 0, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(255, 149, 0, 0.25);
  backdrop-filter: blur(5px);
  position: relative;
}
.search-result-section .result-header .result-info .current-keyword span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 8px 8px 0 0;
}
.search-result-section .result-header .result-count {
  color: #9CA3AF;
  font-size: 13px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  position: relative;
}
.search-result-section .result-header .result-count em {
  color: #FF9500;
  font-style: normal;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 149, 0, 0.3);
}
.search-result-section .result-header .result-count::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 149, 0, 0.05) 0%, transparent 100%);
  border-radius: 12px;
  z-index: -1;
}
.search-result-section .masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
}
.search-result-section .masonry-grid::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(90deg, rgba(255, 149, 0, 0.02) 1px, transparent 1px), linear-gradient(rgba(255, 149, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 8px;
  z-index: -1;
  opacity: 0.5;
}
.search-result-section .no-results {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 149, 0, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.search-result-section .no-results::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.03) 0%, transparent 70%);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}
.search-result-section .no-results .no-results-icon {
  font-size: 64px;
  color: #9CA3AF;
  margin-bottom: 20px;
  opacity: 0.7;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.search-result-section .no-results .no-results-title {
  font-size: 22px;
  color: #E5E7EB;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #E5E7EB 0%, #FF9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.search-result-section .no-results .no-results-desc {
  color: #9CA3AF;
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

@keyframes float {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
}
@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: rgba(255, 255, 255, 0.06);
  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: rgba(255, 255, 255, 0.06);
}
@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: #FFFFFF;
  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: #E5E7EB;
}
.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: #FF9500;
}
.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: #E5E7EB;
}
.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, #FF9500, #FF6B35);
  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: #FFFFFF;
}
.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: #FF9500;
}

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