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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  font-size: 14px;
}

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

.header {
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(26, 26, 26, 0.95) 100%);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid #404040;
}
@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);
}
@media (max-width: 768px) {
  .header .logo img {
    height: 32px;
  }
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-menu ul a {
  color: #cccccc;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}
.nav-menu ul a:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}
.nav-menu ul a.active {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.15);
}
.nav-menu ul a.active:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    height: calc(100vh - 52px);
    background: #0a0a0a;
    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;
  }
  .nav-menu ul a:after {
    display: none;
  }
  .nav-menu ul a.active {
    background: #ff6b35;
    color: #ffffff;
    border-radius: 4px;
  }
  .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;
  }
}

.search-section {
  margin-bottom: 20px;
  padding: 20px 0;
}
.search-section .search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid #404040;
}
.search-section .search-box input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
}
.search-section .search-box input::placeholder {
  color: #999999;
}
.search-section .search-box input:focus {
  outline: none;
}
.search-section .search-box button {
  padding: 16px 20px;
  border: none;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.search-section .search-box button:hover {
  background: linear-gradient(135deg, rgb(255, 125.6831683168, 78.5), rgb(247.8755364807, 158.8197424893, 54.6244635193));
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}
.search-section .search-box button svg {
  width: 18px;
  height: 18px;
}

.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;
  color: #ffffff;
  margin-bottom: 8px;
}
.section-title .title-accent {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.featured-section {
  margin-bottom: 64px;
}
.featured-section .featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
@media (max-width: 1024px) {
  .featured-section .featured-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .featured-section .featured-grid {
    gap: 8px;
  }
}
.featured-section .featured-main {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.featured-section .featured-main .video-thumbnail {
  position: relative;
  padding-top: 56.25%;
}
.featured-section .featured-main .video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-section .featured-main .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.featured-section .featured-main .video-overlay .play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.featured-section .featured-main .video-overlay .play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
.featured-section .featured-main .video-overlay .video-info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
.featured-section .featured-main .video-overlay .video-info .tag {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.featured-section .featured-main .video-overlay .video-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}
.featured-section .featured-main .video-overlay .video-info p {
  color: #cccccc;
  margin-bottom: 12px;
  line-height: 1.5;
}
.featured-section .featured-main .video-overlay .video-info .meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #999999;
}
.featured-section .featured-main .video-overlay .video-info .meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.featured-section .featured-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .featured-section .featured-sidebar {
    gap: 8px;
  }
}
.featured-section .featured-sidebar .sidebar-item {
  display: flex;
  gap: 12px;
  background: #2a2a2a;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.featured-section .featured-sidebar .sidebar-item:hover {
  background: #333333;
  transform: translateX(4px);
}
.featured-section .featured-sidebar .sidebar-item .item-thumbnail {
  position: relative;
  width: 120px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.featured-section .featured-sidebar .sidebar-item .item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-section .featured-sidebar .sidebar-item .item-thumbnail .duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
}
.featured-section .featured-sidebar .sidebar-item .item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.featured-section .featured-sidebar .sidebar-item .item-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-section .featured-sidebar .sidebar-item .item-info .date {
  font-size: 12px;
  color: #999999;
  margin-top: 4px;
}
.featured-section .featured-sidebar .sidebar-item .item-info .views {
  font-size: 12px;
  color: #999999;
}

.trending-section {
  margin-bottom: 64px;
}
.trending-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.trending-section .section-header .view-all {
  color: #00d4ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border: 1px solid #00d4ff;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.trending-section .section-header .view-all::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, rgb(76.5, 224.9, 255));
  width: 0%;
  transition: width 0.3s ease;
  z-index: -1;
}
.trending-section .section-header .view-all:hover {
  color: #0a0a0a;
  border-color: transparent;
}
.trending-section .section-header .view-all:hover::before {
  width: 100%;
}
.trending-section .trending-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .trending-section .trending-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .trending-section .trending-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.trending-section .trending-card {
  width: 100%;
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.trending-section .trending-card .card-thumbnail {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
}
.trending-section .trending-card .card-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trending-section .trending-card .card-thumbnail .rank {
  display: none;
}
.trending-section .trending-card .card-thumbnail .tag.hot {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #ff4757, #ff3838);
  color: #ffffff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  animation: pulse-hot 2s infinite;
}
.trending-section .trending-card .card-info {
  padding: 16px;
}
.trending-section .trending-card .card-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.trending-section .trending-card .card-info .meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #999999;
}
.trending-section .slider-btn {
  display: none;
}

.latest-section {
  margin-bottom: 64px;
}
.latest-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.latest-section .section-header .view-all {
  color: #00d4ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border: 1px solid #00d4ff;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.latest-section .section-header .view-all::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, rgb(76.5, 224.9, 255));
  width: 0%;
  transition: width 0.3s ease;
  z-index: -1;
}
.latest-section .section-header .view-all:hover {
  color: #0a0a0a;
  border-color: transparent;
}
.latest-section .section-header .view-all:hover::before {
  width: 100%;
}
.latest-section .latest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .latest-section .latest-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .latest-section .latest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.latest-section .latest-card {
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.latest-section .latest-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.latest-section .latest-card .card-thumbnail {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.latest-section .latest-card .card-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-section .latest-card .card-thumbnail .tag.new {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #00d4ff, #00b8d4);
  color: #ffffff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  animation: pulse 2s infinite;
}
.latest-section .latest-card .card-thumbnail .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.latest-section .latest-card .card-info {
  padding: 12px;
}
.latest-section .latest-card .card-info h3 {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.latest-section .latest-card .card-info .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #999999;
  font-size: 12px;
}
.latest-section .latest-card .card-info .meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 768px) {
  .latest-section .latest-card .card-info {
    padding: 8px;
  }
  .latest-section .latest-card .card-info h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .latest-section .latest-card .card-info .meta {
    gap: 8px;
    font-size: 11px;
  }
  .latest-section .latest-card .card-thumbnail .duration {
    padding: 1px 4px;
    font-size: 11px;
  }
}

.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: #2a2a2a;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #404040;
}
.categories-section .category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 53, 0.5);
}
.categories-section .category-card .category-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.categories-section .category-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}
.categories-section .category-card p {
  color: #cccccc;
  margin-bottom: 16px;
  line-height: 1.5;
}
.categories-section .category-card .video-count {
  font-size: 13px;
  color: #999999;
  background: rgba(64, 64, 64, 0.3);
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
}
.categories-section .category-card.tech:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
}
.categories-section .category-card.entertainment:hover {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(238, 90, 82, 0.05));
}
.categories-section .category-card.education:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 184, 212, 0.05));
}
.categories-section .category-card.lifestyle:hover {
  background: linear-gradient(135deg, rgba(38, 208, 206, 0.1), rgba(29, 209, 161, 0.05));
}

.friend-links {
  padding: 48px 0;
  background: #1a1a1a;
  margin-top: 48px;
}
.friend-links h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}
.friend-links .links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.friend-links .links-grid .link-item {
  color: #cccccc;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #404040;
  transition: all 0.3s ease;
  background: rgba(42, 42, 42, 0.5);
}
.friend-links .links-grid .link-item:hover {
  color: #ff6b35;
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.footer {
  background: #1a1a1a;
  padding: 40px 0;
  margin-top: 48px;
  border-top: 1px solid #404040;
}
.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);
}
.footer .footer-links {
  display: flex;
  gap: 32px;
}
.footer .footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer .footer-links a:hover {
  color: #ff6b35;
}
.footer .copyright {
  color: #999999;
  font-size: 13px;
  text-align: center;
}

.footer .links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}
.footer .links-grid .link-item {
  color: #cccccc;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #404040;
  transition: all 0.3s ease;
  font-size: 13px;
}
.footer .links-grid .link-item:hover {
  color: #ff6b35;
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
  }
}
@keyframes pulse-hot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
  }
}
.tag.hot {
  animation: pulse-hot 2s infinite;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  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;
  }
}

@media (max-width: 768px) {
  .main-content {
    margin-top: 52px;
  }
  .featured-section {
    margin-bottom: 12px;
  }
  .featured-section .featured-grid {
    gap: 8px;
  }
  .featured-section .featured-sidebar {
    gap: 8px;
  }
  .trending-section {
    margin-bottom: 12px;
  }
  .trending-section .trending-track {
    gap: 8px;
  }
  .latest-section {
    margin-bottom: 12px;
  }
  .latest-section .latest-grid {
    gap: 8px;
  }
  .banner-section {
    margin-bottom: 8px;
  }
  .footer {
    padding: 15px 0;
    margin-top: 15px;
  }
  .footer .footer-content {
    gap: 10px;
  }
  .footer .links-grid {
    gap: 8px;
    margin-top: 8px;
  }
}
.meta .views {
  display: none;
}

.sidebar-item .item-info h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trending-section .trending-card .card-info h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.latest-section .latest-card .card-info h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.latest-section .latest-card .card-info h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.banner-section {
  width: 100%;
  margin-bottom: 20px;
}
.banner-section .banner-wrapper {
  width: 100%;
}

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

.iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
}
.iframeBox .iframe {
  width: 100%;
  height: 100%;
}

.pagination-container {
  margin: 30px auto 20px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: #2a2a2a;
  text-align: center;
  color: #cccccc;
  border: 1px solid #404040;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 14px;
}
.pagination-container ul li:hover:not(.active):not(.disabled) {
  background: rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
  color: #ff6b35;
  transform: translateY(-1px);
}
.pagination-container ul li.active, .pagination-container ul li a.active {
  background: #ff6b35;
  font-weight: 500;
  color: #ffffff;
  border-color: #ff6b35;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.pagination-container ul li a {
  width: 100%;
  height: 100%;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: inherit;
}
.pagination-container ul li a.active {
  background: #ff6b35;
  font-weight: 500;
  color: #ffffff;
  border-color: #ff6b35;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li:disabled, .pagination-container ul li.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #999999;
  background: #2a2a2a;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background: #2a2a2a;
  border-color: #404040;
  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;
    border-radius: 6px;
  }
  .pagination-container ul li.page-options {
    width: 60px;
  }
}

.search-result-section .result-count {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 10px;
}
.search-result-section .result-count .keyword {
  color: #ff6b35;
  font-weight: 500;
  margin: 0 4px;
  padding: 2px 8px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 4px;
}
@media (max-width: 768px) {
  .search-result-section .result-count {
    font-size: 13px;
  }
  .search-result-section .result-count .keyword {
    padding: 1px 6px;
  }
}
.search-result-section .result-filter {
  margin: 20px 0;
  padding: 15px;
  background: #2a2a2a;
  border-radius: 8px;
}
.search-result-section .result-filter .filter-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.search-result-section .result-filter .filter-item .filter-label {
  color: #cccccc;
}
.search-result-section .result-filter .filter-item a {
  color: #cccccc;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.search-result-section .result-filter .filter-item a:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}
.search-result-section .result-filter .filter-item a.active {
  color: #ffffff;
  background: #ff6b35;
}
@media (max-width: 768px) {
  .search-result-section .result-filter {
    margin: 15px 0;
    padding: 10px;
  }
  .search-result-section .result-filter .filter-item {
    gap: 10px;
    flex-wrap: wrap;
  }
  .search-result-section .result-filter .filter-item .filter-label {
    width: 100%;
  }
  .search-result-section .result-filter .filter-item a {
    flex: 1;
    text-align: center;
    font-size: 13px;
    padding: 8px;
  }
}

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

.search-result-section .video-grid, .search-result-section .latest-grid {
  grid-template-columns: repeat(5, 1fr);
}

.video-card, .latest-card {
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-card:hover, .latest-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.video-card .card-thumbnail, .latest-card .card-thumbnail {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.video-card .card-thumbnail img, .latest-card .card-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card .card-thumbnail .duration, .latest-card .card-thumbnail .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.video-card .card-info, .latest-card .card-info {
  padding: 12px;
}
.video-card .card-info h3, .latest-card .card-info h3 {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.video-card .card-info .meta, .latest-card .card-info .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #999999;
  font-size: 12px;
}
.video-card .card-info .meta span, .latest-card .card-info .meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 768px) {
  .video-card, .latest-card {
    border-radius: 4px;
    width: 100%;
    margin: 0;
  }
  .video-card:hover, .latest-card:hover {
    transform: none;
    box-shadow: none;
  }
  .video-card .card-thumbnail .duration, .latest-card .card-thumbnail .duration {
    padding: 1px 4px;
    font-size: 11px;
  }
  .video-card .card-info, .latest-card .card-info {
    padding: 8px;
  }
  .video-card .card-info h3, .latest-card .card-info h3 {
    font-size: 13px;
    margin-bottom: 4px;
    -webkit-line-clamp: 1;
  }
  .video-card .card-info .meta, .latest-card .card-info .meta {
    font-size: 11px;
    gap: 8px;
  }
}

.latest-grid {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .latest-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.video-info {
  padding: 20px;
}
.video-info .video-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(64, 64, 64, 0.5);
  margin-bottom: 15px;
}
.video-info .video-meta span {
  color: #cccccc;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.video-info .video-meta span i {
  font-size: 16px;
  color: #999999;
}
.video-info .video-desc {
  color: #cccccc;
  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: 4px;
  }
  .video-info .video-meta {
    gap: 15px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .video-info .video-meta span {
    font-size: 12px;
    gap: 4px;
  }
  .video-info .video-meta span i {
    font-size: 14px;
  }
  .video-info .video-desc {
    font-size: 13px;
  }
}

.video-detail .video-player-wrapper {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.video-detail .video-info {
  margin-bottom: 30px;
}
.video-detail .video-info .video-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 15px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .video-detail .video-info .video-title {
    font-size: 18px;
    margin: 0 0 10px;
  }
}
.video-detail .video-info .video-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .video-detail .video-info .video-meta {
    gap: 15px;
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.video-detail .video-info .video-desc {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .video-detail .video-info .video-desc {
    font-size: 13px;
  }
}
.video-detail .related-videos {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .video-detail .related-videos {
    margin-top: 20px;
  }
}
.video-detail .related-videos .section-header {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .video-detail .related-videos .section-header {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  .video-detail .related-videos .video-grid, .video-detail .related-videos .latest-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.plyr {
  --plyr-color-main: #ff6b35;
  --plyr-video-background: #0a0a0a;
}
.plyr.plyr--video {
  border-radius: 8px;
  overflow: hidden;
}

.video-player {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0a0a;
  margin-bottom: 24px;
  --plyr-color-main: #ff6b35;
  --plyr-video-background: #0a0a0a;
  --plyr-menu-background: #2a2a2a;
  --plyr-menu-color: #ffffff;
  --plyr-tooltip-background: #2a2a2a;
  --plyr-tooltip-color: #ffffff;
  --plyr-range-fill-background: #ff6b35;
  --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: 4px;
  --plyr-control-toggle-checked-background: #ff6b35;
}

.plyr--video .plyr__control:hover {
  background: rgba(255, 107, 53, 0.8);
}
.plyr--video .plyr__control--overlaid {
  background: rgba(255, 107, 53, 0.9);
}
.plyr--video .plyr__control--overlaid:hover {
  background: #ff6b35;
}

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