@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgb(38, 40, 42);
  min-height: 100vh;
  background: #f5f5f5;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  border: none;
  background: none;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: #f5f5f5;
  color: #212121;
  line-height: 1.6;
  overflow-x: hidden;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  height: 65px;
  position: relative;
}
@media (min-width: 769px) {
  .header-container {
    flex-direction: row;
    height: 65px;
  }
}

.header-top {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-desktop {
  display: flex !important;
}

.heder_input {
  width: 100%;
  justify-content: space-between;
  display: flex;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 5px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex !important;
  }
}
.hamburger-menu .hamburger-line {
  width: 20px;
  height: 2px;
  background: #212121;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.hamburger-menu:hover .hamburger-line {
  background: #3B82F6;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-sidebar.active {
  visibility: visible;
  opacity: 1;
}
.mobile-sidebar .mobile-sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.mobile-sidebar .mobile-sidebar-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-sidebar.active .mobile-sidebar-content {
  transform: translateX(0);
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
  background: #ffffff;
}
.mobile-sidebar-header .mobile-logo {
  height: 24px;
}
.mobile-sidebar-header .close-btn {
  background: transparent;
  border: none;
  color: #212121;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-sidebar-header .close-btn:hover {
  color: #3B82F6;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav .mobile-nav-item {
  border-bottom: 1px solid #e0e0e0;
}
.mobile-nav .mobile-nav-item a {
  display: block;
  padding: 15px 20px;
  color: #212121;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.mobile-nav .mobile-nav-item a:hover {
  background: #f5f5f5;
  color: #3B82F6;
}
.mobile-nav .mobile-nav-item.active a {
  color: white;
  background: #3B82F6;
  font-weight: 600;
  position: relative;
}
.mobile-nav .mobile-nav-item.active a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.8);
}
.mobile-nav .mobile-nav-item.active a:hover {
  background: #2563EB;
  color: white;
}

body.sidebar-open {
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  left: 2rem;
}
@media (max-width: 768px) {
  .logo {
    position: static;
  }
}

.logo img {
  height: 30px;
  object-fit: contain;
}

.logo h1 {
  color: #212121;
  font-size: 1.8rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 0.5rem;
}

.nav-item {
  color: #424242;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.nav-item:hover {
  color: #212121;
  background: #ffffff;
}

.nav-item.active {
  color: white;
  background: #3B82F6;
}

.header-search {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  width: 300px;
  transition: all 0.3s ease;
  position: absolute;
  right: 2rem;
}
.header-search:focus-within {
  border-color: #3B82F6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}
@media (max-width: 768px) {
  .header-search {
    position: static;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .header-search {
    width: calc(100vw - 4rem);
    max-width: 260px;
    min-width: 180px;
  }
}

.header-search input {
  background: transparent;
  border: none;
  padding: 0.6rem 0.8rem;
  color: #212121;
  width: 100%;
  font-size: 0.9rem;
  flex: 1;
}
.header-search input::placeholder {
  color: #757575;
}
.header-search input:focus {
  outline: none;
}

.header-search-btn {
  background: #3B82F6;
  border: none;
  color: white;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.header-search-btn:hover {
  background: #2563EB;
}

.video-carousel {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.carousel-container {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
}

.carousel-title {
  color: #212121;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: left;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  width: 100%;
  transition: transform 0.3s ease;
}

.video-carousel-item.cloned {
  flex: 0 0 calc((100% - 80px) / 6);
}

.video-carousel-item {
  flex: 0 0 calc((100% - 80px) / 6);
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-carousel-item:hover {
  transform: translateY(-4px);
  border-color: #3B82F6;
}

.video-carousel-item .video-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.video-carousel-item .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-carousel-item:hover .video-thumb img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-carousel-item:hover .play-overlay {
  opacity: 1;
}

.video-carousel-item .duration {
  display: none;
}

.video-carousel-item p {
  color: #212121;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem;
  margin: 0;
  line-height: 1.8;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* 这里是超出几行省略 */
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .video-carousel {
    margin: 1.5rem auto;
    padding: 0 1rem;
  }
  .carousel-container {
    padding: 1rem;
    border-radius: 8px;
  }
  .carousel-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .video-carousel-item,
  .video-carousel-item.cloned {
    flex: 0 0 calc((100% - 8px) / 2);
  }
  .carousel-track {
    gap: 0.5rem;
  }
  .video-carousel-item h4 {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
  .video-carousel-item .duration {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
  .play-overlay {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .video-carousel {
    padding: 0 1.5rem;
  }
  .carousel-container {
    padding: 1.25rem;
  }
  .carousel-title {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }
  .video-grid,
  .video-grid-large,
  .video-grid-hot,
  .video-grid-latest {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.search-section {
  background: #f5f5f5;
  padding: 2rem 0;
  margin: 1rem 0;
}

.search-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.search-title {
  color: #212121;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.search-subtitle {
  color: #424242;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.search-form {
  margin-bottom: 0;
}

.search-input-wrapper {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.search-input-wrapper:focus-within {
  border-color: #3B82F6;
}

.search-input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  background: transparent;
  color: #212121;
  font-size: 0.9rem;
  outline: none;
}
.search-input::placeholder {
  color: #757575;
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: #3B82F6;
  color: #212121;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-btn:hover {
  background: #2563EB;
}
.search-btn .search-icon {
  font-size: 1rem;
}

.banner-ad {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.banner-ad .ad-content {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
}

.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container {
  display: flex;
  gap: 2rem;
  align-items: start;
}

.detail-wrapper {
  max-width: 1200px;
}

.detail-wrapper .banner-ad {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.main-content {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.sidebar {
  position: sticky;
  top: 100px;
  width: 300px;
  flex-shrink: 0;
}
.sidebar:empty {
  display: none;
}
.sidebar.hidden {
  display: none;
}

.side-ad {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.side-ad h4 {
  color: #212121;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ad-placeholder {
  background: #f5f5f5;
  border: 2px dashed #e0e0e0;
  border-radius: 6px;
  color: #757575;
  font-size: 0.9rem;
}

.video-section {
  margin-bottom: 3rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212121;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3B82F6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #3B82F6;
  border-radius: 25px;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 188, 212, 0.1) 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.more-link::after {
  content: "→";
  font-size: 1rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.more-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.more-link:hover {
  color: #212121;
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  border-color: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}
.more-link:hover::after {
  transform: translateX(4px);
}
.more-link:hover::before {
  left: 100%;
}

.more-link:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
}

.sort-options select {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: #212121;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  width: 100%;
}

.video-grid-large {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  width: 100%;
}

.video-grid-hot {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  width: 100%;
}

.video-grid-latest {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  width: 100%;
}

.video-card {
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  min-width: 0;
}

.video-card:hover {
  transform: translateY(-2px);
}

.video-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.play-btn {
  display: none;
}

.duration {
  display: none;
}

.hot-badge {
  display: none;
}

.video-info {
  padding: 0.5rem;
  position: relative;
  width: 100%;
  min-width: 0;
}

.video-info h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #212121;
  line-height: 1.4;
  overflow: hidden;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 100%;
}

.video-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #3B82F6;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  z-index: 2;
}

.video-tag.recommended {
  background: #3B82F6;
}

.video-tag.hot {
  background: #FF6B6B;
}

.video-tag.new {
  background: #4ECDC4;
}

.video-meta,
.video-desc,
.video-stats {
  display: none;
}

.filter-bar {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group label {
  color: #212121;
  font-weight: 500;
  min-width: 60px;
  font-size: 0.95rem;
}

.filter-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #e0e0e0;
  color: #424242;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #f5f5f5;
  color: #212121;
}

.filter-btn.active {
  background: #3B82F6;
  border-color: #3B82F6;
  color: #212121;
}

.pagination-container {
  margin: 2rem auto;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.pagination-container ul li {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pagination-container ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  color: #424242;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.pagination-container ul li a:hover {
  background: #f5f5f5;
  color: #212121;
  transform: translateY(-1px);
}
.pagination-container ul li a.active {
  background: #3B82F6;
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}
.pagination-container ul li.page-options a {
  min-width: 60px;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 1.5rem auto;
  }
  .pagination-container ul {
    gap: 0.3rem;
    padding: 0.3rem;
  }
  .pagination-container ul li a {
    min-width: 36px;
    height: 36px;
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
  .pagination-container ul li.page-options a {
    min-width: 50px;
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .pagination-container ul {
    gap: 0.2rem;
  }
  .pagination-container ul li a {
    min-width: 32px;
    height: 32px;
    font-size: 0.75rem;
    padding: 0 0.4rem;
  }
  .pagination-container ul li.page-options a {
    min-width: 45px;
    font-size: 0.7rem;
  }
}

.page-dots {
  color: #757575;
  padding: 0.75rem 0.5rem;
}

.search-result-header {
  margin-bottom: 2rem;
}

.search-result-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #212121;
}

.search-info {
  color: #424242;
  font-size: 1rem;
  font-weight: 500;
}

.search-info strong {
  color: #212121;
  font-weight: 700;
}

.hot-search {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-tag {
  background: transparent;
  border: 1px solid #e0e0e0;
  color: #424242;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.search-tag:hover {
  background: #3B82F6;
  border-color: #3B82F6;
  color: #212121;
}

.hot-movies {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hot-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hot-item:hover {
  background: #f5f5f5;
}

.hot-item img {
  width: 50px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}

.hot-info {
  flex: 1;
}

.hot-info h5 {
  color: #212121;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hot-info p {
  color: #424242;
  font-size: 0.8rem;
  margin: 0;
}

.video-player-section {
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.video-player {
  margin-bottom: 1.5rem;
}


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

.video-header {
  margin-bottom: 2rem;
  text-align: center;
}
.video-header .video-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.video-header .video-subtitle {
  color: #424242;
  font-size: 1rem;
  margin: 0;
}

.episodes-section {
  margin-bottom: 2rem;
}
.episodes-section .episodes-title {
  color: #212121;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.episodes-section .episodes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.episodes-section .episode-btn {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #424242;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.episodes-section .episode-btn:hover {
  background: #ffffff;
  color: #212121;
  border-color: #3B82F6;
}
.episodes-section .episode-btn.active {
  background: #3B82F6;
  color: white;
  border-color: #3B82F6;
  font-weight: 600;
}

.toggle-description {
  background: #3B82F6;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
  float: right;
  clear: both;
}
.toggle-description:hover {
  background: #2563EB;
}

.description-content.collapsed {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.video-details-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-details .video-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.video-details .video-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.video-details .video-meta span {
  background: #ffffff;
  color: #424242;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

.video-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1.5rem;
}

.video-title {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #212121 !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.2 !important;
  background: linear-gradient(135deg, #212121, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-subtitle {
  color: #424242;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.video-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(0, 188, 212, 0.02));
  border-radius: 10px;
  border: 1px solid rgba(0, 188, 212, 0.1);
}

.rating-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.score {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3B82F6;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.2rem;
  color: #757575;
}
.star.filled {
  color: #ffd700;
}
.star.half {
  background: linear-gradient(90deg, #ffd700 50%, #757575 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-info {
  margin-left: 0.5rem;
}

.rating-count {
  color: #424242;
  font-size: 0.9rem;
  margin: 0;
}

.view-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #3B82F6;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #424242;
  font-weight: 500;
}

.video-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f5f5f5;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.info-item:last-child {
  border-bottom: none;
}

.info-label {
  min-width: 80px;
  color: #424242;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.info-value {
  color: #212121;
  font-weight: 500;
  line-height: 1.4;
}

.genre-tag {
  display: inline-block;
  background: #3B82F6;
  color: #212121;
  padding: 0.25rem 0.6rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
}

.description-title {
  color: #212121;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3B82F6;
  display: inline-block;
}

.description-content p {
  color: #424242;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.description-content p:last-child {
  margin-bottom: 0;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.action-btn.primary {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  color: #212121;
}
.action-btn.primary:hover {
  background: linear-gradient(135deg, #2563EB 0%, rgb(18.5714285714, 76.1428571429, 202.4285714286) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}
.action-btn.secondary {
  background: transparent;
  color: #424242;
  border-color: #e0e0e0;
}
.action-btn.secondary:hover {
  background: #f5f5f5;
  color: #212121;
  border-color: #3B82F6;
  transform: translateY(-1px);
}
.action-btn .btn-icon {
  font-size: 1rem;
}

.video-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #424242;
  font-weight: 500;
}

.video-description {
  margin-bottom: 2rem;
}

.video-description h3 {
  color: #212121;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.video-description p {
  color: #424242;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 400;
}

.video-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn.primary {
  background: #3B82F6;
  color: #212121;
}

.action-btn.primary:hover {
  background: #2563EB;
}

.action-btn:not(.primary) {
  background: #ffffff;
  color: #212121;
  border: 1px solid #e0e0e0;
}

.action-btn:not(.primary):hover {
  background: #f5f5f5;
}

.footer {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: #424242;
  font-weight: 500;
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links p {
  color: #212121;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.footer-link {
  color: #424242;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
}
.footer-link:hover {
  color: white;
  background: #3B82F6;
  border-color: #3B82F6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin: 1.5rem 0;
}

.video-count {
  color: #424242;
  font-size: 0.95rem;
  font-weight: 500;
}

.video-count strong {
  color: #212121;
  font-weight: 700;
}

@media (max-width: 1500px) {
  .main-wrapper {
    padding: 0 1rem;
  }
  .banner-ad {
    padding: 0 1rem;
  }
  .header-container {
    padding: 0 1rem;
  }
}
@media (max-width: 1200px) {
  .container {
    flex-direction: column;
    gap: 2rem;
  }
  .sidebar {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (max-width: 768px) {
  .banner-ad {
    padding: 0 1rem;
  }
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 1rem;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .logo {
    order: 0;
  }
  .header-top {
    order: 1;
    width: 100%;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
  }
  .nav-desktop {
    display: none !important;
  }
  .header-search {
    flex: 1;
    max-width: 280px;
    min-width: 200px;
  }
  .header-search input {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  .header-search .header-search-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  .hamburger-menu {
    flex-shrink: 0;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .header-container {
    padding: 0.8rem;
    gap: 0.8rem;
  }
  .header-search {
    max-width: 200px;
    min-width: 140px;
  }
  .header-search input {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
  .header-search .header-search-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
  .more-link {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 12px;
  }
  .more-link::after {
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .nav-mobile {
    width: 100%;
    order: 2;
    margin-top: 0.5rem;
  }
  .hamburger-menu {
    display: flex !important;
  }
  .nav-item {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  .carousel-slide {
    padding: 1rem;
  }
  .slide-info h3 {
    font-size: 1.5rem;
  }
  .slide-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .play-carousel-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .prev-btn {
    left: 0.5rem;
  }
  .next-btn {
    right: 0.5rem;
  }
  .main-container {
    padding: 1rem;
  }
  .video-grid,
  .video-grid-large,
  .video-grid-hot,
  .video-grid-latest {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    width: 100%;
  }
  .video-info {
    padding: 0.3rem;
  }
  .video-info h3 {
    font-size: 0.7rem;
  }
  .more-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 15px;
    border-width: 1px;
  }
  .more-link::after {
    font-size: 0.8rem;
  }
  .search-section {
    padding: 1.5rem 0;
    margin: 0.5rem 0;
  }
  .search-container {
    padding: 0 1rem;
  }
  .search-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .search-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .search-input-wrapper {
    max-width: 100%;
    border-radius: 6px;
  }
  .search-input {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
  }
  .search-btn {
    padding: 0.7rem 1rem;
  }
  .search-btn .search-text {
    display: none;
  }
  .video-card {
    width: 100%;
  }
  .filter-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .pagination {
    flex-wrap: wrap;
  }
  .video-details .video-title {
    font-size: 1.8rem;
  }
  .video-details-card {
    padding: 1rem;
    margin: 1rem 0;
  }
  .video-header .video-title {
    font-size: 1.5rem;
  }
  .video-header .video-subtitle {
    font-size: 0.9rem;
  }
  .episodes-section .episodes-title {
    font-size: 1.1rem;
  }
  .episodes-section .episode-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  .toggle-description {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  .video-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .rating-section {
    justify-content: center;
  }
  .view-stats {
    justify-content: center;
    gap: 1.5rem;
  }
  .video-info-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .action-buttons {
    flex-direction: column;
  }
  .action-buttons .action-btn {
    justify-content: center;
    padding: 0.7rem 1.2rem;
  }
  .video-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links {
    margin-bottom: 1rem;
  }
  .footer-links p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .links-grid {
    gap: 0.4rem;
  }
  .footer-link {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 15px;
  }
  .footer-container {
    padding: 1rem;
    font-size: 0.8rem;
  }
}
.iframeBox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.iframeBox .iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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