body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #181c30 0%, #23284e 50%, #21254c 100%);
  color: #eaf6ff;
  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: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 8px;
    width: 100%;
  }
}

.header {
  background: rgba(20, 24, 48, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(180, 200, 255, 0.09);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px 0 rgba(20, 30, 80, 0.5);
}
@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.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: #b9c9ef;
  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: #5761ff;
  background: rgba(40, 50, 90, 0.35);
  backdrop-filter: blur(15px);
  border-color: rgba(87, 97, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}
.nav-menu ul a.active {
  color: #eaf6ff;
  background: linear-gradient(135deg, #5761ff, #a271f8);
  border-color: #5761ff;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    height: calc(100vh - 52px);
    background: rgba(20, 24, 48, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
  }
  .nav-menu.active {
    display: block;
  }
  .nav-menu ul {
    flex-direction: column;
    padding: 15px;
    gap: 12px;
  }
  .nav-menu ul li {
    width: 100%;
    margin: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }
  .nav-menu ul a {
    display: block;
    padding: 12px;
    width: 100%;
    text-align: center;
    font-size: 15px;
    border-radius: 16px;
  }
  .nav-menu ul a.active {
    background: linear-gradient(135deg, #5761ff, #a271f8);
    color: #eaf6ff;
  }
  .nav-menu.active ul li {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-menu.active ul li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .nav-menu.active ul li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .nav-menu.active ul li:nth-child(3) {
    transition-delay: 0.15s;
  }
  .nav-menu.active ul li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .nav-menu.active ul li:nth-child(5) {
    transition-delay: 0.25s;
  }
  .nav-menu.active ul li:nth-child(6) {
    transition-delay: 0.3s;
  }
  .nav-menu.active ul li:nth-child(7) {
    transition-delay: 0.35s;
  }
  .nav-menu.active ul li:nth-child(8) {
    transition-delay: 0.4s;
  }
  .nav-menu.active ul li:nth-child(9) {
    transition-delay: 0.45s;
  }
  .nav-menu.active ul li:nth-child(10) {
    transition-delay: 0.5s;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(180, 200, 255, 0.09);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #eaf6ff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.menu-toggle.active span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:last-child {
  transform: translateY(-7px) 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(35, 40, 80, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  box-shadow: 0 8px 32px 0 rgba(20, 30, 80, 0.5);
  overflow: hidden;
  border: 1px solid rgba(180, 200, 255, 0.09);
}
.search-section .search-box input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  color: #eaf6ff;
  font-size: 15px;
}
.search-section .search-box input::placeholder {
  color: #8a9abe;
}
.search-section .search-box input:focus {
  outline: none;
}
.search-section .search-box button {
  padding: 16px 20px;
  border: none;
  background: linear-gradient(135deg, #5761ff, #a271f8);
  color: #eaf6ff;
  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(112.5, 120.9821428571, 255), rgb(177.9161073826, 137.3020134228, 249.1979865772));
  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: 80px;
  padding: 48px 0;
}
@media screen and (max-width: 768px) {
  .main-content {
    padding: 15px 0;
  }
}

.section-title {
  margin-bottom: 32px;
  position: relative;
}
.section-title h2 {
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(135deg, #5761ff, #a271f8);
  -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, #5761ff, #a271f8);
  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(40, 50, 90, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 200, 255, 0.09);
  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(35, 40, 80, 0.6);
  backdrop-filter: blur(15px);
  border-color: rgba(87, 97, 255, 0.3);
  box-shadow: 0 15px 35px 0 rgba(87, 97, 255, 0.18);
}
.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, #5761ff, #a271f8);
  color: #eaf6ff;
  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: #eaf6ff;
  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));
}
.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(40, 50, 90, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 200, 255, 0.09);
  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(87, 97, 255, 0.3);
  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, #5761ff, #a271f8);
  width: 0%;
  transition: width 0.3s ease;
  z-index: -1;
}
.trending-section .section-header .view-all:hover {
  color: #eaf6ff;
  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(35, 40, 80, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(180, 200, 255, 0.09);
  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(40, 50, 90, 0.35);
  backdrop-filter: blur(15px);
  border-color: rgba(87, 97, 255, 0.3);
  box-shadow: 0 15px 35px 0 rgba(87, 97, 255, 0.18);
  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: #eaf6ff;
  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, 234, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #eaf6ff;
  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: #eaf6ff;
  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: #8a9abe;
  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: #00eaff;
  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: #8a9abe;
}
.trending-section .trending-item.vertical-card .card-info .meta .views {
  font-size: 12px;
  color: #8a9abe;
}
.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(40, 50, 90, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 200, 255, 0.09);
  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(87, 97, 255, 0.3);
  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, #5761ff, #a271f8);
  width: 0%;
  transition: width 0.3s ease;
  z-index: -1;
}
.latest-section .section-header .view-all:hover {
  color: #eaf6ff;
  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(35, 40, 80, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(180, 200, 255, 0.09);
  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(40, 50, 90, 0.35);
  backdrop-filter: blur(15px);
  border-color: rgba(87, 97, 255, 0.3);
  box-shadow: 0 15px 35px 0 rgba(87, 97, 255, 0.18);
  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: #eaf6ff;
  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, 234, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #eaf6ff;
  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: #eaf6ff;
  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: #8a9abe;
  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: #00eaff;
  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: #8a9abe;
}
.latest-section .latest-item.vertical-card .card-info .meta .views {
  font-size: 12px;
  color: #8a9abe;
}
.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(35, 40, 80, 0.6);
  backdrop-filter: blur(15px);
  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(180, 200, 255, 0.09);
  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 15px 35px 0 rgba(87, 97, 255, 0.18);
  border-color: rgba(87, 97, 255, 0.3);
  background: rgba(40, 50, 90, 0.35);
}
.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: #eaf6ff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}
.categories-section .category-card p {
  color: #b9c9ef;
  margin-bottom: 16px;
  line-height: 1.5;
}
.categories-section .category-card .video-count {
  font-size: 13px;
  color: #eaf6ff;
  background: rgba(87, 97, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(87, 97, 255, 0.3);
}
.categories-section .category-card.tech:hover {
  background: linear-gradient(135deg, rgba(87, 97, 255, 0.2), rgba(162, 113, 248, 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, 234, 255, 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(35, 40, 80, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(180, 200, 255, 0.09);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px 0 rgba(87, 97, 255, 0.18);
  border-color: rgba(87, 97, 255, 0.3);
  background: rgba(40, 50, 90, 0.35);
}
.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: #eaf6ff;
  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: #eaf6ff;
  margin: 0 0 8px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -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: #8a9abe;
  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(35, 40, 80, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(180, 200, 255, 0.09);
  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(180, 200, 255, 0.09);
  margin-bottom: 15px;
}
.video-info .video-meta span {
  color: #b9c9ef;
  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(180, 200, 255, 0.09);
}
.video-info .video-meta span i {
  font-size: 16px;
  color: #5761ff;
}
.video-info .video-desc {
  color: #b9c9ef;
  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(20, 24, 48, 0.85);
  backdrop-filter: blur(15px);
  margin-bottom: 24px;
  border: 1px solid rgba(180, 200, 255, 0.09);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --plyr-color-main: #5761ff;
  --plyr-video-background: #181c30;
  --plyr-menu-background: rgba(35, 40, 80, 0.6);
  --plyr-menu-color: #eaf6ff;
  --plyr-tooltip-background: rgba(35, 40, 80, 0.6);
  --plyr-tooltip-color: #eaf6ff;
  --plyr-range-fill-background: #5761ff;
  --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: #5761ff;
}

.plyr--video .plyr__control:hover {
  background: rgba(87, 97, 255, 0.8);
  backdrop-filter: blur(10px);
}
.plyr--video .plyr__control--overlaid {
  background: rgba(87, 97, 255, 0.9);
  backdrop-filter: blur(10px);
}
.plyr--video .plyr__control--overlaid:hover {
  background: #5761ff;
}

.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(35, 40, 80, 0.6);
  backdrop-filter: blur(15px);
  text-align: center;
  color: #b9c9ef;
  border: 1px solid rgba(180, 200, 255, 0.09);
  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(87, 97, 255, 0.1);
  backdrop-filter: blur(15px);
  border-color: rgba(87, 97, 255, 0.3);
  color: #5761ff;
  transform: translateY(-2px);
  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, #5761ff, #a271f8);
  font-weight: 500;
  color: #eaf6ff;
  border-color: #5761ff;
  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, #5761ff, #a271f8);
  font-weight: 500;
  color: #eaf6ff;
  border-color: #5761ff;
}
.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: #8a9abe;
  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(180, 200, 255, 0.09);
  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(20, 24, 48, 0.85);
  backdrop-filter: blur(15px);
  margin-top: 48px;
  border-top: 1px solid rgba(180, 200, 255, 0.09);
  border-bottom: 1px solid rgba(180, 200, 255, 0.09);
}
.friend-links h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #5761ff, #a271f8);
  -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: #b9c9ef;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(180, 200, 255, 0.09);
  transition: all 0.3s ease;
  background: rgba(40, 50, 90, 0.35);
  backdrop-filter: blur(10px);
}
.friend-links .links-grid .link-item:hover {
  color: #eaf6ff;
  border-color: rgba(87, 97, 255, 0.3);
  background: linear-gradient(135deg, #5761ff, #a271f8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.footer {
  background: rgba(20, 24, 48, 0.85);
  backdrop-filter: blur(15px);
  padding: 40px 0;
  margin-top: 48px;
  border-top: 1px solid rgba(180, 200, 255, 0.09);
  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: #b9c9ef;
  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: #5761ff;
  border-color: rgba(87, 97, 255, 0.3);
  background: rgba(220, 38, 38, 0.1);
  transform: translateY(-2px);
}
.footer .copyright {
  color: #8a9abe;
  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: #b9c9ef;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(180, 200, 255, 0.09);
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 500;
  background: rgba(40, 50, 90, 0.35);
  backdrop-filter: blur(10px);
}
.footer .links-grid .link-item:hover {
  color: #eaf6ff;
  border-color: rgba(87, 97, 255, 0.3);
  background: linear-gradient(135deg, #5761ff, #a271f8);
  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(40, 50, 90, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 200, 255, 0.09);
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.poster-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(35, 40, 80, 0.6);
  backdrop-filter: blur(15px);
  border-color: rgba(87, 97, 255, 0.3);
  box-shadow: 0 15px 35px 0 rgba(87, 97, 255, 0.18);
}
.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: #eaf6ff;
  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: #eaf6ff;
  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(35, 40, 80, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid rgba(180, 200, 255, 0.09);
  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(180, 200, 255, 0.3);
}
.episode-section .section-header .section-title h3 {
  font-size: 20px;
  font-weight: 600;
  color: #eaf6ff;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #5761ff, #a271f8);
  -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, #5761ff, #a271f8);
  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(40, 50, 90, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 200, 255, 0.09);
  border-radius: 50px;
  color: #b9c9ef;
  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, #5761ff, #a271f8);
  width: 0%;
  transition: width 0.3s ease;
  z-index: -1;
}
.episode-section .episode-grid .episode-item:hover {
  color: #eaf6ff;
  border-color: rgba(87, 97, 255, 0.3);
  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: #eaf6ff;
  background: linear-gradient(135deg, #5761ff, #a271f8);
  border-color: #5761ff;
  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(87, 97, 255, 0.1);
  backdrop-filter: blur(15px);
}

@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;
  }
}
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 18px !important;
  }
}

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