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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  color: #2c2c2c;
  background-color: #f5f6ff;
}
body.menu-open {
  overflow: hidden;
}

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

.header {
  background: linear-gradient(135deg, #fff 0%, #f2f2ff 100%);
  box-shadow: 0 5px 20px rgba(108, 92, 231, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(108, 92, 231, 0.15);
  padding: 0;
  transition: all 0.3s ease;
}
.header:hover {
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.15);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 30px;
  position: relative;
}
.header .container:before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, transparent, rgba(108, 92, 231, 0.3), transparent);
  border-radius: 0 0 50% 50%;
}
.header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  position: relative;
  padding: 5px 0;
}
.header .logo:after {
  content: "";
  position: absolute;
  right: -20px;
  height: 30px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(108, 92, 231, 0.3), transparent);
  display: none;
}
@media (min-width: 992px) {
  .header .logo:after {
    display: block;
  }
}
.header .logo img {
  height: 45px;
  width: auto;
  transition: all 0.3s;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.header .logo img:hover {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  margin-right: 15px;
}
.header .nav:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(108, 92, 231, 0.2), transparent);
  opacity: 0;
  transition: all 0.3s;
}
.header .nav:hover:after {
  opacity: 1;
  bottom: -15px;
}
.header .nav .nav-item {
  text-decoration: none;
  color: #444;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  letter-spacing: 0.3px;
  overflow: hidden;
  z-index: 1;
}
.header .nav .nav-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0.05) 100%);
  border-radius: 25px;
  transform: translateY(100%);
  transition: all 0.3s;
  z-index: -1;
  opacity: 0;
}
.header .nav .nav-item:hover {
  color: #6c5ce7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.15);
}
.header .nav .nav-item:hover:before {
  transform: translateY(0);
  opacity: 1;
}
.header .nav .nav-item.active {
  color: white;
  background: linear-gradient(135deg, #6c5ce7 0%, rgb(75.9272727273, 56.4363636364, 225.7636363636) 100%);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}
.header .nav .nav-item.active:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}
.header .nav .nav-item.active:before {
  opacity: 0;
}
.header .nav .nav-item.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #6c5ce7;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(108, 92, 231, 0.5);
  animation: pulse 2s infinite;
}
.header .nav .nav-item:not(.active):after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #6c5ce7;
  transition: all 0.3s;
  transform: translateX(-50%);
  opacity: 0;
}
.header .nav .nav-item:not(.active):hover:after {
  width: 40%;
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  margin-left: 15px;
  z-index: 1000;
  transition: all 0.3s;
}
.hamburger:hover {
  transform: scale(1.1);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #6c5ce7, rgb(67.9090909091, 47.5454545455, 224.4545454545));
  border-radius: 3px;
  transition: all 0.4s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.hamburger.active {
  transform: rotate(180deg);
}
.hamburger.active span:first-child {
  transform: translateY(9px) rotate(45deg);
  width: 100%;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.hamburger.active span:last-child {
  transform: translateY(-10px) rotate(-45deg);
  width: 100%;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
.main {
  padding: 20px 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;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pagination-container ul li {
  cursor: pointer;
  min-width: 40px;
  height: 40px;
  background: #fff;
  text-align: center;
  color: #2c2c2c;
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(108, 92, 231, 0.05);
}
.pagination-container ul li:hover:not(.active) {
  background: rgba(108, 92, 231, 0.05);
  border-color: rgba(108, 92, 231, 0.3);
  color: #6c5ce7;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.1);
}
.pagination-container ul li.active {
  background: linear-gradient(135deg, #6c5ce7 0%, rgb(67.9090909091, 47.5454545455, 224.4545454545) 100%);
  font-weight: 600;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}
.pagination-container ul li a {
  width: 100%;
  height: 100%;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: inherit;
  padding: 0 10px;
}
.pagination-container ul li a.active {
  background: linear-gradient(135deg, #6c5ce7 0%, rgb(67.9090909091, 47.5454545455, 224.4545454545) 100%);
  font-weight: 600;
  color: white;
}
.pagination-container ul li a.prev-page, .pagination-container ul li a.next-page {
  position: relative;
}
.pagination-container ul li a.prev-page:before, .pagination-container ul li a.next-page:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.pagination-container ul li.page-options {
  min-width: 90px;
  border-radius: 20px;
}
.pagination-container ul li.page-options a {
  position: relative;
  overflow: hidden;
}
.pagination-container ul li.page-options a:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.6s;
}
.pagination-container ul li.page-options a:hover:after {
  left: 100%;
}
.pagination-container ul li.page-options:hover {
  background: rgba(108, 92, 231, 0.05);
}
.pagination-container ul li:disabled, .pagination-container ul li.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #666666;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background-color: #fff;
  border-color: rgba(108, 92, 231, 0.15);
  color: #666666;
  transform: none;
  box-shadow: 0 2px 6px rgba(108, 92, 231, 0.05);
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 30px auto 20px;
  }
  .pagination-container ul {
    gap: 8px;
  }
  .pagination-container ul li {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .pagination-container ul li a {
    padding: 0 8px;
  }
  .pagination-container ul li.page-options {
    min-width: 80px;
  }
}
@media (max-width: 480px) {
  .pagination-container ul {
    gap: 6px;
  }
  .pagination-container ul li {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .pagination-container ul li.page-options {
    min-width: 70px;
  }
}

.recommended {
  margin-bottom: 40px;
}
.recommended .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.recommended .section-header h2 {
  font-size: 20px;
  color: #333;
}
.recommended .section-header .more {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.recommended .section-header .more:hover {
  color: #ff6b81;
}
.recommended .video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.banner {
  margin-bottom: 30px;
  margin-top: 30px;
  background: #f0f0ff;
}
.banner .banner-wrapper {
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
}
.banner .banner-container {
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #f0f0ff, #f5f5ff, #f0f0ff);
}
.banner .banner-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}
.banner .banner-container > *:first-child {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  position: relative;
}
.banner .banner-container > * img {
  width: 100%;
  height: auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.video-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.video-card:hover {
  transform: translateY(-5px);
}
.video-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
}
.video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card .video-thumb .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.video-card .video-thumb .video-tags {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 70%;
}
.video-card .video-thumb .video-tags .tag {
  padding: 2px 8px;
  background: rgba(108, 92, 231, 0.85);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: all 0.3s;
}
.video-card .video-thumb .video-tags .tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.video-card .video-info {
  padding: 10px;
}
.video-card .video-info .video-title {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: 24px;
  font-weight: 600;
}
.section-header .more-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #6c5ce7 0%, rgb(67.9090909091, 47.5454545455, 224.4545454545) 100%);
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.2);
  position: relative;
  overflow: hidden;
}
.section-header .more-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.section-header .more-btn span {
  position: relative;
  z-index: 1;
}
.section-header .more-btn i {
  position: relative;
  z-index: 1;
  font-size: 12px;
  transition: transform 0.3s;
}
.section-header .more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(108, 92, 231, 0.3);
}
.section-header .more-btn:hover:before {
  opacity: 1;
}
.section-header .more-btn:hover i {
  transform: translateX(3px);
}
.section-header .more-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(108, 92, 231, 0.2);
}

.ad-section {
  margin: 40px 0;
}

.ad-banner {
  margin-bottom: 30px;
}
.ad-banner .container {
  max-width: 1200px;
  margin: 0 auto;
}
.ad-banner .ad-link {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.ad-banner .ad-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.ad-banner .ad-link img:hover {
  transform: scale(1.02);
}

.footer {
  background: #fafafa;
  padding: 40px 0 20px;
  color: #666;
  border-top: 1px solid rgba(108, 92, 231, 0.1);
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer .footer-links-section {
  padding-bottom: 30px;
}
.footer .footer-links-section .footer-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.footer .footer-links-section .footer-header h3 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}
.footer .footer-links-section .footer-header h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: linear-gradient(to bottom, #6c5ce7, rgb(52.7272727273, 31.6363636364, 214.8636363636));
  border-radius: 2px;
}
.footer .footer-links-section .footer-header .footer-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(108, 92, 231, 0.2), transparent);
  margin-left: 20px;
}
.footer .footer-links-section .friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer .footer-links-section .friend-links .friend-link {
  display: flex;
  align-items: center;
  color: #666;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(108, 92, 231, 0.1);
}
.footer .footer-links-section .friend-links .friend-link span {
  font-size: 14px;
  transition: color 0.3s;
}
.footer .footer-links-section .friend-links .friend-link:hover {
  background: rgba(108, 92, 231, 0.05);
  border-color: rgba(108, 92, 231, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.1);
}
.footer .footer-links-section .friend-links .friend-link:hover span {
  color: #6c5ce7;
}
.footer .footer-links-section .friend-links .friend-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(108, 92, 231, 0.05);
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #999;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.latest .video-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.search-section {
  padding: 20px 0;
  background-color: #fff;
  margin-bottom: 20px;
}
.search-section .search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 10px;
}
.search-section .search-box .search-input {
  flex: 1;
  height: 40px;
  padding: 0 15px;
  border: 2px solid #6c5ce7;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}
.search-section .search-box .search-input:focus {
  border-color: rgb(67.9090909091, 47.5454545455, 224.4545454545);
  box-shadow: 0 0 5px rgba(108, 92, 231, 0.3);
}
.search-section .search-box .search-btn {
  padding: 0 25px;
  height: 40px;
  background-color: #6c5ce7;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-section .search-box .search-btn:hover {
  background-color: rgb(67.9090909091, 47.5454545455, 224.4545454545);
}

.search-results {
  padding: 40px 0;
}
.search-results .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.search-results .section-header h2 {
  font-size: 24px;
  color: #333;
}
.search-results .section-header .result-info {
  color: #666;
  font-size: 14px;
}
.search-results .section-header .result-info .result-count {
  color: #ff6b81;
  font-weight: bold;
}
.search-results .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.filter-section {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.filter-section .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.filter-section .filter-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.filter-section .filter-group .filter-label {
  font-size: 16px;
  color: #666;
  white-space: nowrap;
}
.filter-section .filter-group .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-section .filter-group .filter-option {
  padding: 6px 16px;
  border-radius: 20px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
  background: #f5f5f5;
}
.filter-section .filter-group .filter-option:hover {
  background: #eeeaff;
  color: #6c5ce7;
}
.filter-section .filter-group .filter-option.active {
  background: #6c5ce7;
  color: #fff;
}

.video-list-section {
  padding: 30px 0;
}
.video-list-section .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination .page-item,
.pagination .page-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 18px;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}
.pagination .page-item:hover,
.pagination .page-next:hover {
  background: #f5f5f5;
  color: #6c5ce7;
}
.pagination .page-item.active,
.pagination .page-next.active {
  background: #6c5ce7;
  color: #fff;
}
.pagination .page-dots {
  color: #999;
  padding: 0 4px;
}
.pagination .page-next {
  padding: 0 20px;
}

@media (max-width: 1200px) {
  .video-list-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .header .container {
    padding: 8px 15px;
  }
  .header .container:before {
    display: none;
  }
  .header .logo:after {
    display: none;
  }
  .header .logo img {
    height: 38px;
  }
  .header .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 999;
  }
  .header .nav:after {
    display: none;
  }
  .header .nav.active {
    display: flex;
    animation: fadeIn 0.4s ease-in-out;
  }
  .header .nav .nav-item {
    font-size: 18px;
    padding: 12px 35px;
  }
  .header .nav .nav-item:hover, .header .nav .nav-item.active {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.2);
  }
  .header .nav .nav-item.active {
    background: linear-gradient(135deg, #6c5ce7 0%, rgb(67.9090909091, 47.5454545455, 224.4545454545) 100%);
  }
  .header .nav .nav-item:not(.active):after {
    bottom: 6px;
  }
  .header .hamburger {
    display: flex;
  }

  .ad-banner .ad-link {
    border-radius: 8px;
  }
  .video-list-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .pagination {
    gap: 4px;
  }
  .pagination .page-item,
  .pagination .page-next {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .pagination .page-next {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .header .search-box {
    display: none;
  }
  .video-grid,
  .latest .video-grid {
    gap: 10px;
  }
  .section-header h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  .recommended .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .latest .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .search-results .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .recommended .video-grid,
  .latest .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .recommended-videos .section-header h2 {
    font-size: 18px;
  }
  .recommended-videos .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .video-card .video-info {
    padding: 8px;
  }
  .video-card .video-info .video-title {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .video-card .video-info .video-meta {
    font-size: 11px;
  }
  .search-section {
    padding: 20px 0;
  }
  .search-section .search-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .search-section .search-box input {
    flex: 1;
    min-width: 0;
    padding: 12px 20px;
    font-size: 14px;
  }
  .search-section .search-box button {
    width: auto;
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 14px;
  }
  .search-results {
    padding: 20px 0;
  }
  .search-results .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .search-results .section-header h2 {
    font-size: 20px;
  }
  .search-results .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .pagination {
    gap: 4px;
  }
  .pagination .page-item,
  .pagination .page-next {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .pagination .page-next {
    padding: 0 15px;
  }
  .video-player-section {
    margin-bottom: 20px;
  }
  .video-player-section .video-description {
    padding: 15px;
  }
  .video-player-section .video-description .description-header h3 {
    font-size: 16px;
  }
}
.video-player-section {
  margin-bottom: 40px;
}
.video-player-section .video-container {
  position: relative;
  background: #000;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.video-player-section .video-description {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.video-player-section .video-description .description-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}
.video-player-section .video-description .description-header h3 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  position: relative;
  padding-left: 12px;
}
.video-player-section .video-description .description-header h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: linear-gradient(to bottom, #6c5ce7, rgb(52.7272727273, 31.6363636364, 214.8636363636));
  border-radius: 2px;
}
.video-player-section .video-description .description-header .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.video-player-section .video-description .description-header .tags .tag {
  padding: 4px 12px;
  background: rgba(108, 92, 231, 0.1);
  color: #6c5ce7;
  border-radius: 15px;
  font-size: 12px;
  transition: all 0.3s;
  border: 1px solid rgba(108, 92, 231, 0.2);
}
.video-player-section .video-description .description-header .tags .tag:hover {
  background: rgba(108, 92, 231, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(108, 92, 231, 0.1);
}
.video-player-section .video-description .description-content {
  color: #666;
  line-height: 1.6;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.video-player-section .video-description .description-content p {
  margin-bottom: 10px;
}
.video-player-section .video-description .description-content ul {
  margin: 10px 0;
  padding-left: 20px;
}
.video-player-section .video-description .description-content ul li {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .video-player-section .video-description .description-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .video-player-section .video-description .description-header h3 {
    margin-bottom: 10px;
  }
  .video-player-section .video-description .description-header .tags {
    justify-content: flex-start;
  }
}
.recommended-videos .section-header {
  margin-bottom: 20px;
}
.recommended-videos .section-header h2 {
  font-size: 20px;
  color: #333;
}
.recommended-videos .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .recommended-videos .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .recommended-videos .video-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.search-recommended-section {
  padding: 30px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(108, 92, 231, 0.05);
}
.search-recommended-section .section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 20px;
}
.search-recommended-section .section-top .section-header {
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}
.search-recommended-section .section-top .search-box {
  display: flex;
  max-width: 400px;
  width: 100%;
  gap: 10px;
}
.search-recommended-section .section-top .search-box .search-input {
  flex: 1;
  height: 40px;
  padding: 0 15px;
  border: 2px solid #6c5ce7;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}
.search-recommended-section .section-top .search-box .search-input:focus {
  border-color: rgb(67.9090909091, 47.5454545455, 224.4545454545);
  box-shadow: 0 0 5px rgba(108, 92, 231, 0.3);
}
.search-recommended-section .section-top .search-box .search-btn {
  padding: 0 20px;
  height: 40px;
  background-color: #6c5ce7;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-recommended-section .section-top .search-box .search-btn:hover {
  background-color: rgb(67.9090909091, 47.5454545455, 224.4545454545);
}
.search-recommended-section .video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
}

@media (max-width: 992px) {
  .search-recommended-section .section-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-recommended-section .section-top .search-box {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .search-recommended-section {
    padding: 20px 0;
  }
  .search-recommended-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 15px;
  }
  .footer .footer-links-section .footer-header {
    margin-bottom: 20px;
  }
  .footer .footer-links-section .footer-header h3 {
    font-size: 18px;
  }
  .footer .footer-links-section .friend-links {
    gap: 10px;
  }
  .footer .footer-links-section .friend-links .friend-link {
    padding: 6px 12px;
  }
  .footer .footer-links-section .friend-links .friend-link span {
    font-size: 13px;
  }
}
.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 20px;
}
.list-header .list-title h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}
.list-header .list-title h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(to bottom, #6c5ce7, rgb(52.7272727273, 31.6363636364, 214.8636363636));
  border-radius: 2px;
}
.list-header .list-title p {
  color: #666;
  font-size: 14px;
}
.list-header .list-title p .count {
  color: #6c5ce7;
  font-weight: 600;
}
.list-header .list-filter {
  display: flex;
  gap: 10px;
}
.list-header .list-filter .filter-item {
  padding: 8px 16px;
  border-radius: 20px;
  background: #fff;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(108, 92, 231, 0.1);
}
.list-header .list-filter .filter-item:hover {
  background: rgba(108, 92, 231, 0.05);
  border-color: rgba(108, 92, 231, 0.2);
  transform: translateY(-2px);
  color: #6c5ce7;
}
.list-header .list-filter .filter-item.active {
  background: #6c5ce7;
  color: white;
  border-color: #6c5ce7;
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.2);
}

@media (max-width: 768px) {
  .list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .list-header .list-title h2 {
    font-size: 20px;
  }
  .list-header .list-filter {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  .list-header .list-filter .filter-item {
    padding: 6px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .main .container .recommended-videos .video-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
  }
}

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