@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
  list-style: none;
  outline: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2C1810;
  background-color: #FFF0F5;
  line-height: 1.6;
}

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

.header {
  background: linear-gradient(135deg, #FF6B9D, rgb(255, 183.5, 207.6554054054));
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgb(255, 209, 224.5405405405);
  backdrop-filter: blur(10px);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}
@media (max-width: 768px) {
  .header .container {
    height: 65px;
  }
}

.logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .logo img {
    height: 35px;
  }
}

.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.nav-link.active {
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.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: 40px auto 30px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-container ul li {
  cursor: pointer;
  min-width: 44px;
  height: 44px;
  background: #FFFFFF;
  text-align: center;
  color: #4A2E1A;
  border: 2px solid #FFB3D1;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.pagination-container ul li.active {
  background: #FF6B9D;
  color: #fff;
  border-color: #FF6B9D;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}
.pagination-container ul li a {
  width: 100%;
  height: 100%;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  border-radius: inherit;
}
.pagination-container ul li a.active {
  background: #FF6B9D;
  color: #fff;
  font-weight: 600;
}
.pagination-container ul li.page-options {
  min-width: 80px;
  font-weight: 500;
}
.pagination-container ul li.page-options a {
  padding: 0 16px;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 30px auto 20px;
  }
  .pagination-container ul {
    gap: 8px;
  }
  .pagination-container ul li {
    min-width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
  .pagination-container ul li.page-options {
    min-width: 70px;
  }
  .pagination-container ul li.page-options a {
    padding: 0 12px;
  }
}
@media (max-width: 480px) {
  .pagination-container ul {
    gap: 6px;
  }
  .pagination-container ul li {
    min-width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .pagination-container ul li.page-options {
    min-width: 60px;
  }
  .pagination-container ul li.page-options a {
    padding: 0 10px;
  }
}

.search-section {
  margin-bottom: 40px;
  text-align: center;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .search-section {
    padding-top: 20px;
  }
}

.search-container {
  max-width: 600px;
  margin: 0 auto;
}

.search-form {
  display: flex;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.search-form:focus-within {
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.15);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .search-form {
    margin: 0 20px;
    border-radius: 10px;
  }
}

.search-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  background: #FFFFFF;
  color: #2C1810;
  font-size: 1rem;
  border-radius: 8px 0 0 8px;
  transition: all 0.3s ease;
}
.search-input::placeholder {
  color: #4A2E1A;
  opacity: 0.7;
}
.search-input:focus {
  background: white;
  box-shadow: inset 0 0 0 2px rgba(255, 107, 157, 0.2);
}
@media (max-width: 768px) {
  .search-input {
    font-size: 0.95rem;
    padding: 15px 16px;
  }
}

.search-btn {
  padding: 15px 30px;
  background: linear-gradient(135deg, #FF6B9D, rgb(255, 132.5, 173.8851351351));
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0 8px 8px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}
.search-btn::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;
}
@media (max-width: 768px) {
  .search-btn {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}
.search-btn:hover {
  background: linear-gradient(135deg, rgb(255, 132.5, 173.8851351351), rgb(255, 183.5, 207.6554054054));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}
.search-btn:hover::before {
  left: 100%;
}
.search-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 107, 157, 0.3);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
}
.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}
.mobile-menu-btn span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.mobile-menu-btn.active {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FF6B9D, rgb(255, 158, 190.7702702703));
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
  transform: translateY(-100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  border-bottom: 2px solid rgb(255, 209, 224.5405405405);
  backdrop-filter: blur(15px);
}
@media (max-width: 768px) {
  .mobile-menu {
    top: 65px;
  }
}
.mobile-menu.active {
  transform: translateY(0);
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu-content {
  padding: 25px 20px;
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  margin-bottom: 5px;
}
.mobile-nav-link:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.mobile-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}
.mobile-nav-link.active {
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  border-left: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
}

.main {
  padding: 30px 0;
}
.main .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .main .container {
    grid-template-columns: 1fr;
    padding: 0 8px;
  }
}

.list-main .container,
.search-main .container {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .list-main .container,
  .search-main .container {
    padding: 0 8px;
  }
}

.banner-section {
  background: linear-gradient(135deg, #FF6B9D, #4ECDC4);
  color: #fff;
  padding: 60px 30px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 40px;
  border: 1px solid #FFB3D1;
}
@media (max-width: 768px) {
  .banner-section {
    padding: 40px 20px;
  }
}
.banner-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}
@media (max-width: 768px) {
  .banner-section h1 {
    font-size: 2rem;
  }
}
.banner-section p {
  font-size: 1.1rem;
  color: #fff;
}

.section {
  margin-bottom: 40px;
}

.list-header {
  margin-bottom: 30px;
  text-align: center;
}
.list-header .list-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF6B9D;
  position: relative;
  display: inline-block;
}
.list-header .list-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FF6B9D, #4ECDC4);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .list-header .list-title {
    font-size: 2rem;
  }
  .list-header .list-title::after {
    width: 50px;
    height: 2px;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.section-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #FF6B9D;
  position: relative;
}
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #FF6B9D;
  border-radius: 1px;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.4rem;
  }
  .section-header h2::after {
    width: 25px;
  }
}

.more-link {
  color: #FF6B9D;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border: 2px solid #FF6B9D;
  border-radius: 20px;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.more-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #FF6B9D;
  transition: left 0.3s ease;
  z-index: -1;
}
.more-link:hover {
  color: #fff;
  border-color: #FF6B9D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}
.more-link:hover::before {
  left: 0;
}
@media (max-width: 768px) {
  .more-link {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  justify-content: start;
}
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.featured-video {
  margin-bottom: 30px;
}
.featured-video .featured-video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}
.featured-video .featured-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 157, 0.25);
}
.featured-video .featured-video-card .featured-video-thumb {
  position: relative;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .featured-video .featured-video-card .featured-video-thumb {
    height: 250px;
  }
}
.featured-video .featured-video-card .featured-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.featured-video .featured-video-card .featured-video-thumb:hover img {
  transform: scale(1.05);
}
.featured-video .featured-video-card .featured-video-thumb .featured-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.featured-video .featured-video-card .featured-video-thumb .featured-video-overlay .play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #FF6B9D;
  transition: all 0.3s ease;
}
.featured-video .featured-video-card .featured-video-thumb .featured-video-overlay .play-button:hover {
  background: #fff;
  transform: scale(1.1);
}
.featured-video .featured-video-card .featured-video-thumb:hover .featured-video-overlay {
  opacity: 1;
}
.featured-video .featured-video-card .featured-video-thumb .featured-video-tags {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.featured-video .featured-video-card .featured-video-thumb .featured-video-tags .tag {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}
.featured-video .featured-video-card .featured-video-thumb .featured-video-tags .tag.hot {
  background: #FF6B9D;
  color: #fff;
}
.featured-video .featured-video-card .featured-video-thumb .featured-video-tags .tag.hd {
  background: #4ECDC4;
  color: #fff;
}
.featured-video .featured-video-card .featured-video-thumb .featured-video-tags .tag.duration {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.featured-video .featured-video-card .featured-video-info {
  padding: 25px;
}
@media (max-width: 768px) {
  .featured-video .featured-video-card .featured-video-info {
    padding: 20px;
  }
}
.featured-video .featured-video-card .featured-video-info .featured-video-desc {
  font-size: 1rem;
  color: #4A2E1A;
  line-height: 1.6;
  margin-bottom: 15px;
}
.featured-video .featured-video-card .featured-video-info .featured-video-meta {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .featured-video .featured-video-card .featured-video-info .featured-video-meta {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.featured-video .featured-video-card .featured-video-info .featured-video-meta span {
  font-size: 0.9rem;
  color: #6B4A2A;
}
.featured-video .featured-video-card .featured-video-info .featured-video-meta span.rating {
  color: #FFD700;
  font-weight: 600;
}
.featured-video .featured-video-card .featured-video-info .featured-video-meta span.year {
  background: rgba(255, 107, 157, 0.1);
  color: #FF6B9D;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.featured-video .featured-video-card .featured-video-info .featured-video-meta span.genre {
  background: rgba(78, 205, 196, 0.1);
  color: #4ECDC4;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.small-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .small-videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .small-videos-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.small-videos-grid .small-video-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.small-videos-grid .small-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}
.small-videos-grid .small-video-card .small-video-thumb {
  position: relative;
  height: 120px;
}
.small-videos-grid .small-video-card .small-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.small-videos-grid .small-video-card .small-video-thumb:hover img {
  transform: scale(1.05);
}
.small-videos-grid .small-video-card .small-video-thumb .small-video-tags {
  position: absolute;
  top: 8px;
  left: 8px;
}
.small-videos-grid .small-video-card .small-video-thumb .small-video-tags .tag {
  padding: 3px 8px;
  font-size: 0.7rem;
  border-radius: 12px;
  font-weight: 500;
}
.small-videos-grid .small-video-card .small-video-thumb .small-video-tags .tag.new {
  background: #4ECDC4;
  color: #fff;
}
.small-videos-grid .small-video-card .small-video-thumb .small-video-tags .tag.hd {
  background: #FF6B9D;
  color: #fff;
}
.small-videos-grid .small-video-card .small-video-info {
  padding: 12px;
}
.small-videos-grid .small-video-card .small-video-info .small-video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2C1810;
  margin-bottom: 6px;
  line-height: 1.3;
}
.small-videos-grid .small-video-card .small-video-info .small-video-desc {
  font-size: 0.8rem;
  color: #4A2E1A;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 1px solid #FFB3D1;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: #FF6B9D;
}

.video-thumb {
  position: relative;
}
.video-thumb img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.video-tags {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
}

.tag {
  padding: 3px 6px;
  font-size: 0.7rem;
  border-radius: 3px;
  color: #fff;
  font-weight: 500;
}
.tag.hot {
  background: #FF6B9D;
}
.tag.new {
  background: #4ECDC4;
}
.tag.hd {
  background: #FF8E9E;
}
.tag.duration {
  background: rgba(0, 0, 0, 0.6);
}

.video-info {
  padding: 12px;
}
@media (max-width: 768px) {
  .video-info {
    padding: 8px;
  }
}

.video-desc {
  font-size: 0.8rem;
  color: #4A2E1A;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.banner-ad {
  margin: 40px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .sidebar {
    margin-top: 30px;
  }
}

.sidebar-section {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFB3D1;
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FF6B9D;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 107, 157, 0.2);
  position: relative;
}
.sidebar-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #FF6B9D;
  border-radius: 1px;
}

.sidebar-videos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-video-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 107, 157, 0.1);
  position: relative;
  overflow: hidden;
}
.sidebar-video-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF6B9D, #4ECDC4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.sidebar-video-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 157, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.15);
}
.sidebar-video-item:hover::before {
  transform: scaleX(1);
}

.sidebar-video-thumb {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.sidebar-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.sidebar-video-thumb:hover img {
  transform: scale(1.05);
}

.sidebar-video-tag {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 2px 6px;
  font-size: 0.65rem;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}
.sidebar-video-tag.hot {
  background: #FF6B9D;
}
.sidebar-video-tag.new {
  background: #4ECDC4;
}
.sidebar-video-tag.hd {
  background: #FF8E9E;
}

.sidebar-video-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 2px 0;
}

.sidebar-video-desc {
  font-size: 0.85rem;
  color: #2C1810;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  margin: 0;
}

.promo-content {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: #2C1810;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #FFB3D1;
}
.promo-content h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #FF6B9D;
}
.promo-content p {
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: #4A2E1A;
}

.promo-btn {
  background: #FF6B9D;
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.promo-btn:hover {
  background: rgb(255, 158, 190.7702702703);
  transform: translateY(-1px);
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .breadcrumb {
    margin-bottom: 15px;
  }
}

.breadcrumb-link {
  color: #4A2E1A;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb-link:hover {
  color: #FF6B9D;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #4A2E1A;
}

.breadcrumb-current {
  color: #FF6B9D;
  font-weight: 500;
}

.list-header {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .list-header {
    margin-bottom: 20px;
  }
}

.list-title {
  font-size: 2rem;
  color: #2C1810;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .list-title {
    font-size: 1.5rem;
  }
}

.list-meta {
  color: #4A2E1A;
  font-size: 0.9rem;
}
.list-meta .count {
  color: #FF6B9D;
  font-weight: 600;
}

.filter-section {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #FFB3D1;
}
@media (max-width: 768px) {
  .filter-section {
    padding: 15px;
    margin-bottom: 20px;
  }
}

.filter-group,
.sort-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-group:last-child,
.sort-group:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .filter-group,
  .sort-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.filter-label {
  color: #2C1810;
  font-weight: 500;
  font-size: 0.9rem;
  min-width: 60px;
}
@media (max-width: 768px) {
  .filter-label {
    margin-bottom: 5px;
  }
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 6px 12px;
  border: 1px solid #FFB3D1;
  background: transparent;
  color: #4A2E1A;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover {
  border-color: #FF6B9D;
  color: #FF6B9D;
}
.filter-btn.active {
  background: #FF6B9D;
  border-color: #FF6B9D;
  color: #000;
  font-weight: 500;
}

.sort-select {
  padding: 6px 12px;
  border: 1px solid #FFB3D1;
  background: #FFFFFF;
  color: #2C1810;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
}
.sort-select:focus {
  border-color: #FF6B9D;
}
.sort-select option {
  background: #FFFFFF;
  color: #2C1810;
}

.video-list {
  margin-bottom: 40px;
}

.footer {
  background: linear-gradient(135deg, #FF6B9D, rgb(255, 158, 190.7702702703));
  color: #fff;
  padding: 50px 0 30px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fff, #4ECDC4, #fff);
}


.footer-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-nav {
    gap: 25px;
  }
}
@media (max-width: 480px) {
  .footer-nav {
    gap: 20px;
  }
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 16px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}
.footer-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  transition: left 0.3s ease;
  z-index: -1;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fff, #4ECDC4);
  transition: width 0.3s ease;
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
.footer-nav a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}
.footer-nav a:hover::before {
  left: 0;
}
.footer-nav a:hover::after {
  width: 70%;
}
.footer-nav a:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.15);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
}
.footer-copyright p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 400;
}
.footer-copyright p.footer-notice {
  font-size: 0.8rem;
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.8);
}

.video-player-section {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .video-player-section {
    margin-bottom: 20px;
  }
}

.video-player-container {
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #FFB3D1;
}

.video-player {
  position: relative;
  width: 100%;
  min-height: 250px;
}
@media (min-width: 768px) {
  .video-player {
    min-height: 400px;
  }
}
.video-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}
.play-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.play-btn {
  width: 80px;
  height: 80px;
  border: 3px solid #FF6B9D;
  border-radius: 50%;
  background: rgba(255, 107, 157, 0.2);
  color: #FF6B9D;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}
@media (max-width: 768px) {
  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
.play-btn:hover {
  background: rgba(255, 107, 157, 0.3);
  border-color: rgb(255, 158, 190.7702702703);
  transform: scale(1.1);
}

.play-icon {
  margin-left: 3px;
}

.detail-main .container {
  display: block;
}

.detail-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.detail-content .video-info {
  padding: 25px 30px;
  margin-bottom: 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 250, 0.95));
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .detail-content .video-info {
    padding: 20px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
  }
}
.detail-content .video-info .video-title {
  font-size: 2rem;
  color: #FF6B9D;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
}
.detail-content .video-info .video-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #FF6B9D;
  border-radius: 1px;
}
@media (max-width: 768px) {
  .detail-content .video-info .video-title {
    font-size: 1.6rem;
  }
  .detail-content .video-info .video-title::after {
    width: 30px;
  }
}
.detail-content .video-info .video-tags {
  margin-bottom: 15px;
  position: static;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.detail-content .video-info .video-tags .tag {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.detail-content .video-info .video-tags .tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.detail-content .video-info .video-tags .tag.hot {
  background: linear-gradient(135deg, #FF6B9D, rgb(255, 158, 190.7702702703));
}
.detail-content .video-info .video-tags .tag.hd {
  background: linear-gradient(135deg, #4ECDC4, rgb(117.7665198238, 216.2334801762, 209.2555066079));
}
.detail-content .video-info .video-tags .tag.duration {
  background: linear-gradient(135deg, #6c757d, #495057);
}
@media (max-width: 768px) {
  .detail-content .video-info .video-tags {
    gap: 8px;
    margin-bottom: 12px;
  }
  .detail-content .video-info .video-tags .tag {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}
.detail-content .video-info .video-description {
  color: #4A2E1A;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  position: relative;
  padding-left: 15px;
}
.detail-content .video-info .video-description::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: calc(100% - 16px);
  background: linear-gradient(180deg, #FF6B9D, #4ECDC4);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .detail-content .video-info .video-description {
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 12px;
  }
  .detail-content .video-info .video-description::before {
    width: 3px;
    top: 6px;
    height: calc(100% - 12px);
  }
}

.horizontal-ad {
  margin: 10px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .horizontal-ad {
    margin: 25px 0;
  }
}

.related-section {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .related-section {
    margin-top: 25px;
  }
}
.related-section .video-info {
  padding: 8px 12px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .related-section .video-info {
    padding: 6px 8px;
    margin-bottom: 0;
  }
}
.related-section .video-desc {
  font-size: 0.75rem;
  color: #4A2E1A;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}
@media (max-width: 768px) {
  .related-section .video-desc {
    font-size: 0.72rem;
    line-height: 1.25;
  }
}

.search-header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.search-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #FF6B9D, #4ECDC4);
  border-radius: 0 2px 2px 0;
}
@media (max-width: 768px) {
  .search-header {
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
  }
}

.search-title {
  font-size: 1.8rem;
  color: #2C1810;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
}
.search-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #FF6B9D, #4ECDC4);
  border-radius: 1px;
}
@media (max-width: 768px) {
  .search-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .search-title::after {
    width: 30px;
    bottom: -3px;
  }
}

.search-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .search-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.search-keyword {
  color: #4A2E1A;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-keyword::before {
  content: "🔍";
  font-size: 0.9rem;
}
.search-keyword em {
  color: #FF6B9D;
  font-style: normal;
  font-weight: 600;
  background: rgba(255, 107, 157, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}
@media (max-width: 768px) {
  .search-keyword {
    font-size: 0.9rem;
  }
}

.search-count {
  color: #4A2E1A;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-count::before {
  content: "📊";
  font-size: 0.9rem;
}
.search-count .count {
  color: #FF6B9D;
  font-weight: 600;
  background: rgba(255, 107, 157, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .search-count {
    font-size: 0.9rem;
  }
}

.search-results {
  margin-bottom: 40px;
}

.hot-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-tag {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid #FFB3D1;
  color: #4A2E1A;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
}
.keyword-tag:hover {
  border-color: #FF6B9D;
  color: #FF6B9D;
  background: rgba(255, 107, 157, 0.1);
}

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