@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgb(38, 40, 42);
  min-height: 100vh;
  background: #edeff0;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  border: none;
  background: none;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: #0f172a;
  color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

.header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #475569;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}

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

.logo-section .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.logo-section .logo:hover {
  transform: scale(1.05);
}
.logo-section .logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.logo-section .logo .logo-text {
  display: flex;
  flex-direction: column;
}
.logo-section .logo .logo-text .logo-title {
  font-size: 20px;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1;
}
.logo-section .logo .logo-text .logo-subtitle {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 400;
  line-height: 1;
}

.nav-desktop {
  display: flex;
  gap: 8px;
}
.nav-desktop .nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #cbd5e1;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.nav-desktop .nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.nav-desktop .nav-item .nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.nav-desktop .nav-item .nav-text {
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.nav-desktop .nav-item:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
.nav-desktop .nav-item:hover::before {
  opacity: 1;
}
.nav-desktop .nav-item:hover .nav-icon {
  transform: scale(1.1);
}
.nav-desktop .nav-item.active {
  color: white;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
.nav-desktop .nav-item.active .nav-icon {
  transform: scale(1.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-container .search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #475569;
  border-radius: 12px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  min-width: 280px;
}
.search-container .search-box:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: rgba(255, 255, 255, 0.08);
}
.search-container .search-box .search-icon {
  color: #94a3b8;
  margin-right: 12px;
  display: flex;
  align-items: center;
}
.search-container .search-box .search-input {
  background: transparent;
  border: none;
  color: #f8fafc;
  flex: 1;
  font-size: 14px;
  outline: none;
}
.search-container .search-box .search-input::placeholder {
  color: #94a3b8;
}
.search-container .search-box .search-btn {
  background: none;
  border: none;
  padding: 12px 16px;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.search-container .search-box .search-btn:hover {
  color: #f8fafc;
}
.search-container .search-box .search-btn svg {
  width: 18px;
  height: 18px;
}

.user-menu .user-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #475569;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
  cursor: pointer;
  transition: all 0.3s ease;
}
.user-menu .user-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #3b82f6;
  transform: scale(1.05);
}
.user-menu .user-btn .user-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn .menu-line {
  width: 24px;
  height: 2px;
  background: #f8fafc;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.mobile-menu-btn:hover .menu-line {
  background: #3b82f6;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
}
.mobile-sidebar .mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.mobile-sidebar .mobile-sidebar-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #334155;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 10000;
}
.mobile-sidebar.active {
  pointer-events: auto;
}
.mobile-sidebar.active .mobile-sidebar-overlay {
  opacity: 1;
  pointer-events: auto;
}
.mobile-sidebar.active .mobile-sidebar-content {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none !important;
  }
  .mobile-menu-btn {
    display: flex !important;
  }
  .search-container {
    display: none;
  }
  .header-container {
    padding: 0 16px;
  }
  .logo-text .logo-subtitle {
    display: none;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
  }
  .logo-section .logo {
    gap: 8px;
  }
  .logo-section .logo .logo-icon {
    width: 32px;
    height: 32px;
  }
  .logo-section .logo .logo-text .logo-title {
    font-size: 16px;
  }
}
.header {
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid #475569;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.nav-desktop {
  display: flex !important;
}

.heder_input {
  width: 100%;
  justify-content: space-between;
  display: flex;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 5px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex !important;
  }
}
.hamburger-menu .hamburger-line {
  width: 20px;
  height: 2px;
  background: #f8fafc;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.hamburger-menu:hover .hamburger-line {
  background: #3b82f6;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-sidebar.active {
  visibility: visible;
  opacity: 1;
}
.mobile-sidebar .mobile-sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.mobile-sidebar .mobile-sidebar-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #334155;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-sidebar.active .mobile-sidebar-content {
  transform: translateX(0);
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #475569;
  background: rgba(15, 23, 42, 0.95);
}
.mobile-sidebar-header .mobile-logo {
  height: 24px;
}
.mobile-sidebar-header .close-btn {
  background: transparent;
  border: none;
  color: #f8fafc;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-sidebar-header .close-btn:hover {
  color: #3b82f6;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav .mobile-nav-item {
  border-bottom: 1px solid #475569;
}
.mobile-nav .mobile-nav-item a {
  display: block;
  padding: 15px 20px;
  color: #f8fafc;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.mobile-nav .mobile-nav-item a:hover {
  background: #0f172a;
  color: #3b82f6;
}
.mobile-nav .mobile-nav-item.active a {
  color: #f8fafc;
  background: rgb(0, 102, 255);
  font-weight: 600;
  position: relative;
}
.mobile-nav .mobile-nav-item.active a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.8);
}
.mobile-nav .mobile-nav-item.active a:hover {
  background: rgb(0, 81.6, 204);
  color: #f8fafc;
}

body.sidebar-open {
  overflow: hidden;
}

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

.logo img {
  height: 40px;
  object-fit: contain;
}

.logo h1 {
  color: #f8fafc;
  font-size: 1.8rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 0.5rem;
}

.nav-item {
  color: #cbd5e1;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.nav-item:hover {
  color: #f8fafc;
  background: #334155;
}

.nav-item.active {
  color: #f8fafc;
  background: #3b82f6;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(51, 65, 85, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.search-box:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.15);
  transform: translateY(-1px);
}
.search-box:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.search-box input {
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  border-radius: 50px 0 0 50px;
}
.search-box input::placeholder {
  color: rgba(148, 163, 184, 0.7);
  font-weight: 400;
  transition: color 0.3s ease;
}
.search-box input:focus {
  outline: none;
}
.search-box input:focus::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

.search-box .search-btn {
  border: none;
  padding: 15px 20px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  min-width: 48px;
  position: relative;
  overflow: hidden;
  border-radius: 0 50px 50px 0;
  margin-left: -1px;
  height: 100%;
  margin-top: -1px;
  margin-bottom: -1px;
}
.search-box .search-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.search-box .search-btn:active {
  transform: scale(0.95);
}
.search-box .search-btn svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.hot-featured {
  max-width: 1440px;
  margin: 3rem auto 2rem;
  padding: 0 2rem;
}

.hot-featured-container {
  background: #334155;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #3b82f6, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header .section-subtitle {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 400;
}

.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  height: 550px;
}

.featured-card.main-card {
  grid-row: 1/3;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.featured-card.main-card .card-image {
  position: relative;
  height: 70%;
}
.featured-card.main-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-card.main-card .card-image .card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  z-index: 2;
}
.featured-card.main-card .card-image .card-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}
.featured-card.main-card .card-content {
  padding: 1rem;
}
.featured-card.main-card .card-content .card-title {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.featured-card:not(.main-card) {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.featured-card:not(.main-card) .card-image {
  position: relative;
  height: 70%;
}
.featured-card:not(.main-card) .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-card:not(.main-card) .card-image .card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  z-index: 2;
}
.featured-card:not(.main-card) .card-image .card-duration {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 2;
}
.featured-card:not(.main-card) .card-content {
  padding: 0.75rem;
}
.featured-card:not(.main-card) .card-content .card-title {
  color: #f8fafc;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.featured-card:not(.main-card) .card-content .genre {
  margin-top: 0.5rem;
  color: #3498db;
}

@media (max-width: 1200px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    gap: 1rem;
  }
  .featured-card.main-card {
    grid-row: 1/2;
    grid-column: 1/3;
    height: 500px;
  }
  .featured-card.main-card .card-content .card-title {
    font-size: 1.5rem;
  }
  .featured-card.main-card .card-content .card-desc {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .hot-featured {
    padding: 0 1rem;
    margin: 1.5rem auto;
  }
  .hot-featured-container {
    padding: 1.5rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .featured-card.main-card {
    grid-column: 1/3;
    height: 400px;
  }
  .featured-card.main-card .card-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  .featured-card.main-card .card-duration {
    font-size: 0.75rem;
  }
  .featured-card:not(.main-card) {
    height: 200px;
  }
  .featured-card:not(.main-card) .card-badge {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
  }
  .featured-card:not(.main-card) .card-duration {
    padding: 0.2rem 0.4rem;
    font-size: 0.7rem;
  }
  .featured-card:not(.main-card) .card-content .card-title {
    font-size: 0.85rem;
  }
  .featured-card:not(.main-card) .card-content .card-meta {
    gap: 0.5rem;
  }
  .featured-card:not(.main-card) .card-content .card-meta span {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .hot-featured-container {
    padding: 1rem;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .section-header .section-subtitle {
    font-size: 0.9rem;
  }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .featured-card.main-card {
    grid-column: 1/3;
    height: 300px;
  }
  .featured-card.main-card .card-badge {
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
  }
  .featured-card:not(.main-card) {
    height: 160px;
  }
  .featured-card:not(.main-card) .card-badge {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
  }
  .featured-card:not(.main-card) .card-content .card-title {
    font-size: 0.8rem;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .video-carousel {
    padding: 0 1.5rem;
  }
  .carousel-container {
    padding: 1.25rem;
  }
  .carousel-title {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }
}
.banner-ad {
  max-width: 1440px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.main-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container {
  display: flex;
  gap: 2rem;
  align-items: start;
}

.detail-wrapper {
  max-width: 1200px;
}

.detail-wrapper .banner-ad {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.main-content {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.sidebar {
  position: sticky;
  top: 100px;
  width: 300px;
  flex-shrink: 0;
}
.sidebar:empty {
  display: none;
}
.sidebar.hidden {
  display: none;
}

.side-ad {
  background: #334155;
  border: 1px solid #475569;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.side-ad h4 {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ad-placeholder {
  background: #0f172a;
  border: 2px dashed #475569;
  border-radius: 6px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.video-section {
  margin-bottom: 3rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f8fafc;
}

.more-link {
  display: inline-block;
  color: #94a3b8;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.more-link:hover {
  color: #f8fafc;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.2), rgba(155, 89, 182, 0.2));
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sort-options select {
  background: #334155;
  border: 1px solid #475569;
  color: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

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

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

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

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.play-btn {
  display: none;
}

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

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

.video-info {
  padding: 0.5rem;
}

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

.video-meta,
.video-desc,
.video-stats {
  display: none;
}

.filter-bar {
  background: #334155;
  border: 1px solid #475569;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group label {
  color: #f8fafc;
  font-weight: 500;
  min-width: 60px;
  font-size: 0.95rem;
}

.filter-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #475569;
  color: #cbd5e1;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #0f172a;
  color: #f8fafc;
}

.filter-btn.active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #f8fafc;
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
  position: relative;
}
.pagination-container::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-container li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}
.pagination-container li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pagination-container li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  border-radius: 50%;
}
.pagination-container li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.pagination-container li:hover::before {
  opacity: 1;
}
.pagination-container li:hover::after {
  width: 60px;
  height: 60px;
}
.pagination-container li a {
  position: relative;
  z-index: 2;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.pagination-container li a.active {
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.pagination-container li a.no-page {
  opacity: 0.3;
  cursor: not-allowed;
}
.pagination-container li a.no-page:hover {
  color: #94a3b8;
  transform: none;
}
.pagination-container li:hover a {
  color: #f8fafc;
  transform: scale(1.05);
}
.pagination-container li:has(a.active) {
  background: linear-gradient(135deg, #3498db, #9b59b6);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(52, 152, 219, 0.3);
}
.pagination-container li:has(a.active)::before {
  opacity: 0;
}
.pagination-container li:has(a.active)::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  width: 80px;
  height: 80px;
}
.pagination-container li.page-options {
  min-width: 60px;
  padding: 0 16px;
}
.pagination-container li.page-options a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .pagination-container {
    margin: 2rem 0;
  }
  .pagination-container ul {
    gap: 3px;
  }
  .pagination-container li {
    min-width: 40px;
    height: 40px;
  }
  .pagination-container li a {
    font-size: 0.9rem;
  }
  .pagination-container li.page-options {
    min-width: 50px;
    padding: 0 12px;
  }
  .pagination-container li.page-options a {
    font-size: 0.85rem;
    gap: 4px;
  }
}

.page-dots {
  color: #94a3b8;
  padding: 0.75rem 0.5rem;
}

.search-result-header {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-bottom: 2px solid #475569;
  position: relative;
}
.search-result-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #3b82f6;
  border-radius: 1px;
}

.search-result-header h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-result-header h2::before {
  content: "";
  width: 4px;
  height: 24px;
  background: #3b82f6;
  border-radius: 2px;
}

.search-info {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}
.search-info strong {
  color: #3b82f6;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 2px;
}

.hot-search {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-tag {
  background: transparent;
  border: 1px solid #475569;
  color: #cbd5e1;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.search-tag:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #f8fafc;
}

.hot-movies {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hot-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hot-item:hover {
  background: #0f172a;
}

.hot-item img {
  width: 50px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}

.hot-info {
  flex: 1;
}

.hot-info h5 {
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hot-info p {
  color: #cbd5e1;
  font-size: 0.8rem;
  margin: 0;
}

.video-player-section {
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.video-player {
  margin-bottom: 1.5rem;
}

.video-player video {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  background: black;
}

.video-details {
  margin: 2rem 0;
  padding: 0;
}

.video-details .video-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.video-details .video-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.video-details .video-meta span {
  background: #334155;
  color: #cbd5e1;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #475569;
  transition: all 0.2s ease;
}
.video-details .video-meta span:hover {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
  transform: translateY(-1px);
}
.video-details .video-meta span:nth-child(2) {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  border-color: #ff6b6b;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.video-details .video-meta span:nth-child(2)::before {
  content: "🔥";
  margin-right: 4px;
  font-size: 0.8rem;
}
.video-details .video-meta span:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.video-details .video-meta span:nth-child(2):hover {
  background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
  border-color: #ee5a24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}
.video-details .video-meta span:nth-child(2):hover::after {
  left: 100%;
}
.video-details .video-meta span.video-date {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
  font-weight: 500;
  position: relative;
}
.video-details .video-meta span.video-date:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  border-color: #764ba2;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(102, 126, 234, 0.3);
}

.video-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
}

.video-description {
  margin-bottom: 2rem;
  padding: 0;
}

.video-description h3 {
  color: #f8fafc;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid #475569;
  padding-bottom: 0.5rem;
}

.video-description p {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 0.9rem;
}
.video-description p:last-child {
  margin-bottom: 0;
}

.video-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn.primary {
  background: #3b82f6;
  color: #f8fafc;
}

.action-btn.primary:hover {
  background: #1d4ed8;
}

.action-btn:not(.primary) {
  background: #334155;
  color: #f8fafc;
  border: 1px solid #475569;
}

.action-btn:not(.primary):hover {
  background: #0f172a;
}

.footer {
  background: #334155;
  border-top: 1px solid #475569;
  margin-top: 4rem;
}

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

.footer-links {
  margin: 2rem 0;
}
.footer-links p {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-links .links-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 32px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}
.footer-links .links-grid .footer-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.footer-links .links-grid .footer-link:hover {
  color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 768px) {
  .footer-links .links-grid {
    padding: 1.2rem;
    gap: 12px 24px;
  }
  .footer-links .links-grid .footer-link {
    font-size: 0.85rem;
  }
}

.video-count {
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
}

.video-count strong {
  color: #f8fafc;
  font-weight: 700;
}

@media (max-width: 1500px) {
  .main-wrapper {
    padding: 0 1rem;
  }
  .banner-ad {
    padding: 0 1rem;
  }
  .header-container {
    padding: 0 1rem;
  }
}
@media (max-width: 1200px) {
  .container {
    flex-direction: column;
    gap: 2rem;
  }
  .sidebar {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (max-width: 768px) {
  .banner-ad {
    padding: 0 1rem;
  }
  .header-container {
    flex-direction: row;
    flex-wrap: nowrap;
    height: auto;
    padding: 0.5rem 0.5rem;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    flex-shrink: 0;
    order: 0;
  }
  .header-top {
    flex-shrink: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    order: 1;
    gap: 0.5rem;
    min-width: 0;
  }
  .nav-mobile {
    width: 100%;
    order: 2;
    margin-top: 0.5rem;
  }
  .nav-desktop {
    display: none !important;
  }
  .hamburger-menu {
    display: flex !important;
  }
  .nav-item {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  .search-box {
    width: 260px;
    flex-shrink: 1;
    max-width: 70%;
  }
  .carousel-slide {
    padding: 1rem;
  }
  .slide-info h3 {
    font-size: 1.5rem;
  }
  .slide-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .play-carousel-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .prev-btn {
    left: 0.5rem;
  }
  .next-btn {
    right: 0.5rem;
  }
  .main-container {
    padding: 1rem;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .video-card {
    width: 100%;
  }
  .filter-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .pagination {
    flex-wrap: wrap;
  }
  .video-details .video-title {
    font-size: 1.8rem;
  }
  .video-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links {
    margin-bottom: 1rem;
  }
  .footer-links h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  .footer-link {
    padding: 0.3rem 0.5rem;
    font-size: 0.8rem;
  }
  .footer-container {
    padding: 1rem;
    font-size: 0.8rem;
  }
}
.iframeBox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.iframeBox .iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.video-tags .tag {
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}
.video-tags .tag:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  transform: translateY(-1px);
}

.featured-card.main-card .card-content {
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.featured-card.main-card .card-content .card-title {
  color: #f8fafc;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-card.main-card .card-content .video-tags {
  margin-top: 1rem;
}
.featured-card.main-card .card-content .video-tags .tag {
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
}

@media (max-width: 768px) {
  .video-tags {
    bottom: 0.75rem;
    left: 0.75rem;
    gap: 0.3rem;
  }
  .video-tags .tag {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  .featured-card.main-card .video-tags {
    bottom: 1rem;
    left: 1rem;
  }
  .featured-card.main-card .video-tags .tag {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
}
.hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0;
}
.hot-tags .tag {
  padding: 4px 12px;
  border-radius: 4px;
  color: #94a3b8;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  cursor: pointer;
}
.hot-tags .tag:hover {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.1);
}

.friend-links {
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(to right bottom, rgba(44, 62, 80, 0.3), rgba(52, 73, 94, 0.3));
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.friend-links .section-title {
  font-size: 1.4rem;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.friend-links .section-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background: linear-gradient(to bottom, #3498db, #9b59b6);
  border-radius: 2px;
}
.friend-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}
.friend-links .links-grid .link-item {
  position: relative;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.friend-links .links-grid .link-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0) 0%, rgba(52, 152, 219, 0.05) 50%, rgba(155, 89, 182, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.friend-links .links-grid .link-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.friend-links .links-grid .link-item:hover::before {
  opacity: 1;
}
.friend-links .links-grid .link-item:hover .site-name {
  color: #3498db;
}
.friend-links .links-grid .link-item:hover .site-name::after {
  width: 100%;
}
.friend-links .links-grid .link-item .site-name {
  position: relative;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  display: inline-block;
}
.friend-links .links-grid .link-item .site-name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #3498db, #9b59b6);
  transition: width 0.3s ease;
}
.friend-links .links-grid .link-item .site-desc {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}
.friend-links .links-grid .link-item .site-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #94a3b8;
}
.friend-links .links-grid .link-item .site-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.friend-links .links-grid .link-item .site-meta .meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .friend-links {
    padding: 1.5rem;
  }
  .friend-links .links-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  .friend-links .links-grid .link-item {
    padding: 12px;
  }
  .friend-links .links-grid .link-item .site-meta {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 3rem 0;
  position: relative;
}
.pagination::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}
.pagination .page-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.pagination .page-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pagination .page-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  border-radius: 50%;
}
.pagination .page-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.pagination .page-item:hover::before {
  opacity: 1;
}
.pagination .page-item:hover::after {
  width: 60px;
  height: 60px;
}
.pagination .page-item.active {
  background: linear-gradient(135deg, #3498db, #9b59b6);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(52, 152, 219, 0.3);
}
.pagination .page-item.active::before {
  opacity: 0;
}
.pagination .page-item.active::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  width: 80px;
  height: 80px;
}
.pagination .page-item.active a {
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.pagination .page-item.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}
.pagination .page-item.disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.pagination .page-item.disabled:hover::before, .pagination .page-item.disabled:hover::after {
  opacity: 0;
  width: 0;
  height: 0;
}
.pagination .page-item a {
  position: relative;
  z-index: 2;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.pagination .page-item:hover a {
  color: #f8fafc;
  transform: scale(1.05);
}
.pagination .page-prev,
.pagination .page-next {
  min-width: 60px;
  padding: 0 16px;
}
.pagination .page-prev a,
.pagination .page-next a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}
.pagination .page-prev a svg,
.pagination .page-next a svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.pagination .page-prev:hover a svg,
.pagination .page-next:hover a svg {
  transform: translateX(-2px);
}
.pagination .page-prev.page-next:hover a svg,
.pagination .page-next.page-next:hover a svg {
  transform: translateX(2px);
}
.pagination .page-ellipsis {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}
.pagination .page-ellipsis::before {
  content: "...";
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .pagination {
    gap: 3px;
    margin: 2rem 0;
  }
  .pagination .page-item {
    min-width: 40px;
    height: 40px;
  }
  .pagination .page-item a {
    font-size: 0.9rem;
  }
  .pagination .page-prev,
  .pagination .page-next {
    min-width: 50px;
    padding: 0 12px;
  }
  .pagination .page-prev a,
  .pagination .page-next a {
    font-size: 0.85rem;
    gap: 4px;
  }
  .pagination .page-prev a svg,
  .pagination .page-next a svg {
    width: 14px;
    height: 14px;
  }
  .pagination .page-ellipsis {
    min-width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}

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