@charset "UTF-8";
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #181c30 0%, #23284e 50%, #21254c 100%);
  color: #f0f9ff;
  line-height: 1.6;
  font-size: 14px;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(87, 97, 255, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(162, 113, 248, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(0, 234, 255, 0.07) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 8px;
    width: 100%;
  }
}

.header {
  background: rgba(8, 8, 25, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.25);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.3);
}
@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}
.header .logo img {
  height: 40px;
  filter: brightness(1.2) drop-shadow(0 2px 8px rgba(220, 38, 38, 0.3));
}
@media (max-width: 768px) {
  .header .logo img {
    height: 32px;
  }
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-menu ul a {
  color: #e0e7ff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
}
.nav-menu ul a:hover {
  color: #00d4ff;
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(20px);
  border-color: rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}
.nav-menu ul a.active {
  color: #f0f9ff;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  border-color: #00d4ff;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}
@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
    position: fixed !important;
    top: 50px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100vh - 50px) !important;
    background: rgba(8, 8, 25, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    z-index: 1001 !important;
    border-top: 1px solid rgba(0, 212, 255, 0.25) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-20px) !important;
    transition: all 0.3s ease !important;
  }
  .nav-menu.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    animation: slideDown 0.3s ease-out;
    pointer-events: auto !important;
  }
  .nav-menu ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }
  .nav-menu ul li {
    width: 100%;
    margin: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  }
  .nav-menu ul li:last-child {
    border-bottom: none;
  }
  .nav-menu ul a {
    display: block;
    padding: 20px 16px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    border-radius: 12px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: all 0.3s ease;
  }
  .nav-menu ul a:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 153, 255, 0.6);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
  }
  .nav-menu ul a.active {
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #f0f9ff;
    border-color: #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  }
  .nav-menu.active ul li {
    opacity: 1;
    transform: translateY(0);
    animation: slideInLeft 0.4s ease-out forwards;
  }
  .nav-menu.active ul li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav-menu.active ul li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .nav-menu.active ul li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .nav-menu.active ul li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .nav-menu.active ul li:nth-child(5) {
    animation-delay: 0.5s;
  }
  .nav-menu.active ul li:nth-child(6) {
    animation-delay: 0.6s;
  }
  .nav-menu.active ul li:nth-child(7) {
    animation-delay: 0.7s;
  }
  .nav-menu.active ul li:nth-child(8) {
    animation-delay: 0.8s;
  }
  .nav-menu.active ul li:nth-child(9) {
    animation-delay: 0.9s;
  }
  .nav-menu.active ul li:nth-child(10) {
    animation-delay: 1s;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body.nav-open {
  overflow: hidden;
}
body.nav-open .header {
  z-index: 1001;
}
body.nav-open .nav-menu {
  z-index: 1000;
}

@media (max-width: 768px) {
  .nav-menu::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-menu.active::before {
    opacity: 1;
  }
  .nav-menu.active ul li a:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: #00d4ff;
    transform: translateX(12px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.25);
  }
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  transition: all 0.3s ease;
}
.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #f0f9ff;
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}
.menu-toggle.active {
  background: rgba(0, 212, 255, 0.2);
}
.menu-toggle.active span:first-child {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.menu-toggle.active span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}

.search-section {
  margin-bottom: 20px;
  padding: 20px 0;
}
.search-section .search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.3);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.25);
}
.search-section .search-box input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  color: #f0f9ff;
  font-size: 15px;
}
.search-section .search-box input::placeholder {
  color: #a5b4fc;
}
.search-section .search-box input:focus {
  outline: none;
}
.search-section .search-box button {
  padding: 16px 20px;
  border: none;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  color: #f0f9ff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border-radius: 0 50px 50px 0;
}
.search-section .search-box button:hover {
  background: linear-gradient(135deg, rgb(25.5, 216.3, 255), rgb(25.5, 163.2, 255));
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
  transform: scale(1.05);
}
.search-section .search-box button svg {
  width: 18px;
  height: 18px;
}

.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%;
}

.banner-section {
  margin-bottom: 50px;
}
.banner-section img {
  max-width: 100%;
}

.main-content {
  margin-top: 65px !important;
  padding: 48px 0;
}
@media screen and (max-width: 768px) {
  .main-content {
    padding: 15px 0;
    margin-top: 40px !important;
  }
}

.section-title {
  margin-bottom: 32px;
  position: relative;
}
.section-title.noBg .title-accent {
  display: none !important;
}
.section-title h2 {
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(220, 38, 38, 0.3));
}
.section-title .title-accent {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00d4ff, #0099ff);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.featured-section {
  margin-bottom: 64px;
}
.featured-section .featured-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 8px 0;
}
@media (max-width: 1024px) {
  .featured-section .featured-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .featured-section .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
.featured-section .featured-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  overflow: hidden;
  gap: 8px;
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.featured-section .featured-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
}
.featured-section .featured-item .poster-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
}
.featured-section .featured-item .poster-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.featured-section .featured-item .poster-thumbnail .recommend-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  color: #f0f9ff;
  padding: 4px 8px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  z-index: 10;
  backdrop-filter: blur(10px);
}
.featured-section .featured-item .poster-info {
  padding: 0;
  text-align: center;
}
.featured-section .featured-item .poster-info h3 {
  font-size: 12px;
  font-weight: 600;
  color: #f0f9ff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.3;
  margin: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}
.featured-section .featured-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.trending-section {
  margin-bottom: 64px;
}
.trending-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.trending-section .section-header .view-all {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border: 1px solid rgba(0, 212, 255, 0.6);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: rgba(220, 38, 38, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.trending-section .section-header .view-all::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  width: 0%;
  transition: width 0.3s ease;
  z-index: -1;
}
.trending-section .section-header .view-all:hover {
  color: #f0f9ff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}
.trending-section .section-header .view-all:hover::before {
  width: 100%;
}
.trending-section .trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .trending-section .trending-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .trending-section .trending-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.trending-section .trending-item {
  width: 100%;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.trending-section .trending-item.vertical-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.trending-section .trending-item.vertical-card:hover {
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(20px);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
}
.trending-section .trending-item.vertical-card .card-thumbnail {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.trending-section .trending-item.vertical-card .card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.trending-section .trending-item.vertical-card .card-thumbnail .rating-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #f0f9ff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  backdrop-filter: blur(10px);
}
.trending-section .trending-item.vertical-card .card-thumbnail .status-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 255, 204, 0.9);
  backdrop-filter: blur(10px);
  color: #f0f9ff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}
.trending-section .trending-item.vertical-card .card-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(42, 42, 42, 0.8);
  backdrop-filter: blur(10px);
}
.trending-section .trending-item.vertical-card .card-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #f0f9ff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  margin: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}
.trending-section .trending-item.vertical-card .card-info .english-title {
  font-size: 12px;
  color: #a5b4fc;
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.3;
  margin: 0;
}
.trending-section .trending-item.vertical-card .card-info .meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trending-section .trending-item.vertical-card .card-info .meta .episode-count {
  font-size: 12px;
  color: #00ffcc;
  font-weight: 500;
  background: rgba(0, 212, 255, 0.1);
  padding: 2px 8px;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
}
.trending-section .trending-item.vertical-card .card-info .meta .date {
  font-size: 12px;
  color: #a5b4fc;
}
.trending-section .trending-item.vertical-card .card-info .meta .views {
  font-size: 12px;
  color: #a5b4fc;
}
.trending-section .trending-item.vertical-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.latest-section {
  margin-bottom: 64px;
}
.latest-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.latest-section .section-header .section-title {
  margin-bottom: 0;
}
.latest-section .section-header .view-all {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border: 1px solid rgba(0, 212, 255, 0.6);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  background: rgba(220, 38, 38, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.latest-section .section-header .view-all::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  width: 0%;
  transition: width 0.3s ease;
  z-index: -1;
}
.latest-section .section-header .view-all:hover {
  color: #f0f9ff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}
.latest-section .section-header .view-all:hover::before {
  width: 100%;
}
.latest-section .latest-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .latest-section .latest-list {
    gap: 12px;
  }
}
.latest-section .latest-item {
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.latest-section .latest-item.vertical-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.latest-section .latest-item.vertical-card:hover {
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(20px);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
}
.latest-section .latest-item.vertical-card .card-thumbnail {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.latest-section .latest-item.vertical-card .card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.latest-section .latest-item.vertical-card .card-thumbnail .rating-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #f0f9ff;
  padding: 4px 8px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  backdrop-filter: blur(10px);
}
.latest-section .latest-item.vertical-card .card-thumbnail .status-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 255, 204, 0.9);
  backdrop-filter: blur(10px);
  color: #f0f9ff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}
.latest-section .latest-item.vertical-card .card-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(42, 42, 42, 0.8);
  backdrop-filter: blur(10px);
}
.latest-section .latest-item.vertical-card .card-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #f0f9ff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  margin: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}
.latest-section .latest-item.vertical-card .card-info .english-title {
  font-size: 12px;
  color: #a5b4fc;
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.3;
  margin: 0;
}
.latest-section .latest-item.vertical-card .card-info .meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.latest-section .latest-item.vertical-card .card-info .meta .episode-count {
  font-size: 12px;
  color: #00ffcc;
  font-weight: 500;
  background: rgba(0, 212, 255, 0.1);
  padding: 2px 8px;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
}
.latest-section .latest-item.vertical-card .card-info .meta .date {
  font-size: 12px;
  color: #a5b4fc;
}
.latest-section .latest-item.vertical-card .card-info .meta .views {
  font-size: 12px;
  color: #a5b4fc;
}
.latest-section .latest-item.vertical-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.categories-section {
  margin-bottom: 64px;
}
.categories-section .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.categories-section .category-card {
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.categories-section .category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
  border-color: rgba(0, 212, 255, 0.6);
  background: rgba(25, 25, 65, 0.3);
}
.categories-section .category-card .category-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 15px rgba(220, 38, 38, 0.3));
}
.categories-section .category-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f0f9ff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}
.categories-section .category-card p {
  color: #e0e7ff;
  margin-bottom: 16px;
  line-height: 1.5;
}
.categories-section .category-card .video-count {
  font-size: 13px;
  color: #f0f9ff;
  background: rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(0, 212, 255, 0.6);
}
.categories-section .category-card.tech:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.1));
}
.categories-section .category-card.entertainment:hover {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(238, 90, 82, 0.1));
}
.categories-section .category-card.education:hover {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(0, 184, 212, 0.1));
}
.categories-section .category-card.lifestyle:hover {
  background: linear-gradient(135deg, rgba(38, 208, 206, 0.2), rgba(29, 209, 161, 0.1));
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.video-card {
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
  border-color: rgba(0, 212, 255, 0.6);
  background: rgba(25, 25, 65, 0.3);
}
.video-card .card-thumbnail {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.video-card .card-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.video-card .card-thumbnail .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: #f0f9ff;
  padding: 4px 8px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.video-card .card-info {
  padding: 16px;
  background: rgba(42, 42, 42, 0.8);
  backdrop-filter: blur(10px);
}
.video-card .card-info h3 {
  font-size: 14px;
  font-weight: 500;
  color: #f0f9ff;
  margin: 0 0 8px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}
.video-card .card-info .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a5b4fc;
  font-size: 12px;
}
.video-card .card-info .meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
.video-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
@media (max-width: 768px) {
  .video-card {
    border-radius: 12px;
  }
  .video-card:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  .video-card .card-thumbnail .duration {
    padding: 2px 6px;
    font-size: 11px;
  }
  .video-card .card-info {
    padding: 12px;
  }
  .video-card .card-info h3 {
    font-size: 13px;
    margin-bottom: 6px;
    -webkit-line-clamp: 1;
  }
  .video-card .card-info .meta {
    font-size: 11px;
    gap: 8px;
  }
}

.video-info {
  padding: 24px;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.video-info .video-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.25);
  margin-bottom: 15px;
}
.video-info .video-meta span {
  color: #e0e7ff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.25);
}
.video-info .video-meta span i {
  font-size: 16px;
  color: #00d4ff;
}
.video-info .video-desc {
  color: #e0e7ff;
  font-size: 14px;
  line-height: 1.6;
}
.video-info .video-desc p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .video-info {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 16px;
  }
  .video-info .video-meta {
    gap: 15px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .video-info .video-meta span {
    font-size: 12px;
    gap: 4px;
    padding: 4px 8px;
  }
  .video-info .video-meta span i {
    font-size: 14px;
  }
  .video-info .video-desc {
    font-size: 13px;
  }
}

.video-player {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(8, 8, 25, 0.9);
  backdrop-filter: blur(20px);
  margin-bottom: 24px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --plyr-color-main: #00d4ff;
  --plyr-video-background: #0a0a17;
  --plyr-menu-background: rgba(15, 15, 45, 0.4);
  --plyr-menu-color: #f0f9ff;
  --plyr-tooltip-background: rgba(15, 15, 45, 0.4);
  --plyr-tooltip-color: #f0f9ff;
  --plyr-range-fill-background: #00d4ff;
  --plyr-video-controls-background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  --plyr-progress-loading-background: rgba(255, 255, 255, 0.2);
  --plyr-control-icon-size: 18px;
  --plyr-control-spacing: 10px;
  --plyr-control-radius: 8px;
  --plyr-control-toggle-checked-background: #00d4ff;
}

.plyr--video .plyr__control:hover {
  background: rgba(0, 212, 255, 0.8);
  backdrop-filter: blur(10px);
}
.plyr--video .plyr__control--overlaid {
  background: rgba(0, 212, 255, 0.9);
  backdrop-filter: blur(10px);
}
.plyr--video .plyr__control--overlaid:hover {
  background: #00d4ff;
}

.pagination-container {
  margin: 30px auto 20px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  text-align: center;
  color: #e0e7ff;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.pagination-container ul li:hover:not(.active):not(.disabled) {
  background: rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(20px);
  border-color: rgba(0, 212, 255, 0.6);
  color: #00d4ff;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}
.pagination-container ul li.active, .pagination-container ul li a.active {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  font-weight: 500;
  color: #f0f9ff;
  border-color: #00d4ff;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}
.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;
}
.pagination-container ul li a.active {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  font-weight: 500;
  color: #f0f9ff;
  border-color: #00d4ff;
}
.pagination-container ul li.page-options {
  width: 70px;
  border-radius: 50px;
}
.pagination-container ul li:disabled, .pagination-container ul li.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #a5b4fc;
  background: rgba(42, 42, 42, 0.3);
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background: rgba(42, 42, 42, 0.3);
  border-color: rgba(0, 212, 255, 0.25);
  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: 13px;
  }
  .pagination-container ul li.page-options {
    width: 60px;
  }
}

.friend-links {
  padding: 48px 0;
  background: rgba(8, 8, 25, 0.9);
  backdrop-filter: blur(20px);
  margin-top: 48px;
  border-top: 1px solid rgba(0, 212, 255, 0.25);
  border-bottom: 1px solid rgba(0, 212, 255, 0.25);
}
.friend-links h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(220, 38, 38, 0.3));
}
.friend-links .links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.friend-links .links-grid .link-item {
  color: #e0e7ff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(0, 212, 255, 0.25);
  transition: all 0.3s ease;
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(10px);
}
.friend-links .links-grid .link-item:hover {
  color: #f0f9ff;
  border-color: rgba(0, 212, 255, 0.6);
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.footer {
  background: rgba(8, 8, 25, 0.9);
  backdrop-filter: blur(20px);
  padding: 40px 0;
  border-top: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}
.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer .footer-logo img {
  height: 32px;
  opacity: 0.8;
  filter: brightness(1.2) drop-shadow(0 2px 8px rgba(220, 38, 38, 0.3));
}
.footer .footer-links {
  display: flex;
  gap: 32px;
}
.footer .footer-links a {
  color: #e0e7ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.footer .footer-links a:hover {
  color: #00d4ff;
  border-color: rgba(0, 212, 255, 0.6);
  background: rgba(220, 38, 38, 0.1);
  transform: translateY(-2px);
}
.footer .copyright {
  color: #a5b4fc;
  font-size: 13px;
  text-align: center;
}
.footer .links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.footer .links-grid .link-item {
  color: #e0e7ff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 500;
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(10px);
}
.footer .links-grid .link-item:hover {
  color: #f0f9ff;
  border-color: rgba(0, 212, 255, 0.6);
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.poster-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 8px 0;
}
@media (max-width: 1024px) {
  .poster-scroll {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .poster-scroll {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

.poster-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  overflow: hidden;
  gap: 8px;
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.poster-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
}
.poster-item .poster-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
}
.poster-item .poster-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.poster-item .poster-thumbnail .hot-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #f0f9ff;
  padding: 4px 8px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  backdrop-filter: blur(10px);
  z-index: 10;
}
.poster-item .poster-info {
  padding: 0;
  text-align: center;
}
.poster-item .poster-info h4 {
  font-size: 12px;
  font-weight: 600;
  color: #f0f9ff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.3;
  margin: 0;
  margin-top: 10px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}
.poster-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.slider-btn {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(220, 38, 38, 0.6);
  border-radius: 4px;
  backdrop-filter: blur(10px);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(220, 38, 38, 0.8);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.episode-section {
  margin-bottom: 40px;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.episode-section .section-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}
.episode-section .section-header .section-title h3 {
  font-size: 20px;
  font-weight: 600;
  color: #f0f9ff;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(220, 38, 38, 0.3));
}
.episode-section .section-header .section-title .title-accent {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #0099ff);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}
.episode-section .episode-grid {
  padding: 20px 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.episode-section .episode-grid .episode-item {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50px;
  color: #e0e7ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.episode-section .episode-grid .episode-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  width: 0%;
  transition: width 0.3s ease;
  z-index: -1;
}
.episode-section .episode-grid .episode-item:hover {
  color: #f0f9ff;
  border-color: rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}
.episode-section .episode-grid .episode-item:hover::before {
  width: 100%;
}
.episode-section .episode-grid .episode-item.active {
  color: #f0f9ff;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  border-color: #00d4ff;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
  animation: episode-pulse 2s infinite;
}
.episode-section .episode-grid .episode-item.active::before {
  display: none;
}
@media (max-width: 768px) {
  .episode-section {
    margin-bottom: 30px;
    border-radius: 16px;
  }
  .episode-section .section-header {
    padding: 20px 20px 12px;
  }
  .episode-section .section-header .section-title h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .episode-section .episode-grid {
    padding: 16px 20px 20px;
    gap: 10px;
  }
  .episode-section .episode-grid .episode-item {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 40px;
  }
}

@keyframes episode-pulse {
  0% {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6), 0 0 20px rgba(220, 38, 38, 0.3);
  }
  100% {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
  }
}
.episode-item:hover:not(.active) {
  background: rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(20px);
}

@media (max-width: 1024px) {
  .episode-grid {
    justify-content: flex-start;
  }
  .episode-grid .episode-item {
    min-width: 120px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .episode-grid {
    justify-content: center;
  }
  .episode-grid .episode-item {
    min-width: 100px;
    font-size: 12px;
  }
}
.featured-section {
  margin-bottom: 80px;
}
.featured-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.featured-section .section-header .section-title {
  margin-bottom: 0 !important;
}
.featured-section .section-header .view-all {
  color: #e0e7ff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border: 1px solid rgba(0, 153, 255, 0.6);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: rgba(99, 102, 241, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured-section .section-header .view-all::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  width: 0%;
  transition: width 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}
.featured-section .section-header .view-all::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.featured-section .section-header .view-all:hover {
  color: #f0f9ff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
}
.featured-section .section-header .view-all:hover::before {
  width: 100%;
}
.featured-section .section-header .view-all:hover::after {
  transform: translateX(4px);
}
.featured-section .featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  padding: 8px 0;
}
@media (max-width: 1024px) {
  .featured-section .featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .featured-section .featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }
}
.featured-section .featured-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}
.featured-section .featured-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.featured-section .featured-item:hover {
  transform: translateY(-12px) scale(1.03);
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(20px);
  border-color: rgba(0, 153, 255, 0.6);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
}
.featured-section .featured-item:hover::before {
  opacity: 1;
}
.featured-section .featured-item:hover .poster-thumbnail img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
}
.featured-section .featured-item:hover .recommend-tag {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5);
}
.featured-section .featured-item .poster-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.featured-section .featured-item .poster-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured-section .featured-item .poster-thumbnail .recommend-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  color: #f0f9ff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  z-index: 10;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.featured-section .featured-item .poster-thumbnail .quality-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(16, 185, 129, 0.9);
  color: #f0f9ff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.featured-section .featured-item .poster-thumbnail .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.featured-section .featured-item .poster-thumbnail .play-overlay::after {
  content: "▶";
  color: white;
  font-size: 20px;
  margin-left: 3px;
}
.featured-section .featured-item .poster-info {
  padding: 16px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
}
.featured-section .featured-item .poster-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #f0f9ff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.featured-section .featured-item .poster-info .meta-info {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: #a5b4fc;
  margin-top: 8px;
}
.featured-section .featured-item .poster-info .meta-info .rating {
  color: #ffaa00;
  font-weight: 600;
}
.featured-section .featured-item .poster-info .meta-info .year {
  color: #00ffcc;
}
.featured-section .featured-item:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.trending-section {
  margin-bottom: 80px;
}
.trending-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.trending-section .section-header .view-all {
  color: #e0e7ff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border: 1px solid rgba(0, 153, 255, 0.6);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  background: rgba(99, 102, 241, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.trending-section .section-header .view-all::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  width: 0%;
  transition: width 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}
.trending-section .section-header .view-all:hover {
  color: #f0f9ff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
}
.trending-section .section-header .view-all:hover::before {
  width: 100%;
}
.trending-section .trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
@media (max-width: 1024px) {
  .trending-section .trending-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .trending-section .trending-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
}
.trending-section .trending-item {
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}
.trending-section .trending-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.trending-section .trending-item.vertical-card {
  display: flex;
  flex-direction: column;
}
.trending-section .trending-item.vertical-card:hover {
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(20px);
  border-color: rgba(0, 153, 255, 0.6);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
  transform: translateY(-12px) scale(1.02);
}
.trending-section .trending-item.vertical-card:hover::before {
  opacity: 1;
}
.trending-section .trending-item.vertical-card .card-thumbnail {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.trending-section .trending-item.vertical-card .card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.trending-section .trending-item.vertical-card .card-thumbnail .rating-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ffaa00, #f97316);
  color: #f0f9ff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 4px;
}
.trending-section .trending-item.vertical-card .card-thumbnail .rating-badge::before {
  content: "⭐";
  font-size: 10px;
}
.trending-section .trending-item.vertical-card .card-thumbnail .status-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(6, 182, 212, 0.9);
  backdrop-filter: blur(10px);
  color: #f0f9ff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.trending-section .trending-item.vertical-card .card-thumbnail .trending-rank {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.trending-section .trending-item.vertical-card .card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}
.trending-section .trending-item.vertical-card .card-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #f0f9ff;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.trending-section .trending-item.vertical-card .card-info .english-title {
  font-size: 13px;
  color: #a5b4fc;
  font-style: italic;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.trending-section .trending-item.vertical-card .card-info .meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trending-section .trending-item.vertical-card .card-info .meta .episode-count {
  font-size: 12px;
  color: #00ffcc;
  font-weight: 600;
  background: rgba(6, 182, 212, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.trending-section .trending-item.vertical-card .card-info .meta .stats {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #a5b4fc;
}
.trending-section .trending-item.vertical-card .card-info .meta .stats .date {
  display: flex;
  align-items: center;
  gap: 4px;
}
.trending-section .trending-item.vertical-card .card-info .meta .stats .date::before {
  content: "📅";
  font-size: 10px;
}
.trending-section .trending-item.vertical-card .card-info .meta .stats .views {
  display: flex;
  align-items: center;
  gap: 4px;
}
.trending-section .trending-item.vertical-card .card-info .meta .stats .views::before {
  content: "👁";
  font-size: 10px;
}
.trending-section .trending-item.vertical-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.2);
}

.latest-section {
  margin-bottom: 40px;
}
.latest-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.latest-section .section-header .section-title {
  margin-bottom: 0;
}
.latest-section .section-header .view-all {
  color: #e0e7ff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border: 1px solid rgba(0, 153, 255, 0.6);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  background: rgba(99, 102, 241, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.latest-section .section-header .view-all::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  width: 0%;
  transition: width 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}
.latest-section .section-header .view-all:hover {
  color: #f0f9ff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
}
.latest-section .section-header .view-all:hover::before {
  width: 100%;
}
.latest-section .latest-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
@media (max-width: 1024px) {
  .latest-section .latest-list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .latest-section .latest-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
}
.latest-section .latest-item {
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}
.latest-section .latest-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.latest-section .latest-item.vertical-card {
  display: flex;
  flex-direction: column;
}
.latest-section .latest-item.vertical-card:hover {
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(20px);
  border-color: rgba(0, 153, 255, 0.6);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
  transform: translateY(-12px) scale(1.02);
}
.latest-section .latest-item.vertical-card:hover::before {
  opacity: 1;
}
.latest-section .latest-item.vertical-card .card-thumbnail {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.latest-section .latest-item.vertical-card .card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.latest-section .latest-item.vertical-card .card-thumbnail .new-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #00ff88, #059669);
  color: #f0f9ff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}
.latest-section .latest-item.vertical-card .card-thumbnail .new-badge::before {
  content: "🆕";
  margin-right: 4px;
  font-size: 10px;
}
.latest-section .latest-item.vertical-card .card-thumbnail .status-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(6, 182, 212, 0.9);
  backdrop-filter: blur(10px);
  color: #f0f9ff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.latest-section .latest-item.vertical-card .card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}
.latest-section .latest-item.vertical-card .card-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #f0f9ff;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.latest-section .latest-item.vertical-card .card-info .english-title {
  font-size: 13px;
  color: #a5b4fc;
  font-style: italic;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-section .latest-item.vertical-card .card-info .meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.latest-section .latest-item.vertical-card .card-info .meta .episode-count {
  font-size: 12px;
  color: #00ffcc;
  font-weight: 600;
  background: rgba(6, 182, 212, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.latest-section .latest-item.vertical-card .card-info .meta .stats {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #a5b4fc;
}
.latest-section .latest-item.vertical-card .card-info .meta .stats .date {
  display: flex;
  align-items: center;
  gap: 4px;
}
.latest-section .latest-item.vertical-card .card-info .meta .stats .date::before {
  content: "📅";
  font-size: 10px;
}
.latest-section .latest-item.vertical-card .card-info .meta .stats .views {
  display: flex;
  align-items: center;
  gap: 4px;
}
.latest-section .latest-item.vertical-card .card-info .meta .stats .views::before {
  content: "👁";
  font-size: 10px;
}
.latest-section .latest-item.vertical-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.2);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
}

.video-card {
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}
.video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.video-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
  border-color: rgba(0, 153, 255, 0.6);
  background: rgba(25, 25, 65, 0.3);
}
.video-card:hover::before {
  opacity: 1;
}
.video-card .card-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.video-card .card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-card .card-thumbnail .duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: #f0f9ff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.video-card .card-thumbnail .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(99, 102, 241, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.video-card .card-thumbnail .play-overlay::after {
  content: "▶";
  color: white;
  font-size: 16px;
  margin-left: 2px;
}
.video-card .card-info {
  padding: 16px;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}
.video-card .card-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #f0f9ff;
  margin: 0 0 8px;
  margin-bottom: 0 !important;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}
.video-card .card-info .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a5b4fc;
  font-size: 12px;
  margin-top: 8px;
}
.video-card .card-info .meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffaa00;
  font-weight: 600;
  background: rgba(245, 158, 11, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.video-card .card-info .meta .rating::before {
  content: "⭐";
  font-size: 10px;
}
.video-card .card-info .meta .views {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(148, 163, 184, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.video-card .card-info .meta .views::before {
  content: "👁";
  font-size: 10px;
}
.video-card:hover .card-thumbnail img {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.2);
}
.video-card:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 768px) {
  .video-card {
    border-radius: 16px;
  }
  .video-card:hover {
    transform: translateY(-8px) scale(1.01);
  }
  .video-card .card-thumbnail .duration {
    padding: 3px 6px;
    font-size: 11px;
  }
  .video-card .card-info {
    padding: 12px;
  }
  .video-card .card-info h3 {
    font-size: 13px;
    margin-bottom: 6px;
    -webkit-line-clamp: 1;
  }
  .video-card .card-info .meta {
    font-size: 11px;
    gap: 8px;
  }
}

.categories-section {
  margin-bottom: 80px;
}
.categories-section .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
@media (max-width: 1024px) {
  .categories-section .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .categories-section .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}
.categories-section .category-card {
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.categories-section .category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.categories-section .category-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1;
}
.categories-section .category-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
  border-color: rgba(0, 153, 255, 0.6);
  background: rgba(25, 25, 65, 0.3);
}
.categories-section .category-card:hover::before {
  opacity: 1;
}
.categories-section .category-card:hover::after {
  opacity: 1;
  transform: scale(1.2);
}
.categories-section .category-card:hover .category-icon {
  transform: scale(1.2) rotateY(360deg);
  filter: drop-shadow(0 8px 20px rgba(99, 102, 241, 0.4));
}
.categories-section .category-card:hover .video-count {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}
.categories-section .category-card .category-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 15px rgba(99, 102, 241, 0.2));
  position: relative;
  z-index: 2;
}
.categories-section .category-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #f0f9ff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
}
.categories-section .category-card p {
  color: #e0e7ff;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 14px;
  position: relative;
  z-index: 2;
}
.categories-section .category-card .video-count {
  font-size: 13px;
  color: #f0f9ff;
  background: rgba(99, 102, 241, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(0, 153, 255, 0.6);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.categories-section .category-card.tech:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
}
.categories-section .category-card.entertainment:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.08) 100%);
}
.categories-section .category-card.education:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.08) 100%);
}
.categories-section .category-card.lifestyle:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.08) 100%);
}

.banner-section {
  margin-bottom: 60px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.banner-section img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}
.banner-section:hover img {
  transform: scale(1.02);
  filter: brightness(1.05);
}
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 50%, rgba(139, 92, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.banner-section:hover::before {
  opacity: 1;
}

.video-player {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(8, 8, 25, 0.9);
  backdrop-filter: blur(20px);
  margin-bottom: 32px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  --plyr-color-main: #00d4ff;
  --plyr-video-background: #0a0a17;
  --plyr-menu-background: rgba(15, 15, 45, 0.4);
  --plyr-menu-color: #f0f9ff;
  --plyr-tooltip-background: rgba(15, 15, 45, 0.4);
  --plyr-tooltip-color: #f0f9ff;
  --plyr-range-fill-background: #00d4ff;
  --plyr-video-controls-background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  --plyr-progress-loading-background: rgba(255, 255, 255, 0.2);
  --plyr-control-icon-size: 18px;
  --plyr-control-spacing: 12px;
  --plyr-control-radius: 8px;
  --plyr-control-toggle-checked-background: #00d4ff;
}
.video-player video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  background: black;
  display: block;
}
.video-player .iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  background: black;
}
.video-player .iframeBox .iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-player .plyr--video .plyr__control:hover {
  background: rgba(0, 212, 255, 0.8);
  backdrop-filter: blur(10px);
}
.video-player .plyr--video .plyr__control--overlaid {
  background: rgba(0, 212, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.video-player .plyr--video .plyr__control--overlaid:hover {
  background: #00d4ff;
  transform: scale(1.1);
}
.video-player .plyr--video .plyr__controls {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(10px);
}

.video-info {
  padding: 32px;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 32px;
  position: relative;
}
.video-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
  border-radius: 24px;
  z-index: 1;
}
.video-info > * {
  position: relative;
  z-index: 2;
}
.video-info .video-title {
  font-size: 28px;
  font-weight: 700;
  color: #f0f9ff;
  margin-bottom: 16px;
  line-height: 1.3;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.video-info .video-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.25);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.video-info .video-meta .meta-item {
  color: #e0e7ff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  transition: all 0.3s ease;
}
.video-info .video-meta .meta-item:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(0, 153, 255, 0.6);
  transform: translateY(-2px);
}
.video-info .video-meta .meta-item i {
  font-size: 16px;
  color: #00d4ff;
}
.video-info .video-meta .meta-item.rating {
  color: #ffaa00;
  border-color: rgba(245, 158, 11, 0.3);
}
.video-info .video-meta .meta-item.rating:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.5);
}
.video-info .video-meta .meta-item.views {
  color: #00ffcc;
  border-color: rgba(6, 182, 212, 0.3);
}
.video-info .video-meta .meta-item.views:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.5);
}
.video-info .video-desc {
  color: #e0e7ff;
  font-size: 15px;
  line-height: 1.7;
}
.video-info .video-desc p {
  margin: 0 0 16px 0;
}
.video-info .video-desc p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .video-info {
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 20px;
  }
  .video-info .video-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .video-info .video-meta {
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .video-info .video-meta .meta-item {
    font-size: 13px;
    gap: 6px;
    padding: 6px 12px;
  }
  .video-info .video-meta .meta-item i {
    font-size: 14px;
  }
  .video-info .video-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

.poster-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  padding: 8px 0;
}
@media (max-width: 1024px) {
  .poster-scroll {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .poster-scroll {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
}

.poster-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}
.poster-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.poster-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(16px);
  border-color: rgba(0, 153, 255, 0.6);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
}
.poster-item:hover::before {
  opacity: 1;
}
.poster-item:hover .poster-thumbnail img {
  transform: scale(1.05);
  filter: brightness(1.1) saturate(1.2);
}
.poster-item:hover .hot-tag {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.5);
}
.poster-item .poster-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.poster-item .poster-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.poster-item .poster-thumbnail .hot-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ffaa00, #f97316);
  color: #f0f9ff;
  padding: 4px 8px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  backdrop-filter: blur(10px);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.poster-item .poster-thumbnail .hot-tag::before {
  content: "🔥";
  margin-right: 2px;
  font-size: 8px;
}
.poster-item .poster-info {
  padding: 12px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
}
.poster-item .poster-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: #f0f9ff;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.slider-btn {
  display: none;
}

.episode-section {
  margin-bottom: 48px;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}
.episode-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
  z-index: 1;
}
.episode-section > * {
  position: relative;
  z-index: 2;
}
.episode-section .section-header {
  padding: 32px 32px 20px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.5);
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(15px);
}
.episode-section .section-header .section-title {
  margin-bottom: 0;
}
.episode-section .section-header .section-title h3 {
  font-size: 24px;
  font-weight: 700;
  color: #f0f9ff;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
  position: relative;
}
.episode-section .section-header .section-title h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #0099ff);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}
.episode-section .section-header .section-title .episode-count {
  font-size: 14px;
  color: #a5b4fc;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.episode-section .section-header .section-title .episode-count::before {
  content: "📺";
  font-size: 12px;
}
.episode-section .episode-grid {
  padding: 28px 32px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}
.episode-section .episode-grid .episode-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 12px;
  color: #e0e7ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 44px;
}
.episode-section .episode-grid .episode-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.5s ease;
}
.episode-section .episode-grid .episode-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 12px;
}
.episode-section .episode-grid .episode-item:hover:not(.active) {
  color: #f0f9ff;
  border-color: rgba(0, 153, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
  background: rgba(99, 102, 241, 0.08);
}
.episode-section .episode-grid .episode-item:hover:not(.active)::before {
  left: 100%;
}
.episode-section .episode-grid .episode-item.active {
  color: #f0f9ff;
  background: transparent;
  border-color: #00d4ff;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  transform: translateY(-3px);
  font-weight: 700;
  animation: episode-pulse 2s infinite;
}
.episode-section .episode-grid .episode-item.active::after {
  opacity: 1;
}
.episode-section .episode-grid .episode-item.active::before {
  display: none;
}
.episode-section .episode-grid .episode-item.watched {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #00ff88;
}
.episode-section .episode-grid .episode-item.watched::before {
  content: "✓ ";
  position: static;
  width: auto;
  height: auto;
  background: none;
  margin-right: 4px;
}
.episode-section .episode-grid .episode-item.watched:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.5);
}
@media (max-width: 768px) {
  .episode-section {
    margin-bottom: 32px;
    border-radius: 20px;
  }
  .episode-section .section-header {
    padding: 24px 24px 16px;
  }
  .episode-section .section-header .section-title h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .episode-section .section-header .section-title h3::after {
    width: 60px;
    height: 2px;
  }
  .episode-section .episode-grid {
    padding: 20px 24px 24px;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
  }
  .episode-section .episode-grid .episode-item {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 10px;
    min-height: 40px;
  }
}

@keyframes episode-pulse {
  0% {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6), 0 0 20px rgba(99, 102, 241, 0.3);
  }
  100% {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  }
}
.pagination-container {
  margin: 48px auto 32px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(20px);
  padding: 16px 24px;
  border-radius: 60px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.pagination-container ul li {
  cursor: pointer;
  min-width: 44px;
  height: 44px;
  background: transparent;
  text-align: center;
  color: #e0e7ff;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.pagination-container ul li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 50%;
}
.pagination-container ul li:hover:not(.active):not(.disabled) {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(0, 153, 255, 0.6);
  color: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}
.pagination-container ul li.active, .pagination-container ul li a.active {
  color: #f0f9ff;
  font-weight: 700;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}
.pagination-container ul li.active::before, .pagination-container ul li a.active::before {
  opacity: 1;
}
.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;
  font-weight: inherit;
}
.pagination-container ul li a.active {
  color: #f0f9ff;
  font-weight: 700;
}
.pagination-container ul li.page-options {
  min-width: 80px;
  border-radius: 22px;
}
.pagination-container ul li.page-options::before {
  border-radius: 22px;
}
.pagination-container ul li.prev, .pagination-container ul li.next {
  min-width: 50px;
  font-size: 16px;
}
.pagination-container ul li.prev:hover:not(.disabled), .pagination-container ul li.next:hover:not(.disabled) {
  background: rgba(99, 102, 241, 0.15);
  color: #00d4ff;
}
.pagination-container ul li:disabled, .pagination-container ul li.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #a5b4fc;
  background: transparent;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 32px auto 24px;
  }
  .pagination-container ul {
    gap: 8px;
    padding: 12px 16px;
  }
  .pagination-container ul li {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .pagination-container ul li.page-options {
    min-width: 60px;
  }
  .pagination-container ul li.prev, .pagination-container ul li.next {
    min-width: 40px;
    font-size: 14px;
  }
}

.friend-links {
  padding: 60px 0;
  background: rgba(8, 8, 25, 0.9);
  backdrop-filter: blur(20px);
  margin-top: 60px;
  border-top: 1px solid rgba(0, 212, 255, 0.25);
  border-bottom: 1px solid rgba(0, 212, 255, 0.25);
  position: relative;
}
.friend-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}
.friend-links > * {
  position: relative;
  z-index: 2;
}
.friend-links h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
  position: relative;
}
.friend-links h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #0099ff);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}
.friend-links .links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.friend-links .links-grid .link-item {
  color: #e0e7ff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(0, 212, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.friend-links .links-grid .link-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.5s ease;
}
.friend-links .links-grid .link-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 50px;
}
.friend-links .links-grid .link-item:hover {
  color: #f0f9ff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}
.friend-links .links-grid .link-item:hover::before {
  left: 100%;
}
.friend-links .links-grid .link-item:hover::after {
  opacity: 1;
}
@media (max-width: 768px) {
  .friend-links {
    padding: 40px 0;
    margin-top: 40px;
  }
  .friend-links h2 {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .friend-links h2::after {
    width: 80px;
    height: 2px;
  }
  .friend-links .links-grid {
    gap: 12px;
  }
  .friend-links .links-grid .link-item {
    padding: 10px 20px;
    font-size: 13px;
  }
}

.footer {
  background: rgba(8, 8, 25, 0.9);
  backdrop-filter: blur(20px);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}
.footer > * {
  position: relative;
  z-index: 2;
}
.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer .footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .footer-logo:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.3));
}
.footer .footer-logo img {
  height: 40px;
  opacity: 0.9;
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
  transition: all 0.3s ease;
}
.footer .footer-logo .logo-text {
  margin-left: 12px;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer .footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer .footer-links a {
  color: #e0e7ff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.footer .footer-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.5s ease;
}
.footer .footer-links a:hover {
  color: #00d4ff;
  border-color: rgba(0, 153, 255, 0.6);
  background: rgba(99, 102, 241, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}
.footer .footer-links a:hover::before {
  left: 100%;
}
.footer .footer-social {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.footer .footer-social a {
  width: 48px;
  height: 48px;
  background: rgba(15, 15, 45, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e7ff;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.footer .footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 50%;
}
.footer .footer-social a:hover {
  color: #f0f9ff;
  border-color: transparent;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}
.footer .footer-social a:hover::before {
  opacity: 1;
}
.footer .copyright {
  color: #a5b4fc;
  font-size: 14px;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 212, 255, 0.5);
  margin-top: 32px;
  width: 100%;
}
.footer .links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.footer .links-grid .link-item {
  color: #e0e7ff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 13px;
  font-weight: 500;
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.footer .links-grid .link-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 50px;
}
.footer .links-grid .link-item:hover {
  color: #f0f9ff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}
.footer .links-grid .link-item:hover::before {
  opacity: 1;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 30px;
    margin-top: 40px;
  }
  .footer .footer-content {
    gap: 24px;
  }
  .footer .footer-logo .logo-text {
    font-size: 18px;
  }
  .footer .footer-logo img {
    height: 32px;
  }
  .footer .footer-links {
    gap: 16px;
  }
  .footer .footer-links a {
    padding: 10px 16px;
    font-size: 14px;
  }
  .footer .footer-social {
    gap: 16px;
  }
  .footer .footer-social a {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .footer .copyright {
    font-size: 13px;
    padding-top: 20px;
    margin-top: 24px;
  }
  .footer .links-grid {
    gap: 12px;
    margin-top: 20px;
  }
  .footer .links-grid .link-item {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.loading-skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 400% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .featured-item:hover,
  .trending-item:hover,
  .latest-item:hover,
  .video-card:hover,
  .category-card:hover,
  .poster-item:hover {
    transform: translateY(-4px) scale(1.01);
  }
}
body {
  background: #0f1419;
  background: radial-gradient(ellipse at top, #1a0b2e 0%, #16213e 25%, #0f3460 50%, #16213e 75%, #1a0b2e 100%);
  background-attachment: fixed;
  background-size: 100% 100%;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(0, 153, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(0, 255, 204, 0.06) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
  animation: cyber-pulse 8s ease-in-out infinite;
}

.page-wrapper {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.95) 0%, rgba(15, 52, 96, 0.9) 25%, rgba(22, 33, 62, 0.95) 50%, rgba(15, 52, 96, 0.9) 75%, rgba(26, 11, 46, 0.95) 100%);
  backdrop-filter: blur(2px);
  min-height: 100vh;
  position: relative;
}

.main-content {
  background: rgba(12, 12, 38, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header {
  background: rgba(10, 10, 35, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.sidebar {
  background: rgba(15, 15, 40, 0.9);
  backdrop-filter: blur(15px);
  border-right: 1px solid rgba(236, 72, 153, 0.15);
}

.footer {
  background: rgba(8, 8, 30, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(6, 214, 160, 0.15);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.container {
  background: rgba(10, 10, 30, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(168, 85, 247, 0.1);
  position: relative;
  overflow: hidden;
}

@keyframes cyber-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  25% {
    opacity: 0.5;
    transform: scale(1.02);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.01);
  }
  75% {
    opacity: 0.6;
    transform: scale(1.03);
  }
}
@keyframes data-flow {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
.nav-menu ul a:hover {
  color: #00d4ff;
  background: rgba(25, 25, 65, 0.3);
  backdrop-filter: blur(20px);
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}
.nav-menu ul a.active {
  color: #f0f9ff;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  border-color: #00d4ff;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.search-section .search-box button:hover {
  background: linear-gradient(135deg, rgb(25.5, 216.3, 255), rgb(25.5, 163.2, 255));
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  transform: scale(1.05);
}

.section-title h2 {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.3));
}

.section-title .title-accent {
  background: linear-gradient(90deg, #00d4ff, #0099ff);
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.featured-item:hover,
.trending-item:hover,
.latest-item:hover,
.video-card:hover {
  border-color: rgba(0, 153, 255, 0.6);
  box-shadow: 0 20px 60px 0 rgba(0, 153, 255, 0.4);
}

.recommend-tag {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.rating-badge {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.4);
}

.new-badge {
  background: linear-gradient(135deg, #00ff88, #00cc66);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.status-badge {
  background: rgba(0, 255, 204, 0.9);
}

.view-all {
  border: 1px solid rgba(0, 153, 255, 0.6);
  background: rgba(0, 212, 255, 0.05);
}
.view-all::before {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
}
.view-all:hover {
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.3);
}

.episode-item:hover:not(.active) {
  border-color: rgba(0, 153, 255, 0.6);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.08);
}
.episode-item.active {
  border-color: #00d4ff;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}
.episode-item.active::after {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
}

.pagination-container ul li:hover:not(.active):not(.disabled) {
  border-color: rgba(0, 153, 255, 0.6);
  color: #00d4ff;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}
.pagination-container ul li.active {
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}
.pagination-container ul li.active::before {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
}

.friend-links .link-item:hover,
.footer .links-grid .link-item:hover {
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}
.friend-links .link-item:hover::after,
.footer .links-grid .link-item:hover::after {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
}

.footer-links a:hover {
  color: #00d4ff;
  border-color: rgba(0, 153, 255, 0.6);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.footer-social a:hover {
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}
.footer-social a:hover::before {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
}

@keyframes cyber-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
    filter: hue-rotate(0deg);
  }
  25% {
    opacity: 0.5;
    transform: scale(1.02);
    filter: hue-rotate(90deg);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.01);
    filter: hue-rotate(180deg);
  }
  75% {
    opacity: 0.6;
    transform: scale(1.03);
    filter: hue-rotate(270deg);
  }
}
@keyframes episode-pulse {
  0% {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6), 0 0 20px rgba(0, 212, 255, 0.3);
  }
  100% {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
  }
}
@keyframes data-flow {
  0% {
    transform: translateX(-100%);
    opacity: 0;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
  }
  10% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  }
  90% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
  }
}
body {
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f3a 25%, #0f1929 50%, #1a1f3a 75%, #0a0f1c 100%);
}
body::before {
  background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 153, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(0, 255, 204, 0.07) 0%, transparent 50%);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.6);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.8);
}

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