@charset "UTF-8";
.movie-intro {
  background: #2d2d2d;
  border: 1px solid #424242;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.movie-intro .movie-description {
  margin: 0;
  line-height: 1.8;
  color: #d9d9d9;
  font-size: 15px;
  text-align: justify;
}

.banner-ad img {
  width: 100%;
}

.banner-carousel {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.banner-carousel .carousel-container {
  width: 100%;
  position: relative;
}
.banner-carousel .carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.banner-carousel .slide {
  min-width: 100%;
  position: relative;
}
.banner-carousel .slide img {
  width: 100%;
  height: auto;
  display: block;
}

.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.friend-links .friend-link {
  display: inline-block;
  padding: 4px 8px;
  background: #3a3a3a;
  color: #d9d9d9;
  font-size: 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.friend-links .friend-link:hover {
  background: #4a9eff;
  color: white;
}

.simple-footer {
  background: #2d2d2d;
  border-top: 1px solid #424242;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
}
.simple-footer p {
  margin: 0;
  color: #8c8c8c;
  font-size: 14px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: #ffffff;
  background-color: #1a1a1a;
  font-size: 14px;
  min-height: 100vh;
}

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

a:hover {
  color: #4a9eff;
}

.header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #424242;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  height: 60px;
  justify-content: space-between;
  gap: 15px;
}
.header .logo a {
  display: block;
}
.header .logo a img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
.header .nav-menu {
  display: flex;
}
.header .nav-menu .nav-item {
  position: relative;
}
.header .nav-menu .nav-item .nav-link {
  display: block;
  padding: 20px 15px;
  color: #ffffff;
  font-weight: normal;
}
.header .nav-menu .nav-item .nav-link:hover, .header .nav-menu .nav-item .nav-link.active {
  color: #4a9eff;
}
.header .nav-menu .nav-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #2d2d2d;
  border: 1px solid #424242;
  min-width: 120px;
  display: none;
}
.header .nav-menu .nav-item .dropdown-menu .dropdown-item {
  display: block;
  padding: 8px 15px;
  color: #ffffff;
  font-size: 13px;
}
.header .nav-menu .nav-item .dropdown-menu .dropdown-item:hover {
  background: #3a3a3a;
  color: #4a9eff;
}
.header .nav-menu .nav-item:hover .dropdown-menu {
  display: block;
}
.header .search-container {
  width: 280px;
}
.header .search-container form {
  display: flex;
  align-items: center;
  border: 1px solid #424242;
  border-radius: 6px;
  padding: 0 12px;
  background: #2d2d2d;
  transition: all 0.3s ease;
}
.header .search-container form:focus-within {
  border-color: #4a9eff;
  box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.2);
}
.header .search-container .search-input {
  flex: 1;
  border: none;
  padding: 10px 0;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: #ffffff;
}
.header .search-container .search-input::placeholder {
  color: #8c8c8c;
}
.header .search-container .search-btn {
  border: none;
  background: none;
  cursor: pointer;
  color: #8c8c8c;
  padding: 4px;
}
.header .search-container .search-btn:hover {
  color: #4a9eff;
}
.header .hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.header .hamburger-menu .hamburger-line {
  width: 18px;
  height: 2px;
  background: #ffffff;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background: #2d2d2d;
  z-index: 2000;
  transition: left 0.3s ease;
  border-right: 1px solid #424242;
}
.mobile-sidebar.active {
  left: 0;
}
.mobile-sidebar .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #424242;
}
.mobile-sidebar .sidebar-header .sidebar-title {
  font-weight: bold;
  color: #ffffff;
}
.mobile-sidebar .sidebar-header .close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #8c8c8c;
}
.mobile-sidebar .sidebar-nav .nav-item .nav-link {
  display: block;
  padding: 12px 15px;
  color: #ffffff;
  border-bottom: 1px solid #424242;
}
.mobile-sidebar .sidebar-nav .nav-item .nav-link:hover, .mobile-sidebar .sidebar-nav .nav-item .nav-link.active {
  background: #3a3a3a;
  color: #4a9eff;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1500;
  display: none;
}
.sidebar-overlay.active {
  display: block;
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
  display: flex;
  gap: 20px;
  flex: 1;
}
.main-content .content-area {
  flex: 1;
}
.main-content .sidebar {
  width: 250px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  height: fit-content;
}
.main-content:not(:has(.sidebar)) .content-area {
  flex: 1;
  max-width: 100%;
}
.main-content .sidebar:not(:visible),
.main-content .sidebar[style*="display: none"] {
  display: none !important;
}
.main-content:has(.sidebar:not(:visible)) .content-area, .main-content:has(.sidebar[style*="display: none"]) .content-area {
  flex: 1;
  max-width: 100%;
}

.main-content.no-sidebar .content-area {
  flex: 1;
  max-width: 100%;
}
.main-content.no-sidebar .sidebar {
  display: none;
}

.content-area.full-width {
  flex: 1;
  max-width: 100%;
}

.carousel-container {
  background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
  border: 1px solid #424242;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 20px;
}
.carousel-container .slide-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}
.carousel-container .slide-subtitle {
  color: #d9d9d9;
}

.banner-ad {
  margin-bottom: 10px;
}

.video-section {
  margin-bottom: 40px;
  background: rgba(45, 45, 45, 0.3);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(66, 66, 66, 0.3);
}
.video-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.video-section .section-header h2 {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding-left: 20px;
}
.video-section .section-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 24px;
  background: linear-gradient(135deg, #4a9eff, #52c41a);
  border-radius: 3px;
}
.video-section .section-header .more-link {
  color: #d9d9d9;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.video-section .section-header .more-link:hover {
  color: #4a9eff;
  background: rgba(74, 158, 255, 0.1);
  border-color: #4a9eff;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.recommended-section {
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.05), rgba(82, 196, 26, 0.05));
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.recommended-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a9eff, #52c41a, #faad14);
}
.recommended-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}
.recommended-section .section-header h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.recommended-section .section-header h2::before {
  display: none;
}
.recommended-section .section-header::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #4a9eff, #52c41a);
  margin: 0 auto;
  border-radius: 1px;
}
.recommended-section .video-grid {
  gap: 24px;
}
.recommended-section .video-card {
  background: #2d2d2d;
  border: 1px solid rgba(66, 66, 66, 0.5);
  transition: all 0.4s ease;
}
.recommended-section .video-card:hover {
  border-color: #4a9eff;
  box-shadow: 0 12px 40px rgba(74, 158, 255, 0.2);
  transform: translateY(-8px);
}
.recommended-section .video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-card {
  background: #2d2d2d;
  border: 1px solid #424242;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-card:hover {
  border-color: #4a9eff;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(74, 158, 255, 0.2);
}
.video-card .video-thumb {
  position: relative;
  width: 100%;
  height: 140px;
  background: #e5e5e5;
}
.video-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card .video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #4a9eff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4);
}
.video-card .video-thumb .play-btn:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.video-card .video-thumb:hover .play-btn {
  opacity: 1;
}
.video-card .video-thumb .video-tags {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.video-card .video-thumb .video-tags .tag {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.video-card .video-thumb .video-tags .tag.hot {
  background: linear-gradient(135deg, #4a9eff, #ff3030);
  box-shadow: 0 2px 8px rgba(74, 158, 255, 0.4);
}
.video-card .video-thumb .video-tags .tag.new {
  background: linear-gradient(135deg, #52c41a, #00d4aa);
  box-shadow: 0 2px 8px rgba(82, 196, 26, 0.4);
}
.video-card .video-thumb .video-tags .tag.hd {
  background: linear-gradient(135deg, #faad14, #ffb700);
  box-shadow: 0 2px 8px rgba(250, 173, 20, 0.4);
}
.video-card .video-thumb .video-tags .tag.duration {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}
.video-card .video-info {
  padding: 15px;
}
.video-card .video-info .video-title {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
  font-weight: 600;
}
.video-card .video-info .video-desc {
  font-size: 12px;
  color: #d9d9d9;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  height: 33.6px;
}
.video-card .video-info .video-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #8c8c8c;
  margin-top: 8px;
}
.video-card .video-info .video-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 8px;
  opacity: 0.5;
}

.sidebar .sidebar-section {
  background: #2d2d2d;
  border: 1px solid #424242;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}
.sidebar .sidebar-section .section-header {
  padding: 15px;
  border-bottom: 1px solid #424242;
  background: rgba(58, 58, 58, 0.5);
}
.sidebar .sidebar-section .section-header .section-title {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}
.sidebar .sidebar-section .section-content {
  padding: 10px 15px;
}
.sidebar .sidebar-section .section-content .sidebar-item {
  padding: 8px 0;
  border-bottom: 1px solid #424242;
}
.sidebar .sidebar-section .section-content .sidebar-item:last-child {
  border-bottom: none;
}
.sidebar .sidebar-section .section-content .sidebar-item .item-title {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 3px;
}
.sidebar .sidebar-section .section-content .sidebar-item .item-meta {
  font-size: 11px;
  color: #8c8c8c;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 30px 0;
}
.pagination .page-btn {
  padding: 8px 12px;
  border: 1px solid #424242;
  background: #2d2d2d;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.pagination .page-btn:hover:not(.disabled) {
  border-color: #4a9eff;
  color: #4a9eff;
  transform: translateY(-1px);
}
.pagination .page-btn.active {
  background: #4a9eff;
  border-color: #4a9eff;
  color: white;
  box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}
.pagination .page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.video-player-section {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

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

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

.pagination-container {
  margin: 30px auto 20px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: #4a9eff;
  font-weight: 600;
  color: #ffffff;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #3a3a3a;
  text-align: center;
  color: #8c8c8c;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container ul li a.active {
  background: #4a9eff;
  font-weight: 600;
  color: #ffffff;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}
@media (max-width: 768px) {
  .pagination-container {
    transform: scale(0.8);
    margin: 20px auto 15px;
  }
}

@media (max-width: 768px) {
  .header .header-container {
    gap: 10px;
    flex-wrap: nowrap;
  }
  .header .nav-desktop {
    display: none;
  }
  .header .hamburger-menu {
    display: flex;
    order: 3;
  }
  .header .logo {
    order: 1;
    flex-shrink: 0;
  }
  .header .logo a img {
    height: 35px;
    max-width: 100px;
  }
  .header .search-container {
    order: 2;
    flex: 1;
    min-width: 120px;
    max-width: none;
    width: auto;
  }
  .main-content {
    flex-direction: column;
    padding: 15px 10px;
  }
  .main-content .sidebar {
    width: 100%;
  }
  .main-content.no-sidebar .content-area {
    flex: 1;
    max-width: 100%;
  }
  .carousel-container .slide-title {
    font-size: 20px;
  }
  .recommended-section {
    padding: 15px;
    margin-bottom: 20px;
  }
  .recommended-section .section-header {
    margin-bottom: 15px;
  }
  .recommended-section .video-grid {
    gap: 12px;
  }
  .video-section {
    padding: 15px;
    margin-bottom: 20px;
  }
  .video-section .section-header {
    margin-bottom: 15px;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .video-card .video-info {
    padding: 12px;
  }
  .video-card .video-info .video-title {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .video-card .video-info .video-desc {
    font-size: 11px;
  }
  .video-card .video-info .video-meta {
    margin-top: 6px;
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .header .header-container {
    padding: 0 10px;
    gap: 8px;
  }
  .header .logo {
    flex-shrink: 0;
    min-width: 60px;
  }
  .header .logo a img {
    height: 30px;
    max-width: 80px;
  }
  .header .search-container {
    flex: 1;
    min-width: 100px;
    max-width: none;
    padding: 0 6px;
  }
  .header .search-container .search-input {
    font-size: 13px;
    padding: 6px 0;
    min-width: 0;
  }
  .header .search-container .search-btn {
    font-size: 12px;
    padding: 6px 6px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .header .hamburger-menu {
    flex-shrink: 0;
    min-width: 30px;
  }
  .main-content {
    padding: 10px;
  }
  .recommended-section {
    padding: 12px;
    margin-bottom: 15px;
  }
  .recommended-section .section-header {
    margin-bottom: 12px;
  }
  .recommended-section .section-header h2 {
    font-size: 18px;
  }
  .recommended-section .video-grid {
    gap: 8px;
  }
  .video-section {
    padding: 12px;
    margin-bottom: 15px;
  }
  .video-section .section-header {
    margin-bottom: 12px;
  }
  .video-section .section-header h2 {
    font-size: 16px;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .video-card .video-thumb {
    height: 120px;
  }
  .video-card .video-info {
    padding: 10px;
  }
  .video-card .video-info .video-title {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .video-card .video-info .video-desc {
    font-size: 10px;
    -webkit-line-clamp: 1;
    height: 14px;
  }
  .video-card .video-info .video-meta {
    margin-top: 5px;
    font-size: 9px;
  }
  .carousel-container {
    padding: 20px 10px;
  }
  .carousel-container .slide-title {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .header .header-container {
    padding: 0 8px;
    gap: 5px;
  }
  .header .logo {
    min-width: 50px;
  }
  .header .logo a img {
    height: 25px;
    max-width: 60px;
  }
  .header .search-container {
    min-width: 80px;
    padding: 0 4px;
  }
  .header .search-container .search-input {
    font-size: 12px;
    padding: 5px 0;
  }
  .header .search-container .search-input::placeholder {
    font-size: 11px;
  }
  .header .search-container .search-btn {
    font-size: 10px;
    padding: 5px 4px;
  }
  .header .hamburger-menu {
    min-width: 25px;
  }
  .header .hamburger-menu .hamburger-line {
    width: 15px;
  }
}

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