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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
  color: #2c3e50;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0.03;
  pointer-events: none;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 1;
}
.header .header-left {
  display: flex;
  align-items: center;
  gap: 48px;
  flex: 1;
}
.header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header .logo img {
  height: 44px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.2));
}
.header .logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
}
.header .nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
}
.header .nav ul li a {
  color: #5a6c7d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 30px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.header .nav ul li a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
  border-color: transparent;
}
.header .nav ul li a.active {
  color: #ffffff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
  border-color: transparent;
}
.header .nav ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.header .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .header-right .nav-button {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a6c7d;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.header .header-right .nav-button:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
  border-color: transparent;
}
.header .header-right .nav-button.search-btn {
  display: none;
}
@media (max-width: 768px) {
  .header .header-right .nav-button.search-btn {
    display: flex;
  }
}
.header .header-right .user-menu .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}
.header .header-right .user-menu .avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.main-container {
  margin-top: 80px;
  padding: 40px 0;
  position: relative;
}
@media (max-width: 768px) {
  .main-container {
    margin-top: 70px;
    padding: 24px 0;
  }
}

.page-search {
  margin-bottom: 40px;
}
.page-search .search-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.page-search .search-container .search-box {
  position: relative;
  width: 100%;
}
.page-search .search-container .search-box .search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #95a5b3;
  font-size: 20px;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 2;
}
.page-search .search-container .search-box input {
  width: 100%;
  height: 64px;
  padding: 0 140px 0 64px;
  border: 2px solid transparent;
  border-radius: 32px;
  font-size: 16px;
  background: #ffffff;
  color: #2c3e50;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-search .search-container .search-box input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}
.page-search .search-container .search-box input:focus + .search-icon {
  color: #667eea;
  transform: translateY(-50%) scale(1.1);
}
.page-search .search-container .search-box input::placeholder {
  color: #95a5b3;
  font-weight: 400;
}
.page-search .search-container .search-box .search-button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  padding: 0 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}
.page-search .search-container .search-box .search-button:hover {
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.page-search .search-container .search-box .search-button:active {
  transform: translateY(-50%) translateY(0px);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}
.page-search .search-container .search-box .search-button i {
  font-size: 16px;
}
@media (max-width: 480px) {
  .page-search .search-container .search-box .search-button span {
    display: none;
  }
}
@media (max-width: 480px) {
  .page-search .search-container .search-box .search-button {
    padding: 0 16px;
    width: 48px;
    height: 48px;
    border-radius: 24px;
  }
}
.page-search .search-container .search-box .search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 10;
  display: none;
}
.page-search .search-container .search-box .search-suggestions.show {
  display: block;
}
@media (max-width: 768px) {
  .page-search {
    margin-bottom: 32px;
  }
  .page-search .search-container .search-box input {
    height: 56px;
    font-size: 15px;
    padding: 0 24px 0 56px;
  }
  .page-search .search-container .search-box .search-icon {
    left: 20px;
    font-size: 18px;
  }
}

.banner-ad {
  margin-bottom: 50px;
  position: relative;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.video-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.video-section .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.video-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .video-section .section-header h2 {
    font-size: 28px;
  }
}
.video-section .section-header .more {
  color: #5a6c7d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(102, 126, 234, 0.1);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-section .section-header .more i {
  font-size: 12px;
  transition: all 0.3s;
}
.video-section .section-header .more:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}
.video-section .section-header .more:hover i {
  transform: translateX(4px);
}
.video-section .video-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr;
  align-items: stretch;
  margin-bottom: 50px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .video-section .video-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .video-section .video-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: flex-start;
    gap: 16px;
  }
}
.video-section .video-layout .main-video {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.video-section .video-layout .main-video .video-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  width: 100%;
  max-width: 100%;
}
.video-section .video-layout .main-video .video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  pointer-events: none;
}
.video-section .video-layout .main-video .video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
}
.video-section .video-layout .main-video .video-card:hover::before {
  opacity: 0.05;
}
.video-section .video-layout .main-video .video-card .video-thumb {
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}
.video-section .video-layout .main-video .video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-section .video-layout .main-video .video-card .video-thumb:hover img {
  transform: scale(1.1);
}
.video-section .video-layout .main-video .video-card .video-info {
  padding: 32px;
  position: relative;
  z-index: 2;
}
.video-section .video-layout .main-video .video-card .video-info h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #2c3e50;
  margin-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.video-section .video-layout .main-video .video-card .video-info .video-date {
  color: #95a5b3;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.video-section .video-layout .main-video .video-card .video-info .video-date::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #4facfe;
  border-radius: 50%;
  display: inline-block;
}
.video-section .video-layout .main-video .video-card .video-info .video-meta {
  display: flex;
  gap: 16px;
  color: #95a5b3;
  font-size: 14px;
  font-weight: 500;
}
.video-section .video-layout .main-video .video-card .video-info .video-meta span {
  background: rgba(102, 126, 234, 0.1);
  padding: 6px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.video-section .video-layout .side-videos-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-width: 0;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .video-section .video-layout .side-videos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: none;
    height: auto;
  }
}
@media (max-width: 768px) {
  .video-section .video-layout .side-videos-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: none;
    height: auto;
  }
}
.video-section .video-layout .side-videos-container .video-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.video-section .video-layout .side-videos-container .video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}
.video-section .video-layout .side-videos-container .video-card .video-thumb {
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.video-section .video-layout .side-videos-container .video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.video-section .video-layout .side-videos-container .video-card .video-thumb:hover img {
  transform: scale(1.05);
}
.video-section .video-layout .side-videos-container .video-card .video-thumb .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(44, 62, 80, 0.9);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.video-section .video-layout .side-videos-container .video-card .video-thumb .video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.video-section .video-layout .side-videos-container .video-card .video-info {
  padding: 16px;
}
.video-section .video-layout .side-videos-container .video-card .video-info h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #2c3e50;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}
.video-section .video-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .video-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .video-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.video-section .video-item {
  display: block;
  width: 100%;
}
.video-section .video-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.1);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}
.video-section .video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}
.video-section .video-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}
.video-section .video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-section .video-card .video-thumb:hover img {
  transform: scale(1.1);
}
.video-section .video-card .video-thumb .video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(44, 62, 80, 0.9);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.video-section .video-card .video-thumb .video-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.video-section .video-card .video-thumb .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
}
.video-section .video-card .video-thumb .video-overlay i {
  font-size: 48px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}
.video-section .video-card .video-thumb:hover .video-overlay {
  opacity: 1;
}
.video-section .video-card .video-info {
  padding: 16px;
}
.video-section .video-card .video-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.video-section .video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  color: #95a5b3;
  font-size: 12px;
  font-weight: 500;
}
.video-section .video-card .video-info .video-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.video-section .video-card:hover .video-info h3 {
  color: #667eea;
}

.pagination-container {
  margin: 60px auto 40px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pagination-container ul li {
  cursor: pointer;
  width: 48px;
  height: 48px;
  background: #ffffff;
  text-align: center;
  color: #5a6c7d;
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pagination-container ul li:hover:not(.active):not(.disabled) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}
.pagination-container ul li a.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}
.pagination-container ul li.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination-container ul li.disabled:hover {
  background: #ffffff;
  color: #5a6c7d;
  transform: none;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}
.pagination-container ul li a {
  width: 100%;
  height: 100%;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 11px;
}
.pagination-container ul li.page-options {
  width: 80px;
}
.pagination-container ul li.page-options a {
  width: 100%;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 40px auto 30px;
  }
  .pagination-container ul {
    gap: 8px;
  }
  .pagination-container ul li {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  .pagination-container ul li.page-options {
    width: 65px;
  }
}

.footer {
  padding: 80px 0 40px;
  background: #ffffff;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.footer .friend-links {
  margin-bottom: 50px;
  text-align: center;
}
.footer .friend-links .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer .friend-links .links a {
  color: #5a6c7d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 16px;
  background: #f8f9ff;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer .friend-links .links a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}
@media (max-width: 768px) {
  .footer .friend-links .links {
    gap: 12px;
  }
  .footer .friend-links .links a {
    padding: 8px 16px;
    font-size: 13px;
  }
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
  color: #95a5b3;
  font-size: 14px;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 101;
}
.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  left: 0;
}
.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;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

@media (max-width: 768px) {
  .header {
    height: 70px;
  }
  .header .container {
    gap: 16px;
  }
  .header .header-left {
    gap: 20px;
  }
  .header .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    border-right: 1px solid rgba(102, 126, 234, 0.1);
  }
  .header .nav.active {
    left: 0;
  }
  .header .nav ul {
    flex-direction: column;
    padding: 40px 0;
    gap: 8px;
    height: 100%;
  }
  .header .nav ul li {
    margin: 0 20px;
  }
  .header .nav ul li a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 16px;
    text-align: center;
  }
  .header .header-right {
    gap: 12px;
  }
  .header .header-right .nav-button {
    display: none;
  }
  .header .header-right .user-menu {
    display: none;
  }
  .menu-toggle {
    display: block !important;
  }
}
.video-list-container .list-header {
  margin-bottom: 40px;
}
.video-list-container .list-header .section-title {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  margin: 0 0 20px;
}
.video-list-container .list-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .video-list-container .list-header .section-title {
    font-size: 28px;
  }
}
.video-list-container .list-header .search-info {
  color: #5a6c7d;
  font-size: 16px;
  font-weight: 500;
}
.video-list-container .list-header .search-info .keyword {
  color: #667eea;
  font-weight: 700;
  margin: 0 4px;
}
.video-list-container .list-header .search-info .result-count {
  color: #42e695;
  font-weight: 700;
  margin: 0 4px;
}
.video-list-container .no-result {
  grid-column: 1/-1;
  padding: 100px 0;
  text-align: center;
}
.video-list-container .no-result .no-result-content i {
  font-size: 72px;
  color: #95a5b3;
  margin-bottom: 32px;
  opacity: 0.5;
}
.video-list-container .no-result .no-result-content p {
  margin: 0;
  color: #5a6c7d;
  font-size: 20px;
  font-weight: 500;
}
.video-list-container .no-result .no-result-content p.sub-text {
  color: #95a5b3;
  font-size: 16px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .video-list-container .no-result {
    padding: 80px 0;
  }
  .video-list-container .no-result .no-result-content i {
    font-size: 56px;
    margin-bottom: 24px;
  }
  .video-list-container .no-result .no-result-content p {
    font-size: 18px;
  }
  .video-list-container .no-result .no-result-content p.sub-text {
    font-size: 14px;
  }
}

.video-player-section {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.1);
}
.video-player-section .player-wrapper {
  background: #000;
  position: relative;
}
.video-player-section .player-wrapper .video-player .iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
}
.video-player-section .player-wrapper .video-player .iframeBox .iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-player-section .video-info {
  padding: 40px;
}
@media (max-width: 768px) {
  .video-player-section .video-info {
    padding: 24px 20px;
  }
}
.video-player-section .video-info .video-title {
  margin-bottom: 24px;
}
.video-player-section .video-info .video-title h1 {
  font-size: 28px;
  color: #2c3e50;
  margin: 0 0 16px;
  line-height: 1.4;
  font-weight: 700;
}
@media (max-width: 768px) {
  .video-player-section .video-info .video-title h1 {
    font-size: 22px;
  }
}
.video-player-section .video-info .video-title .video-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.video-player-section .video-info .video-title .video-tags .tag {
  padding: 6px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}
.video-player-section .video-info .video-title .video-tags .tag:nth-child(even) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.video-player-section .video-info .video-title .video-tags .tag:nth-child(3n) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.video-player-section .video-info .video-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}
@media (max-width: 768px) {
  .video-player-section .video-info .video-stats {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
.video-player-section .video-info .video-stats .stats-left {
  display: flex;
  gap: 32px;
}
@media (max-width: 768px) {
  .video-player-section .video-info .video-stats .stats-left {
    justify-content: space-between;
    gap: 16px;
  }
}
.video-player-section .video-info .video-stats .stats-left .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5a6c7d;
  font-size: 14px;
  font-weight: 500;
}
.video-player-section .video-info .video-stats .stats-left .stat-item i {
  font-size: 16px;
  color: #667eea;
}
.video-player-section .video-info .video-stats .stats-right .action-buttons {
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .video-player-section .video-info .video-stats .stats-right .action-buttons {
    justify-content: space-between;
  }
}
.video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 24px;
  color: #5a6c7d;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media (max-width: 768px) {
  .video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn {
    padding: 10px 16px;
    font-size: 12px;
    flex: 1;
    justify-content: center;
  }
  .video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn span {
    display: none;
  }
  .video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn em {
    margin-left: 0;
  }
}
.video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn i {
  font-size: 16px;
}
.video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn em {
  background: #667eea;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-style: normal;
  margin-left: 4px;
}
.video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn:hover {
  background: #667eea;
  color: #ffffff;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}
.video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn:hover em {
  background: rgba(255, 255, 255, 0.3);
}
.video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn.like-btn:hover {
  background: #ff6b6b;
  border-color: #ff6b6b;
}
.video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn.collect-btn:hover {
  background: #ffd93d;
  border-color: #ffd93d;
  color: #333;
}
.video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn.share-btn:hover {
  background: #51cf66;
  border-color: #51cf66;
}
.video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn.download-btn:hover {
  background: #339af0;
  border-color: #339af0;
}
.video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn.liked {
  background: #ff6b6b !important;
  color: #ffffff !important;
  border-color: #ff6b6b !important;
}
.video-player-section .video-info .video-stats .stats-right .action-buttons .action-btn.collected {
  background: #ffd93d !important;
  color: #333 !important;
  border-color: #ffd93d !important;
}
.video-player-section .video-info .video-description .desc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.video-player-section .video-info .video-description .desc-header h3 {
  font-size: 18px;
  color: #2c3e50;
  margin: 0;
  font-weight: 700;
}
.video-player-section .video-info .video-description .desc-header .expand-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #667eea;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s;
}
.video-player-section .video-info .video-description .desc-header .expand-btn:hover {
  background: rgba(102, 126, 234, 0.1);
}
.video-player-section .video-info .video-description .desc-header .expand-btn i {
  font-size: 12px;
  transition: transform 0.3s;
}
.video-player-section .video-info .video-description .desc-header .expand-btn.expanded i {
  transform: rotate(180deg);
}
.video-player-section .video-info .video-description .desc-content {
  color: #5a6c7d;
  line-height: 1.8;
  font-size: 15px;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-player-section .video-info .video-description .desc-content.expanded {
  max-height: 800px;
}
.video-player-section .video-info .video-description .desc-content p {
  margin: 0 0 16px;
}
.video-player-section .video-info .video-description .desc-content p:last-child {
  margin-bottom: 0;
}
.video-player-section .video-info .video-description .desc-content .desc-extra {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
@media (max-width: 768px) {
  .video-player-section .video-info .video-description .desc-content .desc-extra {
    grid-template-columns: 1fr;
  }
}
.video-player-section .video-info .video-description .desc-content .desc-extra p {
  margin: 0;
  font-size: 14px;
}
.video-player-section .video-info .video-description .desc-content .desc-extra p strong {
  color: #2c3e50;
  font-weight: 600;
  margin-right: 8px;
}
.video-player-section .video-info .video-meta {
  margin-bottom: 32px;
}
.video-player-section .video-info .video-meta .meta-info {
  display: flex;
  gap: 24px;
  color: #5a6c7d;
  font-size: 15px;
  font-weight: 500;
  flex-wrap: wrap;
}
.video-player-section .video-info .video-meta .meta-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 126, 234, 0.1);
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(102, 126, 234, 0.1);
}
.video-player-section .video-info .video-meta .meta-info span i {
  color: #667eea;
}
.video-player-section .video-info .video-desc {
  color: #5a6c7d;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}
.video-player-section .video-info .video-desc p {
  margin: 0;
}
@media (max-width: 768px) {
  .video-player-section {
    margin-bottom: 32px;
    border-radius: 12px;
  }
  .video-player-section .video-info {
    padding: 24px;
  }
  .video-player-section .video-info .video-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .video-player-section .video-info .video-meta .meta-info {
    gap: 16px;
    font-size: 14px;
  }
  .video-player-section .video-info .video-meta .meta-info span {
    padding: 8px 12px;
  }
  .video-player-section .video-info .video-desc {
    font-size: 15px;
  }
}

.related-section {
  margin-bottom: 80px;
}
.related-section .section-header {
  margin-bottom: 40px;
}
.related-section .section-header .section-title {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  margin: 0;
}
.related-section .section-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .related-section .section-header .section-title {
    font-size: 28px;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(102, 126, 234, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header-scrolled {
  animation: slideDown 0.3s ease-out forwards;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.video-card {
  animation: fadeInUp 0.6s ease-out forwards;
}
.video-card:nth-child(1) {
  animation-delay: 0.1s;
}
.video-card:nth-child(2) {
  animation-delay: 0.2s;
}
.video-card:nth-child(3) {
  animation-delay: 0.3s;
}
.video-card:nth-child(4) {
  animation-delay: 0.4s;
}
.video-card:nth-child(5) {
  animation-delay: 0.5s;
}

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

.video-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .video-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .video-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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