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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  background: #1a1a1a;
  background-image: radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(253, 121, 168, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(162, 155, 254, 0.1) 0%, transparent 50%);
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
    max-width: 100vw;
  }
}

.header {
  background: rgba(45, 45, 45, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108, 92, 231, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 70px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}
.header .header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header .logo a {
  display: block;
  line-height: 0;
}
.header .logo img {
  height: 45px;
  width: auto;
  transition: all 0.3s;
  filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.3));
}
.header .logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(108, 92, 231, 0.6));
}
.header .nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header .nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.header .nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 25px;
  position: relative;
  transition: all 0.3s;
  white-space: nowrap;
}
.header .nav ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  border-radius: 25px;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
.header .nav ul li a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.header .nav ul li a:hover:before {
  opacity: 1;
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
}
.header .nav ul li a.active {
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.header .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 120px;
  flex-shrink: 0;
  gap: 20px;
}

.main-container {
  margin-top: 70px;
  padding: 40px 0;
  min-height: calc(100vh - 70px);
  background: transparent;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .main-container {
    margin-top: 60px;
    min-height: calc(100vh - 60px);
    padding: 25px 0;
  }
}

.page-header {
  text-align: center;
  padding: 40px 0;
  margin-bottom: 30px;
}
.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.page-header p {
  color: #b0b0b0;
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .page-header {
    padding: 25px 0;
  }
  .page-header h1 {
    font-size: 26px;
  }
  .page-header p {
    font-size: 14px;
  }
}

.search-section {
  background: rgba(51, 51, 51, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(108, 92, 231, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.search-section .search-title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.search-section .search-subtitle {
  color: #b0b0b0;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.search-section .search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.search-section .search-box .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #b0b0b0;
  font-size: 20px;
  pointer-events: none;
  transition: all 0.3s;
}
.search-section .search-box input {
  width: 100%;
  height: 60px;
  padding: 0 25px 0 55px;
  border: 2px solid rgba(108, 92, 231, 0.2);
  border-radius: 30px;
  font-size: 16px;
  background: rgba(45, 45, 45, 0.8);
  color: #ffffff;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  font-weight: 500;
}
.search-section .search-box input:focus {
  outline: none;
  border-color: #6c5ce7;
  background: rgba(45, 45, 45, 0.95);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1), 0 0 30px rgba(108, 92, 231, 0.2);
  transform: translateY(-2px);
}
.search-section .search-box input:focus + .search-icon {
  color: #6c5ce7;
}
.search-section .search-box input::placeholder {
  color: #808080;
  font-weight: 400;
}
.search-section .search-box .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-section .search-box .search-btn:hover {
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
  transform: translateY(-50%) scale(1.05);
}
.search-section .search-tags {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.search-section .search-tags .search-tag {
  padding: 6px 16px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: 20px;
  color: #b0b0b0;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.search-section .search-tags .search-tag:hover {
  background: rgba(108, 92, 231, 0.2);
  color: #6c5ce7;
  border-color: rgba(108, 92, 231, 0.4);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .search-section {
    padding: 30px 20px;
    border-radius: 16px;
  }
  .search-section .search-title {
    font-size: 24px;
  }
  .search-section .search-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .search-section .search-box input {
    height: 50px;
    font-size: 15px;
    padding: 0 20px 0 45px;
  }
  .search-section .search-box .search-icon {
    left: 15px;
    font-size: 18px;
  }
  .search-section .search-box .search-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .search-section .search-tags {
    margin-top: 20px;
    gap: 8px;
  }
  .search-section .search-tags .search-tag {
    padding: 5px 12px;
    font-size: 13px;
  }
}

.video-section {
  margin-top: 30px;
  width: 100%;
  overflow: hidden;
}
.video-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.video-section .section-header h2 {
  font-size: 28px;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-left: 20px;
  font-weight: 700;
}
.video-section .section-header h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 30px;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}
.video-section .section-header .more {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(51, 51, 51, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(108, 92, 231, 0.2);
  transition: all 0.3s;
}
.video-section .section-header .more i {
  font-size: 12px;
  transition: all 0.3s;
}
.video-section .section-header .more:hover {
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
  transform: translateY(-2px);
}
.video-section .section-header .more:hover i {
  transform: translateX(3px);
}
.video-section .video-layout {
  display: block;
  margin-bottom: 40px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .video-section .video-layout {
    margin-bottom: 30px;
  }
}
.video-section .video-layout .main-video {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .video-section .video-layout .main-video {
    margin-bottom: 15px;
  }
}
.video-section .video-layout .main-video .video-card {
  background: rgba(51, 51, 51, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(108, 92, 231, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
  overflow: hidden;
}
.video-section .video-layout .main-video .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(108, 92, 231, 0.2);
  border-color: rgba(108, 92, 231, 0.3);
}
.video-section .video-layout .main-video .video-card .video-thumb {
  padding-top: 56.25%;
}
@media (max-width: 768px) {
  .video-section .video-layout .main-video .video-card .video-thumb {
    padding-top: 56.25%;
  }
}
.video-section .video-layout .main-video .video-card .video-info {
  width: 100%;
  padding: 20px;
}
@media (max-width: 768px) {
  .video-section .video-layout .main-video .video-card .video-info {
    padding: 12px;
  }
}
.video-section .video-layout .main-video .video-card .video-info h3 {
  width: 100%;
  display: block;
  max-width: 100%;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .video-section .video-layout .main-video .video-card .video-info h3 {
    font-size: 13px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
  }
}
.video-section .video-layout .side-videos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .video-section .video-layout .side-videos-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .video-section .video-layout .side-videos-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0 -2px;
  }
}
.video-section .video-layout .side-videos-container .video-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .video-section .video-layout .side-videos-container .video-card {
    margin: 0 2px;
    border-radius: 12px;
  }
}
.video-section .video-layout .side-videos-container .video-card .video-thumb {
  padding-top: 56.25%;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .video-section .video-layout .side-videos-container .video-card .video-thumb {
    padding-top: 50%;
  }
}
@media (max-width: 768px) {
  .video-section .video-layout .side-videos-container .video-card .video-thumb .video-duration, .video-section .video-layout .side-videos-container .video-card .video-thumb .video-tag {
    font-size: 10px;
    padding: 4px 8px;
  }
}
@media (max-width: 768px) {
  .video-section .video-layout .side-videos-container .video-card .video-thumb .video-tag {
    top: 8px;
    left: 8px;
  }
}
@media (max-width: 768px) {
  .video-section .video-layout .side-videos-container .video-card .video-thumb .video-duration {
    bottom: 8px;
    right: 8px;
  }
}
.video-section .video-layout .side-videos-container .video-card .video-info {
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .video-section .video-layout .side-videos-container .video-card .video-info {
    padding: 8px;
  }
}
.video-section .video-layout .side-videos-container .video-card .video-info h3 {
  font-size: 13px;
  line-height: 1.3;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .video-section .video-layout .side-videos-container .video-card .video-info h3 {
    font-size: 11px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
  }
}
.video-section .video-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .video-section .video-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .video-section .video-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.video-section .video-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .video-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.video-section .video-card {
  background: rgba(51, 51, 51, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(108, 92, 231, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
  cursor: pointer;
}
.video-section .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(108, 92, 231, 0.2);
  border-color: rgba(108, 92, 231, 0.3);
}
.video-section .video-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.video-section .video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.video-section .video-card .video-thumb:hover img {
  transform: scale(1.05);
}
.video-section .video-card .video-thumb .video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.video-section .video-card .video-thumb .video-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.video-section .video-card .video-info {
  padding: 15px;
  width: 100%;
}
.video-section .video-card .video-info h3 {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffffff;
  line-height: 1.4;
  width: 100%;
  display: block;
  max-width: 100%;
  margin: 0;
}

.banner-ad {
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(108, 92, 231, 0.1);
}

.video-player video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  background: black;
  border-radius: 12px;
}

.iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.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.page-no li.active {
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
}
.pagination-container ul li {
  cursor: pointer;
  width: 45px;
  height: 45px;
  background: rgba(51, 51, 51, 0.8);
  backdrop-filter: blur(10px);
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 0.9rem;
  font-weight: 500;
}
.pagination-container ul li:hover:not(.active) {
  background: rgba(108, 92, 231, 0.2);
  border-color: #6c5ce7;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.2);
}
.pagination-container ul li.active {
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.pagination-container ul li a {
  width: 45px;
  height: 45px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}
.pagination-container ul li a.active {
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  color: white;
}
.pagination-container ul li.page-options {
  width: 80px;
  font-size: 0.8rem;
}
.pagination-container ul li.page-options a {
  width: 80px;
}
.pagination-container ul li:disabled, .pagination-container ul li.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #808080;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background: rgba(51, 51, 51, 0.8);
  border-color: rgba(108, 92, 231, 0.2);
  color: #808080;
  transform: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 30px auto 20px;
    transform: scale(0.8);
  }
  .pagination-container ul {
    gap: 8px;
  }
  .pagination-container ul li {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
  .pagination-container ul li a {
    width: 40px;
    height: 40px;
  }
  .pagination-container ul li.page-options {
    width: 70px;
  }
  .pagination-container ul li.page-options a {
    width: 70px;
  }
}

.footer {
  padding: 50px 0 30px;
  background: rgba(45, 45, 45, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(108, 92, 231, 0.2);
  color: #b0b0b0;
  font-size: 14px;

}
.footer .friend-links {
  margin-bottom: 40px;
  padding: 30px 0;
  text-align: center;
}
.footer .friend-links .links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.footer .friend-links .links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(108, 92, 231, 0.2);
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  white-space: nowrap;
}
.footer .friend-links .links a:hover {
  color: #fff;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}
@media (max-width: 1024px) {
  .footer .friend-links .links {
    gap: 12px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .footer .friend-links {
    padding: 20px 15px;
  }
  .footer .friend-links .links {
    gap: 10px;
  }
  .footer .friend-links .links a {
    padding: 10px 15px;
    font-size: 13px;
  }
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(108, 92, 231, 0.1);
  color: #808080;
}

.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1200;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}
.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  left: 0;
  box-shadow: 0 0 8px rgba(108, 92, 231, 0.3);
}
.menu-toggle span:nth-child(1) {
  top: 0;
  transform-origin: center;
}
.menu-toggle span:nth-child(2) {
  top: 9px;
  transform-origin: center;
}
.menu-toggle span:nth-child(3) {
  top: 18px;
  transform-origin: center;
}
.menu-toggle.active span {
  background: #6c5ce7;
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.6);
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}
.menu-toggle:active {
  transform: scale(0.95);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .header .container {
    gap: 15px;
  }
  .header .logo img {
    height: 40px;
  }
  .header .nav ul {
    gap: 18px;
  }
  .header .nav ul li a {
    font-size: 14px;
    padding: 8px 14px;
  }
  .header .header-right {
    width: 80px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 60px;
  }
  .header .container {
    gap: 10px;
  }
  .header .logo img {
    height: 38px;
  }
  .header .nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: left 0.4s ease-out;
    margin: 0;
    padding: 0;
    z-index: 1100;
    border-right: 1px solid rgba(108, 92, 231, 0.3);
    overflow-y: auto;
  }
  .header .nav.active {
    left: 0;
  }
  .header .nav ul {
    flex-direction: column;
    padding: 20px 0;
    margin: 0;
    gap: 0;
    width: 100%;
  }
  .header .nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(108, 92, 231, 0.1);
    width: 100%;
  }
  .header .nav ul li:last-child {
    border-bottom: none;
  }
  .header .nav ul li a {
    display: block;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 0;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
  }
  .header .nav ul li a:hover {
    background: rgba(108, 92, 231, 0.1);
    color: #ffffff;
    padding-left: 40px;
  }
  .header .nav ul li a:hover:before {
    opacity: 0.2;
    border-radius: 0;
  }
  .header .nav ul li a.active {
    background: rgba(108, 92, 231, 0.2);
    color: #ffffff;
    border-left: 4px solid #6c5ce7;
    padding-left: 36px;
  }
  .header .nav ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
    opacity: 0;
    transition: all 0.3s;
    z-index: -1;
  }
  .header .header-right {
    width: 60px;
    justify-content: flex-end;
  }
  .menu-toggle {
    display: block;
    z-index: 1200;
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
  .video-section .section-header h2 {
    font-size: 24px;
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
}
::-webkit-scrollbar-thumb:hover {
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header-scrolled {
  animation: slideDown 0.3s ease-out forwards;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(108, 92, 231, 0.1);
}

.video-list-container {
  margin-top: 20px;
}
.video-list-container .list-header {
  margin-bottom: 30px;
}
.video-list-container .list-header .section-title {
  font-size: 28px;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-left: 20px;
  margin: 0;
  margin-bottom: 15px;
  font-weight: 700;
}
.video-list-container .list-header .section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 30px;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}
.video-list-container .list-header .search-info {
  color: #b0b0b0;
  font-size: 14px;
  margin-left: 20px;
}
.video-list-container .list-header .search-info .keyword {
  color: #6c5ce7;
  font-weight: 600;
  margin: 0 5px;
  text-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
}
.video-list-container .list-header .search-info .result-count {
  color: #6c5ce7;
  font-weight: 600;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .video-list-container .list-header .section-title {
    font-size: 24px;
  }
  .video-list-container .list-header .section-title:before {
    height: 24px;
  }
  .video-list-container .list-header .search-info {
    font-size: 13px;
  }
}

.no-result {
  grid-column: 1/-1;
  padding: 80px 0;
  text-align: center;
}
.no-result .no-result-content i {
  font-size: 64px;
  color: #808080;
  margin-bottom: 25px;
  opacity: 0.6;
}
.no-result .no-result-content p {
  margin: 0;
  color: #b0b0b0;
  font-size: 18px;
  font-weight: 500;
}
.no-result .no-result-content p.sub-text {
  color: #808080;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .no-result {
    padding: 60px 0;
  }
  .no-result .no-result-content i {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .no-result .no-result-content p {
    font-size: 16px;
  }
  .no-result .no-result-content p.sub-text {
    font-size: 13px;
  }
}

.video-player-section {
  background: rgba(51, 51, 51, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(108, 92, 231, 0.1);
}
.video-player-section .player-wrapper {
  background: #000;
  position: relative;
}
.video-player-section .video-info {
  padding: 25px;
}
.video-player-section .video-info .video-title {
  font-size: 26px;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.4;
  font-weight: 700;
}
.video-player-section .video-info .video-meta {
  margin-bottom: 25px;
}
.video-player-section .video-info .video-meta .meta-info {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.video-player-section .video-info .video-meta .meta-info .video-tag-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.video-player-section .video-info .video-meta .meta-info .video-tag-btn i {
  font-size: 16px;
}
.video-player-section .video-info .video-meta .meta-info .video-tag-btn.recommended {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border-color: rgba(76, 175, 80, 0.2);
}
.video-player-section .video-info .video-meta .meta-info .video-tag-btn.recommended i {
  color: #4caf50;
}
.video-player-section .video-info .video-meta .meta-info .video-tag-btn.recommended:hover {
  background: rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}
.video-player-section .video-info .video-meta .meta-info .video-tag-btn.hot {
  background: rgba(255, 87, 34, 0.1);
  color: #ff5722;
  border-color: rgba(255, 87, 34, 0.2);
}
.video-player-section .video-info .video-meta .meta-info .video-tag-btn.hot i {
  color: #ff5722;
}
.video-player-section .video-info .video-meta .meta-info .video-tag-btn.hot:hover {
  background: rgba(255, 87, 34, 0.2);
  border-color: rgba(255, 87, 34, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}
.video-player-section .video-info .video-desc {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.6;
}
.video-player-section .video-info .video-desc p {
  margin: 0;
}
@media (max-width: 768px) {
  .video-player-section {
    margin-bottom: 25px;
    border-radius: 16px;
  }
  .video-player-section .video-info {
    padding: 20px;
  }
  .video-player-section .video-info .video-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .video-player-section .video-info .video-meta .meta-info {
    gap: 10px;
  }
  .video-player-section .video-info .video-meta .meta-info .video-tag-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  .video-player-section .video-info .video-meta .meta-info .video-tag-btn i {
    font-size: 14px;
  }
  .video-player-section .video-info .video-desc {
    font-size: 13px;
  }
}

.related-section {
  margin-bottom: 50px;
  margin-top: 30px;
}
.related-section .section-header {
  margin-bottom: 25px;
}
.related-section .section-header .section-title {
  font-size: 28px;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-left: 20px;
  margin: 0;
  font-weight: 700;
}
.related-section .section-header .section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 30px;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}
@media (max-width: 768px) {
  .related-section {
    margin-bottom: 40px;
  }
  .related-section .section-header {
    margin-bottom: 15px;
  }
  .related-section .section-header .section-title {
    font-size: 22px;
    padding-left: 15px;
  }
  .related-section .section-header .section-title:before {
    height: 22px;
    width: 4px;
  }
  .related-section .section-header .more {
    font-size: 12px;
    padding: 6px 12px;
  }
}

.video-list-container .video-grid, .related-section .video-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .video-list-container .video-grid, .related-section .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .video-list-container .video-grid, .related-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.video-list-container .video-item .video-card, .related-section .video-item .video-card {
  background: rgba(51, 51, 51, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  border: 1px solid rgba(108, 92, 231, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.video-list-container .video-item .video-card:hover, .related-section .video-item .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(108, 92, 231, 0.2);
  border-color: rgba(108, 92, 231, 0.3);
}
.video-list-container .video-item .video-card:hover .video-overlay, .related-section .video-item .video-card:hover .video-overlay {
  opacity: 1;
}
.video-list-container .video-item .video-card .video-thumb, .related-section .video-item .video-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.video-list-container .video-item .video-card .video-thumb img, .related-section .video-item .video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.video-list-container .video-item .video-card .video-thumb:hover img, .related-section .video-item .video-card .video-thumb:hover img {
  transform: scale(1.05);
}
.video-list-container .video-item .video-card .video-thumb .video-duration, .related-section .video-item .video-card .video-thumb .video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.video-list-container .video-item .video-card .video-thumb .video-tag, .related-section .video-item .video-card .video-thumb .video-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.video-list-container .video-item .video-card .video-thumb .video-overlay, .related-section .video-item .video-card .video-thumb .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}
.video-list-container .video-item .video-card .video-thumb .video-overlay i, .related-section .video-item .video-card .video-thumb .video-overlay i {
  font-size: 48px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.5));
}
.video-list-container .video-item .video-card .video-info, .related-section .video-item .video-card .video-info {
  padding: 18px;
}
.video-list-container .video-item .video-card .video-info h3, .related-section .video-item .video-card .video-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.video-list-container .video-item .video-card .video-info .video-meta, .related-section .video-item .video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  color: #808080;
  font-size: 12px;
  font-weight: 500;
}

.plyr--video {
  border-radius: 0;
  --plyr-color-main: #6c5ce7;
}

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