@charset "UTF-8";
.movie-intro {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(79, 70, 229, 0.1);
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(79, 70, 229, 0.05);
  position: relative;
  overflow: hidden;
}
.movie-intro::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30px, -30px);
}
.movie-intro .movie-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.movie-intro .movie-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
.movie-intro .movie-tags .tag.hot {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}
.movie-intro .movie-tags .tag.hot::before {
  content: "🔥";
  margin-right: 4px;
}
.movie-intro .movie-tags .tag.recommended {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.movie-intro .movie-tags .tag.recommended::before {
  content: "⭐";
  margin-right: 4px;
}
.movie-intro .movie-tags .tag.new {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}
.movie-intro .movie-tags .tag.new::before {
  content: "✨";
  margin-right: 4px;
}
.movie-intro .movie-tags .tag.vip {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}
.movie-intro .movie-tags .tag.vip::before {
  content: "💎";
  margin-right: 4px;
}
.movie-intro .movie-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}
.movie-intro .movie-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  flex-wrap: wrap;
}
.movie-intro .movie-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}
.movie-intro .movie-meta .meta-item .meta-icon {
  font-size: 14px;
  color: #4f46e5;
}
.movie-intro .movie-meta .meta-item .meta-value {
  font-weight: 600;
  color: #374151;
}
.movie-intro .movie-meta .meta-item.date .meta-icon::before {
  content: "📅";
}
.movie-intro .movie-meta .meta-item.rating .meta-icon::before {
  content: "⭐";
}
.movie-intro .movie-meta .meta-item.duration .meta-icon::before {
  content: "⏱️";
}
.movie-intro .movie-meta .meta-item.views .meta-icon::before {
  content: "👁️";
}
.movie-intro .movie-description {
  margin: 0;
  line-height: 1.8;
  color: #4b5563;
  font-size: 15px;
  text-align: justify;
  position: relative;
  z-index: 1;
}
.movie-intro .movie-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.movie-intro .movie-actions .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.movie-intro .movie-actions .action-btn.primary {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: white;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}
.movie-intro .movie-actions .action-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}
.movie-intro .movie-actions .action-btn.secondary {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.2);
}
.movie-intro .movie-actions .action-btn.secondary:hover {
  background: rgba(79, 70, 229, 0.15);
  transform: translateY(-1px);
}

.banner-carousel {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.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;
  margin: 5px;
}
.friend-links .friend-link {
  display: inline-block;
  padding: 4px 8px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.friend-links .friend-link:hover {
  background: #4f46e5;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.simple-footer {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
}
.simple-footer p {
  margin: 0;
  color: #6b7280;
  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: #111827;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  font-size: 14px;
  min-height: 100vh;
}

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

a:hover {
  color: #4f46e5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(79, 70, 229, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(79, 70, 229, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f46e5 0%, #06b6d4 50%, #f59e0b 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.header:hover::before {
  opacity: 1;
}
.header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 70px;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.header .header-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.1) 25%, rgba(6, 182, 212, 0.1) 75%, transparent 100%);
}
.header .logo a {
  display: block;
}
.header .logo a img {
  height: 45px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.header .logo a:hover img {
  opacity: 0.8;
}
.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .nav-menu .nav-item {
  position: relative;
}
.header .nav-menu .nav-item .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  color: #111827;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}
.header .nav-menu .nav-item .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(6, 182, 212, 0.06) 100%);
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .nav-menu .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  border-radius: 1px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .nav-menu .nav-item .nav-link:hover {
  color: #4f46e5;
  transform: translateY(-1px);
}
.header .nav-menu .nav-item .nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}
.header .nav-menu .nav-item .nav-link:hover::after {
  width: 80%;
}
.header .nav-menu .nav-item .nav-link.active {
  color: #4f46e5;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.08) 100%);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.header .nav-menu .nav-item .nav-link.active::after {
  width: 100%;
}
.header .nav-menu .nav-item .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(79, 70, 229, 0.15);
  min-width: 160px;
  display: none;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(79, 70, 229, 0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .nav-menu .nav-item .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
}
.header .nav-menu .nav-item .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.header .nav-menu .nav-item .dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #4f46e5 0%, #06b6d4 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header .nav-menu .nav-item .dropdown-menu .dropdown-item:hover {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  color: #4f46e5;
  padding-left: 20px;
}
.header .nav-menu .nav-item .dropdown-menu .dropdown-item:hover::before {
  opacity: 1;
}
.header .nav-menu .nav-item .dropdown-menu .dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}
.header .nav-menu .nav-item .dropdown-menu .dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}
.header .nav-menu .nav-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(6, 182, 212, 0.06) 100%);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.header .hamburger-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.2) 50%, transparent 100%);
  transition: left 0.6s ease;
}
.header .hamburger-menu:hover {
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.2), 0 0 0 1px rgba(79, 70, 229, 0.2);
  border-color: rgba(79, 70, 229, 0.25);
}
.header .hamburger-menu:hover::before {
  left: 100%;
}
.header .hamburger-menu:hover .hamburger-line {
  background: #4f46e5;
  transform: scaleX(1.1);
}
.header .hamburger-menu:active {
  transform: translateY(0) scale(0.95);
}
.header .hamburger-menu .hamburger-line {
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .hamburger-menu .hamburger-line:nth-child(1) {
  transform-origin: center;
}
.header .hamburger-menu .hamburger-line:nth-child(2) {
  width: 16px;
}
.header .hamburger-menu .hamburger-line:nth-child(3) {
  width: 18px;
  transform-origin: center;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  z-index: 2000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid rgba(79, 70, 229, 0.12);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(79, 70, 229, 0.08);
}
.mobile-sidebar.active {
  left: 0;
}
.mobile-sidebar .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(79, 70, 229, 0.15);
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 50%, #f59e0b 100%);
  position: relative;
  overflow: hidden;
}
.mobile-sidebar .sidebar-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
}
.mobile-sidebar .sidebar-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}
.mobile-sidebar .sidebar-header .sidebar-title {
  font-weight: 700;
  font-size: 18px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  z-index: 1;
  position: relative;
}
.mobile-sidebar .sidebar-header .close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  cursor: pointer;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  z-index: 1;
  position: relative;
}
.mobile-sidebar .sidebar-header .close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.mobile-sidebar .sidebar-header .close-btn:active {
  transform: scale(0.95);
}
.mobile-sidebar .sidebar-nav {
  padding: 15px 0;
}
.mobile-sidebar .sidebar-nav .nav-item {
  margin: 0 15px 8px;
}
.mobile-sidebar .sidebar-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: #111827;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.mobile-sidebar .sidebar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #4f46e5 0%, #06b6d4 100%);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-sidebar .sidebar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-sidebar .sidebar-nav .nav-item .nav-link:hover {
  color: #4f46e5;
  transform: translateX(4px);
}
.mobile-sidebar .sidebar-nav .nav-item .nav-link:hover::before {
  opacity: 1;
}
.mobile-sidebar .sidebar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
}
.mobile-sidebar .sidebar-nav .nav-item .nav-link.active {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%);
  color: #4f46e5;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.mobile-sidebar .sidebar-nav .nav-item .nav-link.active::before {
  opacity: 1;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: blur(8px) saturate(120%);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

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

.search-section {
  margin: 25px 0;
  display: flex;
  justify-content: center;
}
.search-section .search-container {
  width: 100%;
  max-width: 600px;
}
.search-section .search-container form,
.search-section .search-container .search-form {
  display: flex;
  align-items: center;
  border: 2px solid rgba(79, 70, 229, 0.2);
  border-radius: 25px;
  padding: 8px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
}
.search-section .search-container form:focus-within,
.search-section .search-container .search-form:focus-within {
  border-color: #4f46e5;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.15), 0 0 0 3px rgba(79, 70, 229, 0.1);
  transform: translateY(-2px);
}
.search-section .search-container form:hover,
.search-section .search-container .search-form:hover {
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.15);
}
.search-section .search-container form .search-input,
.search-section .search-container .search-form .search-input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  background: transparent;
  color: #111827;
}
.search-section .search-container form .search-input::placeholder,
.search-section .search-container .search-form .search-input::placeholder {
  color: #6b7280;
}
.search-section .search-container form .search-input:focus,
.search-section .search-container .search-form .search-input:focus {
  outline: none;
}
.search-section .search-container form .search-btn,
.search-section .search-container .search-form .search-btn {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-left: 8px;
}
.search-section .search-container form .search-btn:hover,
.search-section .search-container .search-form .search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  background: linear-gradient(135deg, rgb(100.2701421801, 92.3578199052, 232.1421800948), rgb(6.7018348624, 203.2889908257, 236.7981651376));
}
.search-section .search-container form .search-btn:active,
.search-section .search-container .search-form .search-btn:active {
  transform: translateY(0);
}

.search-keyword-display {
  margin-bottom: 25px;
  text-align: center;
}
@media (max-width: 768px) {
  .search-keyword-display div {
    padding: 12px 24px !important;
    gap: 12px !important;
  }
  .search-keyword-display div span:first-child {
    font-size: 16px !important;
  }
  .search-keyword-display div span:last-child {
    font-size: 13px !important;
    padding: 3px 10px !important;
  }
}
@media (max-width: 480px) {
  .search-keyword-display {
    margin-bottom: 20px;
  }
  .search-keyword-display div {
    flex-direction: column !important;
    padding: 15px 20px !important;
    gap: 8px !important;
  }
  .search-keyword-display div span:first-child {
    font-size: 15px !important;
  }
  .search-keyword-display div span:last-child {
    font-size: 12px !important;
    padding: 2px 8px !important;
  }
}

.carousel-container {
  text-align: center;
  margin-bottom: 20px;
}
.carousel-container .slide-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111827;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.carousel-container .slide-subtitle {
  color: #4b5563;
}

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

.video-section {
  margin-bottom: 40px;
}
.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: 600;
  color: #111827;
  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, #4f46e5, #06b6d4);
  border-radius: 3px;
}
.video-section .section-header .more-link {
  color: #4b5563;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.video-section .section-header .more-link:hover {
  color: white;
  background: #4f46e5;
  border-color: #4f46e5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.video-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (min-width: 1400px) {
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 360px) {
  .video-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.no-sidebar .video-grid,
.main-content.no-sidebar .video-grid {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1200px) {
  .no-sidebar .video-grid,
  .main-content.no-sidebar .video-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1024px) {
  .no-sidebar .video-grid,
  .main-content.no-sidebar .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .no-sidebar .video-grid,
  .main-content.no-sidebar .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .no-sidebar .video-grid,
  .main-content.no-sidebar .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .no-sidebar .video-grid,
  .main-content.no-sidebar .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 360px) {
  .no-sidebar .video-grid,
  .main-content.no-sidebar .video-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.recommended-section {
  margin-bottom: 40px;
}
.recommended-section.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 50px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.025) 0%, rgba(6, 182, 212, 0.015) 50%, rgba(245, 158, 11, 0.02) 100%);
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
  padding: 35px 0 45px;
  position: relative;
}
.recommended-section.full-width::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.2) 25%, rgba(6, 182, 212, 0.2) 75%, transparent 100%);
}
.recommended-section.full-width::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.15) 25%, rgba(6, 182, 212, 0.15) 75%, transparent 100%);
}
.recommended-section.full-width .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.recommended-section.full-width .section-header {
  margin-bottom: 35px;
}
.recommended-section.full-width .section-header h2 {
  font-size: 28px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.recommended-section.full-width .video-grid {
  gap: 22px;
}
.recommended-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.recommended-section .section-header h2 {
  color: #111827;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}
.recommended-section .section-header h2::before {
  display: none;
}
.recommended-section .section-header .search-container {
  width: 320px;
}
.recommended-section .section-header .search-container form {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0 12px;
  background: #ffffff;
  transition: all 0.3s ease;
}
.recommended-section .section-header .search-container form:focus-within {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}
.recommended-section .section-header .search-container .search-input {
  flex: 1;
  border: none;
  padding: 10px 0;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: #111827;
}
.recommended-section .section-header .search-container .search-input::placeholder {
  color: #6b7280;
}
.recommended-section .section-header .search-container .search-btn {
  border: none;
  background: #4f46e5;
  cursor: pointer;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.recommended-section .section-header .search-container .search-btn:hover {
  background: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}
.recommended-section .video-grid {
  gap: 24px;
}
.recommended-section .video-card {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.recommended-section .video-card:hover {
  border-color: #4f46e5;
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
  transform: translateY(-8px);
}
.recommended-section .video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.video-card:hover {
  border-color: #4f46e5;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
}
.video-card .video-thumb {
  position: relative;
  width: 100%;
  height: 140px;
  background: #f3f4f6;
}
.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: #4f46e5;
  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(79, 70, 229, 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, #ef4444, #dc2626);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}
.video-card .video-thumb .video-tags .tag.new {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}
.video-card .video-thumb .video-tags .tag.hd {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 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: #111827;
  margin-bottom: 8px;
  line-height: 1.3;
  font-weight: 600;
}
.video-card .video-info .video-desc {
  font-size: 12px;
  color: #4b5563;
  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: #6b7280;
  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: #ffffff;
  border: 2px solid transparent;
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(6, 182, 212, 0.2));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(79, 70, 229, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.sidebar .sidebar-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.02) 0%, rgba(6, 182, 212, 0.01) 50%, rgba(245, 158, 11, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.sidebar .sidebar-section:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(79, 70, 229, 0.1), 0 0 20px rgba(79, 70, 229, 0.05);
  transform: translateY(-3px);
}
.sidebar .sidebar-section:hover::before {
  opacity: 1;
}
.sidebar .sidebar-section .section-header {
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.08) 50%, rgba(245, 158, 11, 0.06) 100%);
  border-bottom: 1px solid rgba(79, 70, 229, 0.2);
  position: relative;
  backdrop-filter: blur(10px);
}
.sidebar .sidebar-section .section-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5 0%, #06b6d4 50%, #f59e0b 100%);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}
.sidebar .sidebar-section .section-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.4) 25%, rgba(6, 182, 212, 0.4) 75%, transparent 100%);
}
.sidebar .sidebar-section .section-header .section-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}
.sidebar .sidebar-section .section-content {
  padding: 18px 22px 20px;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.98) 100%);
}
.sidebar .sidebar-section .section-content .sidebar-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  position: relative;
}
.sidebar .sidebar-section .section-content .sidebar-item:last-child {
  border-bottom: none;
}
.sidebar .sidebar-section .section-content .sidebar-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #4f46e5, #06b6d4);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sidebar .sidebar-section .section-content .sidebar-item:hover {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
  padding: 12px 12px;
  margin: 0 -12px;
  border-color: rgba(79, 70, 229, 0.25);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.1);
}
.sidebar .sidebar-section .section-content .sidebar-item:hover::before {
  opacity: 1;
}
.sidebar .sidebar-section .section-content .sidebar-item .item-title {
  font-size: 14px;
  color: #111827;
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.sidebar .sidebar-section .section-content .sidebar-item .item-meta {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.3;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.sidebar .sidebar-section .section-content .sidebar-item:hover .item-title {
  color: #4f46e5;
}
.sidebar .sidebar-section .section-content .sidebar-item:hover .item-meta {
  opacity: 1;
  color: rgb(83.7787234043, 89.2595744681, 100.2212765957);
}
.sidebar .sidebar-section:first-child .section-content {
  padding: 0;
  background: none;
}

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

.video-player-section {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.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: #4f46e5;
  font-weight: 600;
  color: white;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #f3f4f6;
  text-align: center;
  color: #6b7280;
  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: #4f46e5;
  font-weight: 600;
  color: white;
}
.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: 12px;
    flex-wrap: nowrap;
    padding: 0 16px;
    height: 65px;
  }
  .header .header-container::after {
    width: 90%;
  }
  .header .nav-desktop {
    display: none;
  }
  .header .hamburger-menu {
    display: flex;
    order: 3;
    width: 40px;
    height: 40px;
  }
  .header .hamburger-menu .hamburger-line {
    width: 18px;
  }
  .header .hamburger-menu .hamburger-line:nth-child(2) {
    width: 14px;
  }
  .header .hamburger-menu .hamburger-line:nth-child(3) {
    width: 16px;
  }
  .header .logo {
    order: 1;
    flex-shrink: 0;
  }
  .header .logo a img {
    height: 38px;
    max-width: 110px;
  }
  .mobile-sidebar {
    left: -260px;
    width: 260px;
  }
  .mobile-sidebar .sidebar-header {
    padding: 18px;
  }
  .mobile-sidebar .sidebar-header .sidebar-title {
    font-size: 16px;
  }
  .mobile-sidebar .sidebar-header .close-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .mobile-sidebar .sidebar-nav {
    padding: 12px 0;
  }
  .mobile-sidebar .sidebar-nav .nav-item {
    margin: 0 12px 6px;
  }
  .mobile-sidebar .sidebar-nav .nav-item .nav-link {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 10px;
  }
  .main-content {
    flex-direction: column;
    padding: 15px 10px;
  }
  .movie-intro {
    padding: 20px;
    margin-bottom: 20px;
  }
  .movie-intro .movie-title {
    font-size: 20px;
  }
  .movie-intro .movie-meta {
    gap: 15px;
  }
  .movie-intro .movie-meta .meta-item {
    font-size: 12px;
  }
  .movie-intro .movie-actions {
    gap: 8px;
  }
  .movie-intro .movie-actions .action-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  .search-section {
    margin: 20px 0;
  }
  .search-section .search-container {
    max-width: 100%;
  }
  .search-section .search-container form {
    border-radius: 10px;
  }
  .search-section .search-container form .search-input {
    padding: 12px 14px;
    font-size: 14px;
  }
  .search-section .search-container form .search-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  .search-section .sidebar {
    width: 100%;
  }
  .search-section .sidebar .sidebar-section {
    margin-bottom: 18px;
    border-radius: 10px;
  }
  .search-section .sidebar .sidebar-section .section-header {
    padding: 16px 18px;
  }
  .search-section .sidebar .sidebar-section .section-header::before {
    height: 3px;
  }
  .search-section .sidebar .sidebar-section .section-header .section-title {
    font-size: 15px;
  }
  .search-section .sidebar .sidebar-section .section-content {
    padding: 15px 18px 16px;
  }
  .search-section .sidebar .sidebar-section .section-content .sidebar-item {
    padding: 10px 0;
  }
  .search-section .sidebar .sidebar-section .section-content .sidebar-item .item-title {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .search-section .sidebar .sidebar-section .section-content .sidebar-item .item-meta {
    font-size: 11px;
  }
  .search-section .sidebar:first-child .section-content {
    padding: 0;
  }
  .search-section .sidebar:first-child .section-content img {
    border-radius: 0 0 10px 10px;
  }
  .search-section.no-sidebar .content-area {
    flex: 1;
    max-width: 100%;
  }
  .carousel-container .slide-title {
    font-size: 20px;
  }
  .recommended-section {
    margin-bottom: 20px;
  }
  .recommended-section.full-width {
    padding: 25px 0 30px;
    margin-bottom: 30px;
  }
  .recommended-section.full-width .container {
    padding: 0 15px;
  }
  .recommended-section.full-width .section-header {
    margin-bottom: 25px;
  }
  .recommended-section.full-width .section-header h2 {
    font-size: 24px;
  }
  .recommended-section .section-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .recommended-section .section-header .search-container {
    width: 100%;
  }
  .video-section {
    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 12px;
    gap: 10px;
    height: 60px;
  }
  .header .header-container::after {
    width: 95%;
  }
  .header .logo {
    flex-shrink: 0;
    min-width: 60px;
  }
  .header .logo a img {
    height: 32px;
    max-width: 85px;
  }
  .header .hamburger-menu {
    flex-shrink: 0;
    min-width: 36px;
    width: 36px;
    height: 36px;
    padding: 8px;
  }
  .header .hamburger-menu .hamburger-line {
    width: 16px;
    height: 2px;
  }
  .header .hamburger-menu .hamburger-line:nth-child(2) {
    width: 12px;
  }
  .header .hamburger-menu .hamburger-line:nth-child(3) {
    width: 14px;
  }
  .mobile-sidebar {
    left: -240px;
    width: 240px;
  }
  .mobile-sidebar .sidebar-header {
    padding: 15px;
  }
  .mobile-sidebar .sidebar-header .sidebar-title {
    font-size: 15px;
  }
  .mobile-sidebar .sidebar-header .close-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .mobile-sidebar .sidebar-nav {
    padding: 10px 0;
  }
  .mobile-sidebar .sidebar-nav .nav-item {
    margin: 0 10px 5px;
  }
  .mobile-sidebar .sidebar-nav .nav-item .nav-link {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 8px;
  }
  .main-content {
    padding: 10px;
  }
  .movie-intro {
    padding: 15px;
    margin-bottom: 18px;
  }
  .movie-intro .movie-tags {
    gap: 6px;
    margin-bottom: 12px;
  }
  .movie-intro .movie-tags .tag {
    padding: 3px 8px;
    font-size: 11px;
  }
  .movie-intro .movie-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .movie-intro .movie-meta {
    gap: 12px;
    flex-direction: column;
  }
  .movie-intro .movie-meta .meta-item {
    font-size: 11px;
  }
  .movie-intro .movie-description {
    font-size: 14px;
    line-height: 1.6;
  }
  .movie-intro .movie-actions {
    gap: 6px;
  }
  .movie-intro .movie-actions .action-btn {
    padding: 5px 10px;
    font-size: 11px;
  }
  .movie-intro .movie-actions .action-btn span {
    font-size: 10px;
  }
  .search-section {
    margin: 15px 0;
  }
  .search-section .search-container form {
    border-radius: 8px;
    padding: 0 6px;
  }
  .search-section .search-container form .search-input {
    padding: 10px 12px;
    font-size: 13px;
  }
  .search-section .search-container form .search-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .sidebar .sidebar-section {
    margin-bottom: 15px;
    border-radius: 8px;
  }
  .sidebar .sidebar-section .section-header {
    padding: 14px 16px;
  }
  .sidebar .sidebar-section .section-header::before {
    height: 2px;
  }
  .sidebar .sidebar-section .section-header .section-title {
    font-size: 14px;
  }
  .sidebar .sidebar-section .section-content {
    padding: 12px 16px 14px;
  }
  .sidebar .sidebar-section .section-content .sidebar-item {
    padding: 8px 0;
  }
  .sidebar .sidebar-section .section-content .sidebar-item .item-title {
    font-size: 12px;
    margin-bottom: 3px;
  }
  .sidebar .sidebar-section .section-content .sidebar-item .item-meta {
    font-size: 10px;
  }
  .sidebar:first-child .section-content {
    padding: 0;
  }
  .sidebar:first-child .section-content img {
    border-radius: 0 0 8px 8px;
  }
  .recommended-section {
    margin-bottom: 15px;
  }
  .recommended-section.full-width {
    padding: 20px 0 25px;
    margin-bottom: 25px;
  }
  .recommended-section.full-width .container {
    padding: 0 12px;
  }
  .recommended-section.full-width .section-header {
    margin-bottom: 20px;
  }
  .recommended-section.full-width .section-header h2 {
    font-size: 20px;
  }
  .recommended-section.full-width .video-grid {
    gap: 12px;
  }
  .recommended-section .section-header {
    margin-bottom: 12px;
  }
  .recommended-section .section-header h2 {
    font-size: 18px;
  }
  .recommended-section .section-header .search-container .search-input {
    font-size: 13px;
    padding: 8px 0;
  }
  .recommended-section .section-header .search-container .search-btn {
    font-size: 11px;
    padding: 6px 10px;
  }
  .recommended-section .video-grid {
    gap: 8px;
  }
  .video-section {
    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 .hamburger-menu {
    min-width: 25px;
  }
  .header .hamburger-menu .hamburger-line {
    width: 15px;
  }
  .recommended-section .section-header .search-container .search-input {
    font-size: 12px;
    padding: 6px 0;
  }
  .recommended-section .section-header .search-container .search-input::placeholder {
    font-size: 11px;
  }
  .recommended-section .section-header .search-container .search-btn {
    font-size: 10px;
    padding: 5px 8px;
  }
}

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