@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #0a0e1a 0%, #0f172a 100%);
  color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.background-animation .floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}
.background-animation .floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
  animation: float 20s infinite ease-in-out;
}
.background-animation .floating-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.background-animation .floating-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}
.background-animation .floating-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 30%;
  animation-delay: -10s;
}
.background-animation .floating-shapes .shape.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: -15s;
}
.background-animation .floating-shapes .shape.shape-5 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: 40%;
  animation-delay: -7s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(20px) rotate(240deg);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header .navbar .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
@media (max-width: 768px) {
  .header .navbar .nav-container {
    height: 60px;
    padding: 0 1rem;
  }
}
.header .navbar .nav-brand .site-logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.header .navbar .nav-brand .site-logo:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .header .navbar .nav-brand .site-logo {
    height: 40px;
  }
}
.header .navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header .navbar .nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}
.header .navbar .nav-menu .nav-item .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.header .navbar .nav-menu .nav-item .nav-link:hover, .header .navbar .nav-menu .nav-item .nav-link.active {
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}
@media (max-width: 768px) {
  .header .navbar .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 1rem;
    transition: right 0.3s ease;
  }
  .header .navbar .nav-menu.active {
    right: 0;
  }
  .header .navbar .nav-menu .nav-item .nav-link {
    width: 100%;
  }
}
.header .navbar .mobile-menu-toggle {
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.header .navbar .mobile-menu-toggle:hover {
  background: rgba(6, 182, 212, 0.2);
  color: #06b6d4;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}
.header .navbar .mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #cbd5e1;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
  position: relative;
}
.header .navbar .mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header .navbar .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header .navbar .mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 768px) {
  .header .navbar .mobile-menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
  }
}

.main-content {
  padding-top: 70px;
}
@media (max-width: 768px) {
  .main-content {
    padding-top: 60px;
  }
}

.search-bar-section {
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .search-bar-section {
    padding: 1.5rem 0;
  }
}
.search-bar-section .search-bar {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .search-bar-section .search-bar {
    margin: 0 1rem;
  }
}
.search-bar-section .search-bar .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
}
.search-bar-section .search-bar .search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 14px 20px 14px 50px;
  color: #f8fafc;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}
.search-bar-section .search-bar .search-input::placeholder {
  color: #94a3b8;
}
.search-bar-section .search-bar .search-input:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}
@media (max-width: 768px) {
  .search-bar-section .search-bar .search-input {
    padding: 12px 18px 12px 45px;
    font-size: 15px;
  }
}

.content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-section {
  margin: 3rem 0;
}
.content-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.content-section .section-header .section-title-wrapper .section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
}
.content-section .section-header .section-title-wrapper .section-title i {
  color: #06b6d4;
}
.content-section .section-header .section-title-wrapper .section-subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
}
.content-section .section-header .view-all-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 24px;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.content-section .section-header .view-all-btn:hover {
  background: rgba(6, 182, 212, 0.2);
  color: #06b6d4;
  border-color: #06b6d4;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.video-grid.trending-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.video-grid.trending-grid .video-card .card-thumbnail .video-quality {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}
.video-grid.video-list-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(6, 1fr);
}
@media (min-width: 768px) and (max-width: 991px) {
  .video-grid.video-list-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .video-grid.video-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.video-grid.video-list-grid .video-card .card-thumbnail {
  aspect-ratio: 16/9;
  height: auto;
}
.video-grid.video-list-grid .video-card .card-thumbnail img {
  height: 100%;
}
.video-grid.video-list-grid .video-card .video-title {
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .video-grid.video-list-grid .video-card .video-title {
    font-size: 0.8rem;
  }
}
.video-grid.video-list-grid .video-card .card-content {
  padding: 1rem;
}
@media (max-width: 768px) {
  .video-grid.video-list-grid .video-card .card-content {
    padding: 0.75rem;
  }
}

.video-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: #06b6d4;
}
.video-card:hover .card-thumbnail img {
  transform: scale(1.05);
}
.video-card .card-thumbnail {
  position: relative;
  overflow: hidden;
}
.video-card .card-thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-card .card-thumbnail .video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.video-card .card-thumbnail .video-quality {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}
.video-card .card-content {
  padding: 1.5rem;
}
.video-card .card-content .video-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card .card-content .video-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: #94a3b8;
}

.recommend-section .recommend-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .recommend-section .recommend-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.recommend-section .recommend-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.recommend-section .recommend-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: #06b6d4;
}
.recommend-section .recommend-card:hover .card-image img {
  transform: scale(1.05);
}
.recommend-section .recommend-card:hover .play-overlay {
  opacity: 1;
}
.recommend-section .recommend-card.featured .card-image {
  height: 400px;
}
.recommend-section .recommend-card.featured .card-info {
  padding: 1.5rem;
}
.recommend-section .recommend-card.featured .recommend-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.recommend-section .recommend-card.featured .recommend-desc {
  display: block;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommend-section .recommend-card.featured .recommend-meta {
  display: flex;
  gap: 2rem;
}
.recommend-section .recommend-card.featured .recommend-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #cbd5e1;
}
.recommend-section .recommend-card.featured .recommend-meta span i {
  color: #06b6d4;
}
.recommend-section .recommend-card.small .card-image {
  height: 180px;
}
.recommend-section .recommend-card.small .card-info {
  padding: 1rem;
}
.recommend-section .recommend-card.small .recommend-title {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.recommend-section .recommend-card.small .recommend-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #94a3b8;
}
.recommend-section .recommend-card .card-image {
  position: relative;
  overflow: hidden;
}
.recommend-section .recommend-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.recommend-section .recommend-card .card-image .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.8), rgba(139, 92, 246, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.recommend-section .recommend-card .card-image .play-btn, .recommend-section .recommend-card .card-image .play-btn-large {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #06b6d4;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recommend-section .recommend-card .card-image .play-btn:hover, .recommend-section .recommend-card .card-image .play-btn-large:hover {
  transform: scale(1.1);
}
.recommend-section .recommend-card .card-image .play-btn {
  width: 50px;
  height: 50px;
  font-size: 16px;
}
.recommend-section .recommend-card .card-image .play-btn-large {
  width: 80px;
  height: 80px;
  font-size: 24px;
}
.recommend-section .recommend-card .card-image .recommend-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}
.recommend-section .recommend-card .card-info .recommend-title {
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommend-section .recommend-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.latest-grid {
  display: grid;
  gap: 1.5rem;
}

.latest-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.latest-item:hover {
  border-color: #06b6d4;
  transform: translateX(8px);
}
.latest-item:hover .play-overlay {
  opacity: 1;
}
.latest-item .item-thumbnail {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.latest-item .item-thumbnail img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}
.latest-item .item-thumbnail .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 182, 212, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.latest-item .item-thumbnail .play-overlay i {
  color: white;
  font-size: 20px;
}
.latest-item .item-info .item-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 8px;
  line-height: 1.3;
}
.latest-item .item-info .item-description {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-item .item-info .item-meta {
  display: flex;
  gap: 1rem;
  font-size: 12px;
  color: #94a3b8;
}

.footer {
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.9), rgba(15, 23, 42, 0.9));
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 4rem;
}
.footer .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer .friend-links {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .friend-links .links-title {
  color: #f8fafc;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}
.footer .friend-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  justify-items: center;
}
@media (max-width: 768px) {
  .footer .friend-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}
.footer .friend-links .friend-link {
  display: inline-block;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
}
.footer .friend-links .friend-link:hover {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-color: #06b6d4;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .footer .friend-links .friend-link {
    padding: 6px 12px;
    font-size: 13px;
  }
}
.footer .footer-bottom {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer .footer-bottom .footer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-info {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.footer .footer-bottom .footer-info .footer-logo {
  height: 35px;
  width: auto;
  transition: transform 0.3s ease;
}
.footer .footer-bottom .footer-info .footer-logo:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-info .footer-logo {
    height: 30px;
  }
}
.footer .footer-bottom .footer-info .copyright {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-info .copyright {
    font-size: 13px;
  }
}

.floating-actions .scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
  z-index: 1000;
}
.floating-actions .scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.floating-actions .scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
}
@media (max-width: 768px) {
  .floating-actions .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 1024px) {
  .video-grid.video-list-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
  .video-grid.video-list-grid .video-card .video-title {
    font-size: 0.85rem;
  }
  .video-grid.video-list-grid .video-card .card-content {
    padding: 0.9rem;
  }
  .video-list-section .list-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-container {
    padding: 2rem 1rem;
  }
  .content-container {
    padding: 0 1rem;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .video-grid.video-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .video-grid.video-list-grid .video-card .video-title {
    font-size: 0.8rem;
  }
  .video-list-section .list-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
  .video-list-section .list-grid .video-card .card-content {
    padding: 0.5rem;
  }
  .video-list-section .list-grid .video-card .card-content .video-title {
    font-size: 0.8rem;
  }
  .latest-item {
    grid-template-columns: 1fr;
  }
  .latest-item .item-thumbnail {
    grid-row: 1;
  }
  .latest-item .item-thumbnail img {
    height: 200px;
  }
  .recommend-section .recommend-side {
    flex-direction: row;
    gap: 1rem;
  }
  .recommend-section .recommend-side .recommend-card.small {
    flex: 1;
  }
  .recommend-section .recommend-side .recommend-card.small .card-image {
    height: 150px;
  }
  .recommend-section .recommend-card.featured .card-image {
    height: 250px;
  }
  .recommend-section .recommend-card.featured .card-info {
    padding: 1.5rem;
  }
  .recommend-section .recommend-card.featured .recommend-title {
    font-size: 1.3rem;
  }
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #0891b2, #8b5cf6);
}

.ad-section .ad-banner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}
.ad-section .ad-banner:hover {
  border-color: #06b6d4;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.ad-section .ad-banner .ad-image {
  width: 150px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
}
.ad-section .ad-banner .ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header {
  margin-bottom: 2rem;
}
.page-header .page-title-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
.page-header .page-title-wrapper .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}
.page-header .page-title-wrapper .page-subtitle {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.video-list-section .list-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.video-list-section .list-grid .video-card .card-thumbnail {
  aspect-ratio: 16/9;
  height: auto;
}
.video-list-section .list-grid .video-card .card-thumbnail img {
  height: 100%;
}
.video-list-section .list-grid .video-card .card-content {
  padding: 0.5rem;
}
.video-list-section .list-grid .video-card .card-content .video-title {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.pagination .page-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.pagination .page-btn:hover {
  background: rgba(6, 182, 212, 0.2);
  color: #06b6d4;
  border-color: #06b6d4;
}
.pagination .page-btn.active {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  border-color: #06b6d4;
}
.pagination .page-btn.prev-btn, .pagination .page-btn.next-btn {
  font-weight: 500;
}
.pagination .page-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.pagination .page-numbers .page-dots {
  color: #94a3b8;
  padding: 0 0.5rem;
}

@media (max-width: 768px) {
  .video-list-section .list-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
  .video-list-section .list-grid .video-card .card-content {
    padding: 0.5rem;
  }
  .video-list-section .list-grid .video-card .card-content .video-title {
    font-size: 0.8rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .video-list-section .list-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.2rem;
  }
  .video-list-section .list-grid .video-card .card-content {
    padding: 0.8rem;
  }
  .video-list-section .list-grid .video-card .card-content .video-title {
    font-size: 0.9rem;
  }
}
.banner-ad-section {
  margin-bottom: 2rem;
}
.banner-ad-section .banner-ad {
  width: 100%;
}

.search-section {
  padding: 2rem 0;
  text-align: center;
}
.search-section .search-container {
  max-width: 800px;
  margin: 0 auto;
}
.search-section .search-container .search-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .search-section .search-container .search-title {
    font-size: 2rem;
  }
}
.search-section .search-container .search-subtitle {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .search-section .search-container .search-subtitle {
    font-size: 1rem;
  }
}
.search-section .search-container .search-form {
  margin-bottom: 2rem;
}
.search-section .search-container .search-form .search-input-group {
  position: relative;
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}
.search-section .search-container .search-form .search-input-group .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.1rem;
  z-index: 2;
}
.search-section .search-container .search-form .search-input-group .search-input {
  flex: 1;
  padding: 15px 20px 15px 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #f8fafc;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.search-section .search-container .search-form .search-input-group .search-input::placeholder {
  color: #94a3b8;
}
.search-section .search-container .search-form .search-input-group .search-input:focus {
  outline: none;
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .search-section .search-container .search-form .search-input-group .search-input {
    padding: 12px 20px 12px 40px;
    font-size: 0.9rem;
  }
}
.search-section .search-container .search-form .search-input-group .search-btn {
  margin-left: 10px;
  padding: 15px 25px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.search-section .search-container .search-form .search-input-group .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}
@media (max-width: 768px) {
  .search-section .search-container .search-form .search-input-group .search-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .search-section .search-container .search-form .search-input-group {
    gap: 0.5rem;
  }
  .search-section .search-container .search-form .search-input-group .search-icon {
    left: 15px;
    font-size: 1rem;
  }
}
.search-section .search-container .hot-search .hot-search-title {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.search-section .search-container .hot-search .hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.search-section .search-container .hot-search .hot-tags .hot-tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #cbd5e1;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-section .search-container .hot-search .hot-tags .hot-tag:hover {
  background: rgba(6, 182, 212, 0.2);
  color: #06b6d4;
  border-color: #06b6d4;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .search-section .search-container .hot-search .hot-tags .hot-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

.search-results-section .results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.search-results-section .results-header .results-title {
  color: #f8fafc;
  font-size: 1.5rem;
  font-weight: 600;
}
.search-results-section .results-header .results-count {
  color: #cbd5e1;
  font-size: 0.9rem;
}
.search-results-section .results-header .results-count span {
  color: #06b6d4;
  font-weight: 600;
}
@media (max-width: 768px) {
  .search-results-section .results-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .search-results-section .results-header .results-title {
    font-size: 1.3rem;
  }
}
.search-results-section .search-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.search-results-section .search-grid .video-card .card-thumbnail {
  aspect-ratio: 16/9;
  height: auto;
}
.search-results-section .search-grid .video-card .card-thumbnail img {
  height: 100%;
}
.search-results-section .search-grid .video-card .card-content {
  padding: 0.5rem;
}
.search-results-section .search-grid .video-card .card-content .video-title {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: tablet) {
  .search-results-section .search-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 768px) {
  .search-results-section .search-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .search-results-section .search-grid .video-card .card-content {
    padding: 0.5rem;
  }
  .search-results-section .search-grid .video-card .card-content .video-title {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .search-results-section .search-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
  .search-results-section .search-grid .video-card .card-content {
    padding: 0.5rem;
  }
  .search-results-section .search-grid .video-card .card-content .video-title {
    font-size: 0.8rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .search-results-section .search-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.2rem;
  }
  .search-results-section .search-grid .video-card .card-content {
    padding: 0.8rem;
  }
  .search-results-section .search-grid .video-card .card-content .video-title {
    font-size: 0.9rem;
  }
}
.video-player-section {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.video-player-section .player-container {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}
.video-player-section .player-container video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.video-info-section {
  margin-bottom: 3rem;
}
.video-info-section .video-info-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
}
@media (max-width: 768px) {
  .video-info-section .video-info-container {
    padding: 1.5rem;
  }
}
.video-info-section .video-info-container .video-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .video-info-section .video-info-container .video-title {
    font-size: 1.4rem;
  }
}
.video-info-section .video-info-container .video-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.video-info-section .video-info-container .video-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.9rem;
}
.video-info-section .video-info-container .video-meta .meta-item i {
  color: #06b6d4;
}
.video-info-section .video-info-container .video-description {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}
.video-info-section .video-info-container .video-description p {
  margin-bottom: 1rem;
}
.video-info-section .video-info-container .video-description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .video-info-section .video-info-container .video-description {
    font-size: 0.9rem;
  }
}

.related-videos-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .related-videos-section .section-title {
    font-size: 1.3rem;
  }
}
.related-videos-section .related-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.related-videos-section .related-grid .video-card .card-thumbnail {
  aspect-ratio: 16/9;
  height: auto;
}
.related-videos-section .related-grid .video-card .card-thumbnail img {
  height: 100%;
}
.related-videos-section .related-grid .video-card .card-content {
  padding: 0.5rem;
}
.related-videos-section .related-grid .video-card .card-content .video-title {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: tablet) {
  .related-videos-section .related-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 768px) {
  .related-videos-section .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .related-videos-section .related-grid .video-card .card-content {
    padding: 0.5rem;
  }
  .related-videos-section .related-grid .video-card .card-content .video-title {
    font-size: 0.8rem;
  }
}

.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: 30px auto 20px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  font-weight: 600;
  color: #f8fafc;
  border-color: #06b6d4;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.pagination-container ul li:hover:not(.active) {
  background-color: rgba(6, 182, 212, 0.1);
  border-color: #06b6d4;
  color: #06b6d4;
  transform: translateY(-1px);
}
.pagination-container ul li.active {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  font-weight: 600;
  color: #f8fafc;
  border-color: #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: inherit;
}
.pagination-container ul li a.active {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  font-weight: 600;
  color: #f8fafc;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}
.pagination-container ul li:disabled, .pagination-container ul li.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #94a3b8;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #94a3b8;
  transform: none;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 20px auto 15px;
  }
  .pagination-container ul {
    gap: 8px;
  }
  .pagination-container ul li {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .pagination-container ul li a {
    width: 36px;
    height: 36px;
  }
  .pagination-container ul li.page-options {
    width: 60px;
  }
  .pagination-container ul li.page-options a {
    width: 60px;
  }
}

.plyr {
  --plyr-color-main: #06b6d4;
  --plyr-video-background: transparent;
  --plyr-video-controls-background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  --plyr-audio-controls-background: rgba(255, 255, 255, 0.1);
  --plyr-menu-background: rgba(15, 23, 42, 0.8);
  --plyr-menu-color: #f8fafc;
  --plyr-menu-item-text-color: #cbd5e1;
  --plyr-menu-item-hover-background: rgba(255, 255, 255, 0.1);
  --plyr-menu-item-hover-text-color: #06b6d4;
  --plyr-tooltip-background: rgba(15, 23, 42, 0.8);
  --plyr-tooltip-color: #f8fafc;
  --plyr-range-fill-background: #06b6d4;
  --plyr-range-thumb-background: #06b6d4;
  --plyr-range-thumb-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
  border-radius: 16px;
  overflow: hidden;
}
.plyr .plyr__control:hover {
  background: rgba(6, 182, 212, 0.2);
}
.plyr .plyr__control[aria-expanded=true] {
  background: rgba(6, 182, 212, 0.2);
  color: #06b6d4;
}
.plyr .plyr__menu__container {
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.plyr .plyr__menu__container .plyr__menu__value {
  color: #06b6d4;
}
.plyr .plyr__tooltip {
  border-radius: 8px;
  backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
  .related-videos-section .related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
  .related-videos-section .related-grid .video-card .card-content {
    padding: 0.5rem;
  }
  .related-videos-section .related-grid .video-card .card-content .video-title {
    font-size: 0.8rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .related-videos-section .related-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.2rem;
  }
  .related-videos-section .related-grid .video-card .card-content {
    padding: 0.8rem;
  }
  .related-videos-section .related-grid .video-card .card-content .video-title {
    font-size: 0.9rem;
  }
}

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