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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  background: #fef7f7;
  color: #2d1b3d;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 168, 204, 0.15) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(254, 207, 239, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1.5px solid rgba(255, 107, 157, 0.18);
  box-shadow: 0 6px 24px 0 rgba(255, 107, 157, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 70px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}
.header .header-left {
  display: flex;
  align-items: center;
  gap: 0;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 24px;
}
.header .logo img {
  height: 44px;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.12));
  transition: all 0.3s;
}
.header .logo a, .header .logo span {
  font-size: 22px;
  font-weight: bold;
  color: #ff6b9d;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(255, 107, 157, 0.08);
}
.header .nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: 24px;
}
.header .nav ul li a {
  color: #6b5b73;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 22px;
  position: relative;
  background: transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 1px;
}
.header .nav ul li a:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  box-shadow: 0 4px 16px 0 rgba(255, 107, 157, 0.18);
  transform: translateY(-2px) scale(1.06);
}
.header .nav ul li a.active {
  color: #fff;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  box-shadow: 0 6px 24px 0 rgba(255, 107, 157, 0.22);
  font-weight: 700;
  transform: scale(1.08);
}
.header .menu-toggle {
  display: none;
  width: 28px;
  height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 100;
}
.header .menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  transition: all 0.3s ease-out;
  left: 0;
  border-radius: 2px;
}
.header .menu-toggle span:nth-child(1) {
  top: 0;
}
.header .menu-toggle span:nth-child(2) {
  top: 8px;
}
.header .menu-toggle span:nth-child(3) {
  top: 16px;
}
.header .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.header .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo {
  margin-right: 0;
}

.nav {
  margin-left: auto;
}

.header-search {
  flex: 1;
  max-width: 420px;
  margin: 0 0 0 40px;
}
.header-search .search-box {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.header-search .search-box .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b9d;
  font-size: 20px;
  pointer-events: none;
  opacity: 0.7;
}
.header-search .search-box input {
  flex: 1;
  width: 100%;
  height: 42px;
  padding: 0 90px 0 44px;
  border: 1.5px solid #ffa8cc;
  border-radius: 22px 0 0 22px;
  font-size: 15px;
  background: #fff0f3;
  color: #2d1b3d;
  transition: all 0.3s;
}
.header-search .search-box input:focus {
  outline: none;
  border-color: #ff6b9d;
  background: #fff;
  box-shadow: 0 2px 10px rgba(255, 107, 157, 0.08);
}
.header-search .search-box input::placeholder {
  color: #ffa8cc;
}
.header-search .search-box .search-btn {
  height: 42px;
  padding: 0 26px;
  border: none;
  border-radius: 0 22px 22px 0;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: -2px;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.08);
}
.header-search .search-box .search-btn:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffb6c1 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 157, 0.18);
}

@media (max-width: 768px) {
  .header {
    height: 60px;
  }
  .header .container {
    gap: 15px;
  }
  .header .header-left {
    gap: 20px;
  }
  .header .logo {
    padding-right: 10px;
  }
  .header .logo img {
    height: 32px;
  }
  .header .logo a, .header .logo span {
    font-size: 16px;
  }
  .header .nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 107, 157, 0.15);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.1);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 0;
    z-index: 999;
    overflow-y: auto;
  }
  .header .nav.active {
    left: 0;
  }
  .header .nav ul {
    flex-direction: column;
    padding: 20px 0;
    margin: 0;
    gap: 0;
    height: 100%;
  }
  .header .nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.08);
  }
  .header .nav ul li:last-child {
    border-bottom: none;
  }
  .header .nav ul li a {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #6b5b73;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
  }
  .header .nav ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .header .nav ul li a:hover, .header .nav ul li a.active {
    background: rgba(255, 107, 157, 0.05);
    color: #ff6b9d;
    padding-left: 35px;
  }
  .header .nav ul li a:hover::before, .header .nav ul li a.active::before {
    transform: scaleY(1);
  }
  .header .nav ul li a.active {
    background: rgba(255, 107, 157, 0.1);
    color: #ff6b9d;
    font-weight: 600;
  }
  .header .header-search {
    max-width: none;
  }
  .header .header-search .search-box input {
    height: 36px;
    font-size: 13px;
  }
  .header .menu-toggle {
    display: block;
    z-index: 1000;
  }
}
.main-container {
  margin-top: 70px;
  padding: 30px 0;
  min-height: calc(100vh - 70px);
  background: #fef7f7;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .main-container {
    margin-top: 56px;
    min-height: calc(100vh - 56px);
    padding: 20px 0;
  }
}

.video-section {
  margin-top: 20px;
}
.video-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.video-section .section-header h2 {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-left: 20px;
}
.video-section .section-header h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 28px;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(255, 107, 157, 0.3);
}
.video-section .section-header .more {
  color: #6b5b73;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
}
.video-section .section-header .more i {
  font-size: 12px;
  transition: all 0.3s ease;
}
.video-section .section-header .more:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}
.video-section .section-header .more:hover i {
  transform: translateX(3px);
}
.video-section .video-layout {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
  grid-template-columns: 1fr;
}
.video-section .video-layout .main-video {
  margin-bottom: 15px;
  width: 100%;
}
.video-section .video-layout .main-video .video-card .video-thumb {
  padding-top: 40%;
}
@media (max-width: 768px) {
  .video-section .video-layout .main-video .video-card .video-thumb {
    padding-top: 56.25%;
  }
}
.video-section .video-layout .main-video .video-card .video-info {
  width: 100%;
}
.video-section .video-layout .main-video .video-card .video-info h3 {
  width: 100%;
  display: block;
  max-width: 100%;
}
.video-section .video-layout .side-videos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
}
@media (max-width: 768px) {
  .video-section .video-layout .side-videos-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.video-section .video-list {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .video-section .video-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .video-section .video-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.video-section .video-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .video-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.video-section .video-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 157, 0.1);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.08);
}
.video-section .video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.15);
  border-color: rgba(255, 107, 157, 0.3);
}
.video-section .video-card:hover .video-thumb::after {
  opacity: 1;
}
.video-section .video-card:hover .video-tag {
  transform: scale(1.05);
}
.video-section .video-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.video-section .video-card .video-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 157, 0.1) 0%, rgba(254, 207, 239, 0.1) 100%);
  opacity: 0;
  transition: all 0.3s ease;
}
.video-section .video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.video-section .video-card .video-thumb .video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(45, 27, 61, 0.9);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.video-section .video-card .video-thumb .video-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
  transition: all 0.3s ease;
}
.video-section .video-card .video-info {
  padding: 16px;
  width: 100%;
}
.video-section .video-card .video-info h3 {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #2d1b3d;
  line-height: 1.4;
  width: 100%;
  display: block;
  max-width: 100%;
  transition: all 0.3s ease;
}
.video-section .video-card .video-info h3:hover {
  color: #ff6b9d;
}

.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: #ff6b9d;
  font-weight: 600;
  color: white;
  border-color: #ff6b9d;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-align: center;
  color: #666;
  border: 1px solid #eee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.pagination-container ul li:hover:not(.active) {
  background-color: rgba(255, 107, 157, 0.05);
  border-color: #ff6b9d;
  color: #ff6b9d;
  transform: translateY(-1px);
}
.pagination-container ul li.active {
  background: #ff6b9d;
  font-weight: 600;
  color: white;
  border-color: #ff6b9d;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: inherit;
}
.pagination-container ul li a.active {
  background: #ff6b9d;
  font-weight: 600;
  color: white;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}
.pagination-container ul li:disabled, .pagination-container ul li.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #999;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background-color: #fff;
  border-color: #eee;
  color: #999;
  transform: none;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 20px auto 15px;
  }
  .pagination-container ul {
    gap: 8px;
  }
  .pagination-container ul li {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .pagination-container ul li a {
    width: 36px;
    height: 36px;
  }
  .pagination-container ul li.page-options {
    width: 60px;
  }
  .pagination-container ul li.page-options a {
    width: 60px;
  }
}

.footer {
  padding: 50px 0 30px;
  background: #ffffff;
  border-top: 1px solid rgba(255, 107, 157, 0.2);
  color: #6b5b73;
  font-size: 14px;
  margin-top: 60px;
}
.footer .friend-links {
  margin-bottom: 32px;
  text-align: center;
  padding: 18px 0 0 0;
  background: none;
}
.footer .friend-links .links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}
.footer .friend-links .links a {
  color: #ff6b9d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  background: #fff0f3;
  border-radius: 18px;
  padding: 8px 22px;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.06);
  border: 1.5px solid #ffa8cc;
  transition: all 0.2s;
  position: relative;
  display: inline-block;
}
.footer .friend-links .links a:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 157, 0.13);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 768px) {
  .footer .friend-links .links {
    gap: 10px 10px;
    padding: 0 2px;
  }
  .footer .friend-links .links a {
    font-size: 13px;
    padding: 7px 12px;
  }
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 107, 157, 0.15);
  color: rgba(107, 91, 115, 0.8);
}

.menu-toggle {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1000;
  padding: 2px;
}
.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  left: 0;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(255, 107, 157, 0.3);
}
.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 8px;
}
.menu-toggle span:nth-child(3) {
  top: 16px;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
  background: linear-gradient(135deg, #f5576c 0%, #ff6b9d 100%);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
  background: linear-gradient(135deg, #f5576c 0%, #ff6b9d 100%);
}
.menu-toggle:hover span {
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.4);
}

@media (max-width: 768px) {
  .nav.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    backdrop-filter: blur(2px);
  }
}
@media (max-width: 768px) {
  .header {
    height: 56px;
  }
  .header .container {
    gap: 12px;
  }
  .header .header-left {
    gap: 15px;
  }
  .header .nav {
    position: fixed;
    top: 56px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 56px);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    margin: 0;
    padding: 0;
    z-index: 999;
  }
  .header .nav.active {
    left: 0;
  }
  .header .nav ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
    gap: 0;
  }
  .header .nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .header .nav ul li:last-child {
    border-bottom: none;
  }
  .header .nav ul li a {
    display: block;
    padding: 15px 20px;
    font-size: 15px;
  }
  .header .header-search {
    max-width: none;
  }
  .header .header-search .search-box input {
    height: 36px;
    font-size: 13px;
  }
  .menu-toggle {
    display: block;
    z-index: 1000;
  }
  .video-section .section-header h2 {
    font-size: 20px;
  }
  .video-section .video-card .video-info h3 {
    font-size: 14px;
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header-scrolled {
  animation: slideDown 0.3s ease-out forwards;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.video-list-container {
  margin-top: 10px;
}
.video-list-container .list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 2px;
}
.video-list-container .list-header .section-title {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-left: 16px;
  margin: 0;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-list-container .list-header .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(255, 107, 157, 0.13);
}
.video-list-container .list-header .more {
  color: #ff6b9d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 18px 6px 12px;
  border-radius: 16px;
  background: #fff0f3;
  border: 1.2px solid #ffa8cc;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.04);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.video-list-container .list-header .more i {
  font-size: 14px;
  margin-left: 2px;
  transition: transform 0.2s;
}
.video-list-container .list-header .more:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 157, 0.13);
}
.video-list-container .list-header .more:hover i {
  transform: translateX(3px);
  color: #fff;
}
@media (max-width: 768px) {
  .video-list-container .list-header {
    flex-direction: row;
    align-items: center;
  }
  .video-list-container .list-header .section-title {
    font-size: 16px;
    padding-left: 10px;
  }
  .video-list-container .list-header .more {
    font-size: 12px;
    padding: 5px 10px 5px 8px;
    border-radius: 12px;
  }
}
.video-list-container .video-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .video-list-container .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .video-list-container .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.video-list-container .video-item .video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.video-list-container .video-item .video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.video-list-container .video-item .video-card:hover .video-overlay {
  opacity: 1;
}
.video-list-container .video-item .video-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.video-list-container .video-item .video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-list-container .video-item .video-card .video-thumb .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  backdrop-filter: blur(4px);
}
.video-list-container .video-item .video-card .video-thumb .video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6b9d;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}
.video-list-container .video-item .video-card .video-thumb .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: all 0.3s;
}
.video-list-container .video-item .video-card .video-thumb .video-overlay i {
  font-size: 48px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.video-list-container .video-item .video-card .video-info {
  padding: 15px;
}
.video-list-container .video-item .video-card .video-info h3 {
  font-size: 14px;
  font-weight: 500;
  color: #2d1b3d;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.video-list-container .video-item .video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  color: #999;
  font-size: 12px;
}

.no-result {
  grid-column: 1/-1;
  padding: 60px 0;
  text-align: center;
}
.no-result .no-result-content i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 20px;
}
.no-result .no-result-content p {
  margin: 0;
  color: #666;
  font-size: 16px;
}
.no-result .no-result-content p.sub-text {
  color: #999;
  font-size: 14px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .no-result {
    padding: 40px 0;
  }
  .no-result .no-result-content i {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .no-result .no-result-content p {
    font-size: 15px;
  }
  .no-result .no-result-content p.sub-text {
    font-size: 13px;
  }
}

.nav ul li a.active {
  color: #ff6b9d;
  font-weight: 500;
}

.video-player-section {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.video-player-section .player-wrapper {
  background: #000;
}
.video-player-section .video-info {
  padding: 28px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 157, 0.1);
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.08);
  margin-top: 16px;
}
.video-player-section .video-info .video-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d1b3d;
  margin: 0 0 18px;
  line-height: 1.4;
}
.video-player-section .video-info .video-meta {
  margin-bottom: 20px;
}
.video-player-section .video-info .video-meta .meta-info {
  display: flex;
  gap: 20px;
  color: #6b5b73;
  font-size: 14px;
  flex-wrap: wrap;
}
.video-player-section .video-info .video-meta .meta-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff0f3;
  border-radius: 18px;
  border: 1px solid #ffa8cc;
  font-weight: 500;
  transition: all 0.2s;
}
.video-player-section .video-info .video-meta .meta-info span i {
  color: #ff6b9d;
  font-size: 16px;
}
.video-player-section .video-info .video-meta .meta-info span:hover {
  background: rgba(255, 107, 157, 0.1);
  transform: translateY(-1px);
}
.video-player-section .video-info .video-desc {
  color: #6b5b73;
  font-size: 15px;
  line-height: 1.7;
}
.video-player-section .video-info .video-desc p {
  margin: 0;
  padding: 16px 0;
  border-left: 3px solid #ffa8cc;
  padding-left: 16px;
  background: rgba(255, 107, 157, 0.02);
  border-radius: 0 8px 8px 0;
}
@media (max-width: 768px) {
  .video-player-section {
    margin-bottom: 20px;
  }
  .video-player-section .video-info {
    padding: 18px;
    margin-top: 12px;
  }
  .video-player-section .video-info .video-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .video-player-section .video-info .video-meta {
    margin-bottom: 16px;
  }
  .video-player-section .video-info .video-meta .meta-info {
    gap: 12px;
    font-size: 13px;
  }
  .video-player-section .video-info .video-meta .meta-info span {
    padding: 5px 10px;
  }
  .video-player-section .video-info .video-meta .meta-info span i {
    font-size: 14px;
  }
  .video-player-section .video-info .video-desc {
    font-size: 14px;
  }
  .video-player-section .video-info .video-desc p {
    padding: 12px 0;
    padding-left: 12px;
  }
}

.related-section {
  margin-bottom: 40px;
  margin-top: 20px;
}
.related-section .section-header {
  margin-bottom: 20px;
}
.related-section .section-header .section-title {
  font-size: 24px;
  color: #2d1b3d;
  position: relative;
  padding-left: 15px;
  margin: 0;
}
.related-section .section-header .section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #ff6b9d;
  border-radius: 2px;
}
.related-section .video-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
}
.related-section .video-grid .video-item .video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.related-section .video-grid .video-item .video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.related-section .video-grid .video-item .video-card:hover .video-overlay {
  opacity: 1;
}
.related-section .video-grid .video-item .video-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.related-section .video-grid .video-item .video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-section .video-grid .video-item .video-card .video-thumb .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  backdrop-filter: blur(4px);
}
.related-section .video-grid .video-item .video-card .video-thumb .video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6b9d;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}
.related-section .video-grid .video-item .video-card .video-thumb .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: all 0.3s;
}
.related-section .video-grid .video-item .video-card .video-thumb .video-overlay i {
  font-size: 48px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.related-section .video-grid .video-item .video-card .video-info {
  padding: 15px;
}
.related-section .video-grid .video-item .video-card .video-info h3 {
  font-size: 14px;
  font-weight: 500;
  color: #2d1b3d;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.related-section .video-grid .video-item .video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  color: #999;
  font-size: 12px;
}
@media (max-width: 1024px) {
  .related-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .related-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .related-section .video-grid .video-item .video-card .video-thumb .video-duration {
    padding: 3px 6px;
    font-size: 11px;
  }
  .related-section .video-grid .video-item .video-card .video-thumb .video-tag {
    padding: 3px 8px;
    font-size: 11px;
  }
  .related-section .video-grid .video-item .video-card .video-thumb .video-overlay i {
    font-size: 36px;
  }
  .related-section .video-grid .video-item .video-card .video-info {
    padding: 10px;
  }
  .related-section .video-grid .video-item .video-card .video-info h3 {
    font-size: 13px;
  }
  .related-section .video-grid .video-item .video-card .video-info .video-meta {
    font-size: 11px;
    margin-top: 6px;
  }
}
@media (max-width: 768px) {
  .related-section {
    margin-bottom: 30px;
  }
  .related-section .section-header {
    margin-bottom: 15px;
  }
  .related-section .section-header .section-title {
    font-size: 20px;
  }
  .related-section .section-header .section-title:before {
    height: 20px;
  }
}

.plyr--video {
  border-radius: 0;
  --plyr-color-main: #ff6b9d;
}

.video-section .video-layout {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
}

.video-section .video-layout .main-video,
.video-section .video-layout .side-videos-container {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.video-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.video-section .section-header h2 {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-left: 18px;
  margin: 0;
  letter-spacing: 1px;
}
.video-section .section-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(255, 107, 157, 0.18);
}
.video-section .section-header .more {
  color: #ff6b9d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px 8px 18px;
  border-radius: 20px;
  background: #fff0f3;
  border: 1.5px solid #ffa8cc;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.06);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.video-section .section-header .more i {
  font-size: 16px;
  margin-left: 2px;
  transition: transform 0.2s;
}
.video-section .section-header .more:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 157, 0.18);
}
.video-section .section-header .more:hover i {
  transform: translateX(4px);
  color: #fff;
}

@media (max-width: 768px) {
  .video-section .section-header {
    flex-direction: row !important;
    align-items: center !important;
  }
  .video-section .section-header h2 {
    margin-bottom: 0;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 45%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .video-section .section-header .header-search {
    margin: 0 0 0 12px;
    max-width: 100%;
    flex: 1 1 0%;
    min-width: 0;
  }
}
.header .header-search {
  display: none !important;
}

.video-section .section-header .header-search {
  display: block !important;
}

.friend-links .links a {
  font-size: 13px;
  padding: 6px 14px;
}

.friend-links .links a i {
  font-size: 15px;
  margin-right: 6px;
}

.search-info {
  color: #6b5b73;
  font-size: 14px;
  margin-bottom: 20px;
  padding: 0 2px;
}
.search-info .keyword {
  color: #ff6b9d;
  font-weight: 600;
  margin: 0 5px;
  padding: 2px 10px;
  background: rgba(255, 107, 157, 0.1);
  border-radius: 12px;
  border: 1px solid #ffa8cc;
  display: inline-block;
}
.search-info .result-count {
  color: #ff6b9d;
  font-weight: 500;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .search-info {
    font-size: 13px;
    margin-bottom: 16px;
    padding: 0;
  }
  .search-info .keyword {
    padding: 1px 8px;
    font-size: 12px;
  }
}

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