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

body {
  font-family: "Inter", "Segoe UI", "Arial", sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #1e293b;
  line-height: 1.6;
  padding-top: 100px;
  min-height: 100vh;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.header .navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .navbar .logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.header .navbar .nav-links {
  display: flex;
  gap: 8px;
}
.header .navbar .nav-links a {
  color: #1e293b;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  background: transparent;
}
.header .navbar .nav-links a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.header .navbar .nav-links a.active {
  background: #3b82f6;
  color: white;
  font-weight: 600;
}
.header .navbar .hamburger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.header .navbar .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1001;
  transition: right 0.3s ease;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-menu .close-btn span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #1e293b;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.mobile-menu .close-btn span:first-child {
  transform: rotate(45deg);
}
.mobile-menu .close-btn span:nth-child(2) {
  transform: rotate(-45deg);
}
.mobile-menu .close-btn span:last-child {
  display: none;
}
.mobile-menu .nav-links {
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu .nav-links a {
  color: #1e293b;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid transparent;
}
.mobile-menu .nav-links a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.2);
}
.mobile-menu .nav-links a.active {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.main-content {
  padding: 0px 0;
}
@media screen and (max-width: 768px) {
  .main-content {
    padding: 10px 0;
  }
}
@media screen and (max-width: 480px) {
  .main-content {
    padding: 10px 0;
  }
}

.search-section {
  margin-top: 10px;
  margin-bottom: 10px;
}
.search-section .search-wrapper {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
}
.search-section .search-wrapper .search-input {
  flex: 1;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.search-section .search-wrapper .search-input:focus-within {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
}
.search-section .search-wrapper .search-input input {
  width: 100%;
  padding: 20px 24px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #1e293b;
  background: transparent;
}
.search-section .search-wrapper .search-input input::placeholder {
  color: #94a3b8;
}
.search-section .search-wrapper .search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.search-section .search-wrapper .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
}
.search-section .search-wrapper .search-btn i {
  font-size: 18px;
}

.hot-recommend-section {
  margin-bottom: 50px;
}
.hot-recommend-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.hot-recommend-section .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.hot-recommend-section .hot-recommend-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}
.hot-recommend-section .hot-recommend-list .hot-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}
.hot-recommend-section .hot-recommend-list .hot-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}
.hot-recommend-section .hot-recommend-list .hot-item .hot-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hot-recommend-section .hot-recommend-list .hot-item .hot-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.hot-recommend-section .hot-recommend-list .hot-item .hot-info .hot-date {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}
.hot-recommend-section .hot-recommend-list .hot-item .hot-info .hot-tags {
  display: flex;
  gap: 8px;
}
.hot-recommend-section .hot-recommend-list .hot-item .hot-info .hot-tags .tag {
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hot-recommend-section .hot-recommend-list .hot-item .hot-info .hot-tags .tag.hot {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: white;
}
.hot-recommend-section .hot-recommend-list .hot-item .hot-info .hot-tags .tag.recommend {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.banner-ad-section {
  margin-bottom: 50px;
}
.movie-section {
  padding: 40px 0;
  border-bottom: 1px solid #e2e8f0;
}
.movie-section:last-child {
  border-bottom: none;
}
.movie-section .section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.movie-section .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.movie-section .section-title .more-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}
.movie-section .section-title .more-link:hover {
  background: #3b82f6;
  color: white;
  transform: translateX(4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.movie-section .section-title .more-link .icon-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.movie-section .section-title .more-link:hover .icon-arrow {
  transform: translateX(4px);
}
.movie-section .movie-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.movie-section .movie-list .movie-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 70px;
}
.movie-section .movie-list .movie-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
}
.movie-section .movie-list .movie-item .movie-title {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  color: #1e293b;
  margin-right: 20px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.movie-section .movie-list .movie-item .movie-date {
  font-size: 13px;
  color: #3b82f6;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  white-space: nowrap;
}

.footer {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 50px 0 30px;
}
.footer .footer-content {
  text-align: center;
}
.footer .footer-content .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.footer .footer-content .footer-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.footer .footer-content .footer-links a:hover {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}
.footer .footer-content .footer-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  margin: 0 auto 30px;
  border-radius: 1px;
}
.footer .footer-content .copyright {
  color: #94a3b8;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  .header {
    padding: 12px 0;
  }
  .header .navbar .logo img {
    height: 40px;
  }
  .header .navbar .nav-links {
    display: none;
  }
  .header .navbar .hamburger {
    display: flex;
  }
  .container {
    padding: 0 5px;
  }
  .search-section .search-wrapper {
    flex-direction: column;
    gap: 12px;
  }
  .search-section .search-wrapper .search-input {
    flex-direction: row;
  }
  .search-section .search-wrapper .search-input input {
    padding: 16px 20px;
  }
  .search-section .search-wrapper .search-btn {
    padding: 16px 24px;
  }
  .search-result-section .search-wrapper .search-input {
    flex-direction: row;
  }
  .search-result-section .search-wrapper .search-input input {
    padding: 16px 20px;
  }
  .search-result-section .search-wrapper .search-input .search-btn {
    padding: 16px 24px;
  }
  .hot-recommend-section .hot-recommend-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .movie-section {
    padding: 30px 0;
  }
  .movie-section .section-title h2 {
    font-size: 24px;
  }
  .movie-section .movie-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer .footer-content .footer-links {
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  body {
    padding-top: 55px !important;
  }
  .header {
    padding: 8px 0 !important;
  }
  .header .navbar .logo img {
    height: 32px !important;
  }
  .search-section .search-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .search-section .search-wrapper .search-input {
    flex-direction: row;
    border-radius: 12px;
  }
  .search-section .search-wrapper .search-input input {
    padding: 14px 16px;
    font-size: 14px;
  }
  .search-section .search-wrapper .search-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
  .search-result-section .search-wrapper .search-input {
    flex-direction: row;
    border-radius: 12px;
  }
  .search-result-section .search-wrapper .search-input input {
    padding: 14px 16px;
    font-size: 14px;
  }
  .search-result-section .search-wrapper .search-input .search-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
  .hot-recommend-section .section-title h2 {
    font-size: 24px;
  }
  .movie-section .section-title h2 {
    font-size: 20px;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .list-section {
    padding: 30px 0;
  }
  .list-section .list-header .list-title {
    font-size: 24px;
  }
  .list-section .resource-list {
    gap: 16px;
  }
  .list-section .resource-list .resource-item {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .list-section .resource-list .resource-item .resource-title {
    margin-right: 0;
    font-size: 15px;
  }
  .list-section .resource-list .resource-item .resource-date {
    align-self: flex-end;
    font-size: 13px;
    padding: 8px 16px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hot-recommend-list .hot-item,
.movie-list .movie-item {
  animation: fadeInUp 0.6s ease forwards;
}

.search-section {
  animation: slideInRight 0.8s ease forwards;
}

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

::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6366f1;
}

::selection {
  background: rgba(59, 130, 246, 0.2);
  color: #1e293b;
}

:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.list-section {
  padding: 40px 0;
}
.list-section .list-header {
  text-align: center;
  margin-bottom: 40px;
}
.list-section .list-header .list-title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.list-section .resource-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.list-section .resource-list .resource-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}
.list-section .resource-list .resource-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
}
.list-section .resource-list .resource-item .resource-title {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  margin-right: 24px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-section .resource-list .resource-item .resource-date {
  font-size: 14px;
  color: #3b82f6;
  font-weight: 600;
  padding: 10px 18px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.content-section {
  margin-bottom: 10px;
}
.content-section .content-wrapper .resource-info-section {
  display: flex;
  gap: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}
.content-section .content-wrapper .resource-info-section .resource-cover {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.content-section .content-wrapper .resource-info-section .resource-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.content-section .content-wrapper .resource-info-section .resource-cover .resource-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #3b82f6;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.content-section .content-wrapper .resource-info-section .resource-cover:hover img {
  transform: scale(1.05);
}
.content-section .content-wrapper .resource-info-section .resource-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.content-section .content-wrapper .resource-info-section .resource-details .resource-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 20px 0;
  line-height: 1.3;
}
.content-section .content-wrapper .resource-info-section .resource-details .resource-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.content-section .content-wrapper .resource-info-section .resource-details .resource-meta span {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
}
.content-section .content-wrapper .resource-info-section .resource-details .resource-meta .resource-type {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.content-section .content-wrapper .resource-info-section .resource-details .resource-meta .resource-year {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.content-section .content-wrapper .resource-info-section .resource-details .resource-meta .resource-region {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.content-section .content-wrapper .resource-info-section .resource-details .resource-meta .resource-rating {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border: 1px solid #f59e0b;
}
.content-section .content-wrapper .resource-info-section .resource-details .resource-description {
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .content-section .content-wrapper .resource-info-section {
    gap: 20px;
    padding: 25px;
  }
  .content-section .content-wrapper .resource-info-section .resource-cover {
    width: 160px;
    height: 224px;
  }
  .content-section .content-wrapper .resource-info-section .resource-details .resource-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .content-section .content-wrapper .resource-info-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .content-section .content-wrapper .resource-info-section .resource-cover {
    width: 100%;
    max-width: 200px;
    height: 280px;
    margin: 0 auto;
  }
  .content-section .content-wrapper .resource-info-section .resource-details .resource-title {
    font-size: 22px;
    text-align: center;
  }
  .content-section .content-wrapper .resource-info-section .resource-details .resource-meta {
    justify-content: center;
    gap: 10px;
  }
  .content-section .content-wrapper .resource-info-section .resource-details .resource-meta span {
    font-size: 12px;
    padding: 4px 10px;
  }
  .content-section .content-wrapper .resource-info-section .resource-details .resource-description {
    font-size: 14px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .content-section .content-wrapper .resource-info-section {
    padding: 15px;
    gap: 15px;
  }
  .content-section .content-wrapper .resource-info-section .resource-cover {
    height: 240px;
  }
  .content-section .content-wrapper .resource-info-section .resource-details .resource-title {
    font-size: 20px;
  }
  .content-section .content-wrapper .resource-info-section .resource-details .resource-meta {
    gap: 8px;
  }
  .content-section .content-wrapper .resource-info-section .resource-details .resource-meta span {
    font-size: 11px;
    padding: 3px 8px;
  }
  .content-section .content-wrapper .resource-info-section .resource-details .resource-description {
    font-size: 13px;
  }
}
.content-section .content-wrapper .content-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}
.content-section .content-wrapper .content-container .content-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}
.content-section .content-wrapper .content-container .content-header .content-title {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.content-section .content-wrapper .content-container .tab-navigation {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0;
}
.content-section .content-wrapper .content-container .tab-navigation .tab-btn {
  padding: 15px 30px;
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
}
.content-section .content-wrapper .content-container .tab-navigation .tab-btn:hover {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
}
.content-section .content-wrapper .content-container .tab-navigation .tab-btn.active {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
  font-weight: 600;
}
.content-section .content-wrapper .content-container .tab-content {
  position: relative;
  overflow: hidden;
}
.content-section .content-wrapper .content-container .tab-content .tab-panel {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.content-section .content-wrapper .content-container .tab-content .tab-panel.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}
.content-section .content-wrapper .content-container .detail-content .detail-item {
  display: flex;
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}
.content-section .content-wrapper .content-container .detail-content .detail-item:last-child {
  border-bottom: none;
}
.content-section .content-wrapper .content-container .detail-content .detail-item .detail-label {
  width: 120px;
  font-weight: 600;
  color: #1e293b;
  flex-shrink: 0;
}
.content-section .content-wrapper .content-container .detail-content .detail-item .detail-value {
  flex: 1;
  color: #64748b;
  line-height: 1.6;
}
.content-section .content-wrapper .content-container .magnet-links-section {
  margin-top: 30px;
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-title {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
  position: relative;
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  border-radius: 1px;
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-info {
  flex: 1;
  margin-right: 20px;
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-info .magnet-name {
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-copy-btn,
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-page-btn,
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-open-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-copy-btn::before,
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-page-btn::before,
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-open-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-copy-btn:hover::before,
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-page-btn:hover::before,
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-open-btn:hover::before {
  width: 200px;
  height: 200px;
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-copy-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-open-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-open-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-page-btn {
  background: linear-gradient(135deg, #64748b 0%, rgb(127.050209205, 141.7782426778, 162.949790795) 100%);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.content-section .content-wrapper .content-container .magnet-links-section .magnet-links-list .magnet-item .magnet-actions .magnet-page-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.related-section {
  padding: 40px 0;
  background: #f8fafc;
}
.related-section .section-title {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}
.related-section .related-resources-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.related-section .related-resources-list .related-resource-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}
.related-section .related-resources-list .related-resource-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
}
.related-section .related-resources-list .related-resource-item .related-title {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  margin-right: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-section .related-resources-list .related-resource-item .related-date {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.copy-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.copy-success-modal.active {
  opacity: 1;
  visibility: visible;
}
.copy-success-modal .modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  max-width: 300px;
  width: 90%;
}
.copy-success-modal .modal-content .modal-icon {
  margin-bottom: 20px;
}
.copy-success-modal .modal-content .modal-icon i {
  font-size: 40px;
  color: #10b981;
}
.copy-success-modal .modal-content .modal-message {
  font-size: 16px;
  color: #1e293b;
  margin: 0;
  line-height: 1.5;
}
.copy-success-modal.active .modal-content {
  transform: scale(1);
}

body.modal-open {
  overflow: hidden;
}

.search-result-section .search-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}
.search-result-section .search-header .search-info {
  text-align: center;
  margin-bottom: 30px;
}
.search-result-section .search-header .search-info .search-title {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.search-result-section .search-header .search-info .search-summary {
  color: #64748b;
  font-size: 16px;
  margin: 0;
}
.search-result-section .search-header .search-info .search-summary .search-keyword {
  color: #3b82f6;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}
.search-result-section .search-header .search-wrapper {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
}
.search-result-section .search-header .search-wrapper .search-input {
  flex: 1;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.search-result-section .search-header .search-wrapper .search-input:focus-within {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
}
.search-result-section .search-header .search-wrapper .search-input input {
  width: 100%;
  padding: 20px 24px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #1e293b;
  background: transparent;
}
.search-result-section .search-header .search-wrapper .search-input input::placeholder {
  color: #94a3b8;
}
.search-result-section .search-header .search-wrapper .search-input .search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.search-result-section .search-header .search-wrapper .search-input .search-btn:hover {
  transform: translateX(2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.search-result-section .search-header .search-wrapper .search-input .search-btn i {
  font-size: 18px;
}
.search-result-section .search-results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.search-result-section .search-results-list .search-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}
.search-result-section .search-results-list .search-result-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
}
.search-result-section .search-results-list .search-result-item .result-content {
  flex: 1;
  margin-right: 20px;
}
.search-result-section .search-results-list .search-result-item .result-content .result-title {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-result-section .search-results-list .search-result-item .result-content .result-category {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.search-result-section .search-results-list .search-result-item .result-date {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  margin-top: 30px;
  min-width: 0;
}

.content-main {
  min-width: 0;
}
.content-main .main-title {
  margin-bottom: 20px;
}
.content-main .main-title h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.video-list {
  min-width: 0;
}
.video-list .video-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 0;
}
.video-list .video-item:hover {
  background: rgba(59, 130, 246, 0.05);
  padding-left: 10px;
}
.video-list .video-item:last-child {
  border-bottom: none;
}
.video-list .video-item .video-title {
  flex: 1 1 0;
  font-size: 16px;
  font-weight: 500;
  color: #dc2626;
  margin-right: 20px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.video-list .video-item .video-info {
  display: flex;
  gap: 15px;
  margin-right: 20px;
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: flex-end;
}
.video-list .video-item .video-info span {
  font-size: 14px;
  color: #64748b;
  white-space: nowrap;
}

.content-sidebar {
  min-width: 0;
}
.content-sidebar .sidebar-widget {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}
.content-sidebar .sidebar-widget .widget-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}
.content-sidebar .sidebar-widget .widget-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}
.content-sidebar .sidebar-widget .widget-title .more-link {
  font-size: 14px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}
.content-sidebar .sidebar-widget .widget-title .more-link:hover {
  text-decoration: underline;
}

.ranking-list .ranking-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ranking-list .ranking-item:hover {
  background: rgba(59, 130, 246, 0.05);
  padding-left: 5px;
}
.ranking-list .ranking-item .ranking-number {
  width: 20px;
  height: 20px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.ranking-list .ranking-item .ranking-title {
  flex: 1;
  font-size: 14px;
  color: #1e293b;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .content-sidebar {
    order: -1;
  }
}
@media screen and (max-width: 768px) {
  .video-list .video-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .video-list .video-item .video-title {
    flex: none;
    width: 100%;
    margin-right: 0;
    min-width: 0;
  }
  .video-list .video-item .video-info {
    margin-right: 0;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
  .ranking-list .ranking-item {
    flex-wrap: wrap;
    gap: 8px;
  }
  .ranking-list .ranking-item .ranking-title {
    flex: 1;
    min-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 480px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .back-to-top i {
    font-size: 18px;
  }
  .content-main .main-title h2 {
    font-size: 20px;
  }
  .video-list .video-item {
    padding: 12px 0;
  }
  .video-list .video-item .video-title {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: none;
    width: 100%;
    min-width: 0;
  }
  .video-list .video-item .video-info {
    gap: 8px;
  }
  .video-list .video-item .video-info span {
    font-size: 12px;
  }
  .content-sidebar .sidebar-widget {
    padding: 15px;
  }
  .content-sidebar .sidebar-widget .widget-title h3 {
    font-size: 16px;
  }
  .ranking-list .ranking-item .ranking-title {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.featured-videos-section {
  margin: 40px 0;
}
.featured-videos-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.featured-videos-section .section-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}
.featured-videos-section .section-header .more-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.featured-videos-section .section-header .more-link:hover {
  transform: translateX(5px);
}
.featured-videos-section .section-header .more-link i {
  font-size: 14px;
}
.featured-videos-section .video-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
.featured-videos-section .video-grid .video-card {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  max-width: 220px;
}
.featured-videos-section .video-grid .video-card:hover {
  transform: translateY(-5px);
}
.featured-videos-section .video-grid .video-card:hover .video-overlay {
  opacity: 1;
}
.featured-videos-section .video-grid .video-card:hover .play-btn {
  transform: scale(1.1);
}
.featured-videos-section .video-grid .video-card .video-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
}
.featured-videos-section .video-grid .video-card .video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.featured-videos-section .video-grid .video-card .video-cover .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.featured-videos-section .video-grid .video-card .video-cover .video-overlay .play-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.featured-videos-section .video-grid .video-card .video-cover .video-overlay .play-btn i {
  font-size: 16px;
  color: #3b82f6;
}
.featured-videos-section .video-grid .video-card .video-cover .video-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #06b6d4;
  color: white;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
}
.featured-videos-section .video-grid .video-card .video-info {
  padding: 12px;
  text-align: center;
}
.featured-videos-section .video-grid .video-card .video-info .video-title {
  font-size: 12px;
  font-weight: 500;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-videos-section .video-grid .video-card .video-info .video-meta {
  display: none;
}
@media screen and (max-width: 1024px) {
  .featured-videos-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .featured-videos-section .section-header {
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
  }
  .featured-videos-section .section-header h2 {
    font-size: 24px;
  }
  .featured-videos-section .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .featured-videos-section .video-card .video-info .video-title {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .featured-videos-section .video-card .video-info .video-title {
    font-size: 11px;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
.back-to-top:hover {
  background: #6366f1;
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top i {
  font-size: 20px;
}

.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: #3b82f6;
  font-weight: 600;
  color: white;
  border-color: #3b82f6;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  text-align: center;
  color: #64748b;
  border: 1px solid #e2e8f0;
  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(59, 130, 246, 0.05);
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-1px);
}
.pagination-container ul li.active {
  background: #3b82f6;
  font-weight: 600;
  color: white;
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 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: #3b82f6;
  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: #94a3b8;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background-color: #ffffff;
  border-color: #e2e8f0;
  color: #94a3b8;
  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;
  }
}

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