@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: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 65px;
}
@media (min-width: 769px) {
  .header-container {
    flex-direction: row;
    height: 65px;
  }
}

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

.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: #00bcd4;
}

.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: #00bcd4;
}

.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: #00bcd4;
}
.mobile-nav .mobile-nav-item.active a {
  color: #212121;
  background: #00bcd4;
  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: rgb(0, 142.7735849057, 161);
  color: #212121;
}

body.sidebar-open {
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.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: #212121;
  background: #00bcd4;
}

.search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  width: 240px;
}

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

.search-box input::placeholder {
  color: #757575;
}

.search-box input:focus {
  outline: none;
}

.video-carousel {
  max-width: 1440px;
  margin: 2rem auto;
  
}

.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: #00bcd4;
}

.video-carousel-item .video-thumb {
  position: relative;
  aspect-ratio: 4/3;
  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 {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

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

@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-5-columns {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.search-section {
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 188, 212, 0.05) 100%);
  padding: 3rem 0;
  margin: 2rem 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

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

.search-title {
  color: #212121;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00bcd4, #4dd0e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.search-subtitle {
  color: #424242;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.search-form {
  margin-bottom: 1.5rem;
}

.search-input-wrapper {
  display: flex;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.search-input-wrapper:focus-within {
  border-color: #00bcd4;
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

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

.search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00bcd4 0%, #00838f 100%);
  color: #212121;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-btn:hover {
  background: linear-gradient(135deg, #00838f 0%, rgb(0, 84.2797202797, 92) 100%);
  transform: translateX(-2px);
}
.search-btn .search-icon {
  font-size: 1.1rem;
}

.search-suggestions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.suggestion-label {
  color: #424242;
  font-weight: 600;
  font-size: 0.9rem;
}

.suggestion-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.suggestion-tag {
  color: #424242;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.suggestion-tag:hover {
  color: #212121;
  background: #00bcd4;
  border-color: #00bcd4;
  transform: translateY(-1px);
}

.banner-ad {
  max-width: 1440px;
  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: 1440px;
  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;
  margin-top:10px;
  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: #00bcd4;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #00bcd4;
  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, #00bcd4 0%, #00838f 100%);
  border-color: #00838f;
  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(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.video-grid-large {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.video-grid-large .video-card .video-info h3 {
  font-size: 0.9rem;

}
.video-grid-large .video-card .duration {
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
}
.video-grid-large .video-card .hot-badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
}

.video-grid-5-columns {
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.video-grid-5-columns .video-card .video-info h3 {
  font-size: 0.75rem;
  line-height: 1.3;
}

.video-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-2px);
  border-color: #4dd0e1;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.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 {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.hot-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #212121;
  color: #f5f5f5;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.video-info {
  padding: 0.5rem;
}

.video-info h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #212121;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}

.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: #00bcd4;
  border-color: #00bcd4;
  color: #212121;
}

.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: #00bcd4;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #999;
  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: #00bcd4;
  font-weight: 600;
  color: #fff;
}
.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;
  }
}

.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: #00bcd4;
  border-color: #00bcd4;
  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%;
  border-radius: 8px;
  background: black;
}

.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, #00bcd4);
  -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: #00bcd4;
  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: #00bcd4;
  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: #00bcd4;
  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 #00bcd4;
  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, #00bcd4 0%, #00838f 100%);
  color: #212121;
}
.action-btn.primary:hover {
  background: linear-gradient(135deg, #00838f 0%, rgb(0, 84.2797202797, 92) 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: #00bcd4;
  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: #00bcd4;
  color: #212121;
}

.action-btn.primary:hover {
  background: #00838f;
}

.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;
  margin-top: 4rem;
}

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

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

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

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.footer-link {
  color: #424242;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-link:hover {
  color: #212121;
  background: #f5f5f5;
  border-color: #e0e0e0;
}

.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: row;
    flex-wrap: nowrap;
    height: auto;
    padding: 0.5rem 0.5rem;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    flex-shrink: 0;
    order: 0;
  }
  .header-top {
    flex-shrink: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    order: 1;
    gap: 0.5rem;
    min-width: 0;
  }
  .nav-mobile {
    width: 100%;
    order: 2;
    margin-top: 0.5rem;
  }
  .nav-desktop {
    display: none !important;
  }
  .hamburger-menu {
    display: flex !important;
  }
  .nav-item {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  .search-box {
    width: 260px;
    flex-shrink: 1;
    max-width: 70%;
  }
  .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 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .video-grid-large {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .video-grid-5-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .video-grid-5-columns .video-card .video-info h3 {
    font-size: 0.8rem;
  }
  .more-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 20px;
  }
  .more-link::after {
    font-size: 0.9rem;
  }
  .search-section {
    padding: 2rem 0;
    margin: 1rem 0;
  }
  .search-container {
    padding: 0 1rem;
  }
  .search-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .search-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .search-input-wrapper {
    flex-direction: row;
    border-radius: 25px;
    max-width: 100%;
  }
  .search-input {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    flex: 1;
    min-width: 0;
  }
  .search-btn {
    padding: 0.8rem 1rem;
    border-radius: 0 25px 25px 0;
    flex-shrink: 0;
  }
  .search-btn .search-text {
    display: none;
  }
  .search-suggestions {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }
  .suggestion-tags {
    justify-content: center;
  }
  .suggestion-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
  .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-title {
    font-size: 1.8rem !important;
  }
  .video-subtitle {
    font-size: 1rem;
  }
  .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 h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  .footer-link {
    padding: 0.3rem 0.5rem;
    font-size: 0.8rem;
  }
  .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 */
