@charset "UTF-8";
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header styles */
header {
  background-color: #000;
  border-bottom: 1px solid #374151;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #dc2626;
  text-decoration: none;
}
.logo img {
  height: 30px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: #ef4444;
}

.nav-link.active {
  color: #fff;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  border-top: 1px solid #374151;
  padding: 1rem 0;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav.show {
  display: flex;
}

/* Section styles */
.hero-section {
  padding: 1.5rem 0;
  background: linear-gradient(to bottom, #111827, #000);
}

.search-section {
  padding: 1.5rem 0;
  background-color: #000;
}

.category-section {
  padding: 2rem 0;
  background-color: #000;
}

/* Typography */
.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.category-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  border-left: 4px solid #dc2626;
  padding-left: 1rem;
}

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

.category-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-count {
  color: #9ca3af;
  font-size: 0.75rem;
  background-color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.category-desc {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.view-more {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.view-more:hover {
  color: #ef4444;
}

/* Grid layouts */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

/* Video card styles */
.video-card {
  display: block;
  background-color: #374151;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-card img {
  width: 100%;
  height: 9rem;
  object-fit: cover;
}

.video-card-content {
  padding: 0.5rem;
}

.video-title {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-episodes {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Search form */
.search-container {
  max-width: 32rem;
  margin: 0 auto;
}

.search-form {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 0.75rem;
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
}

.search-input::placeholder {
  color: #9ca3af;
}

.search-input:focus {
  outline: none;
  border-color: #dc2626;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
}

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #dc2626;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #b91c1c;
}

.hot-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hot-tags span {
  color: #9ca3af;
  font-size: 0.75rem;
}

.hot-tag {
  color: #ef4444;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s;
}

.hot-tag:hover {
  color: #f87171;
}

.category-section-item {
  margin-bottom: 2rem;
}

/* Responsive design */
@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .video-card img {
    height: 10rem;
  }
  .video-title {
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .logo {
    font-size: 1.75rem;
  }
  .section-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
  .category-title {
    font-size: 1.5rem;
    padding-left: 1rem;
  }
  .category-header {
    margin-bottom: 1.5rem;
  }
  .category-info {
    gap: 1rem;
  }
  .category-count {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
  }
  .category-desc {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
  }
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .video-card img {
    height: 12rem;
  }
  .video-card-content {
    padding: 0.75rem;
  }
  .hero-section {
    padding: 2rem 0;
  }
  .search-section {
    padding: 2rem 0;
  }
  .category-section {
    padding: 3rem 0;
  }
  .category-section-item {
    margin-bottom: 3rem;
  }
  .search-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  .search-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .hot-tags span, .hot-tag {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
/* Mobile touch optimization */
@media (hover: none) {
  .video-card:hover {
    transform: none;
  }
  .video-card:active {
    transform: scale(0.98);
  }
}
.page-header {
  margin-bottom: 1.5rem;
}

.page-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-description {
  color: #9ca3af;
  font-size: 0.875rem;
}

.page-stats {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.video-card {
  display: block;
  background-color: #374151;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.video-card-content {
  padding: 0.75rem;
}

.video-title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-episodes {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn {
  padding: 0.5rem 1rem;
  background-color: #374151;
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pagination-btn:hover:not(:disabled) {
  background-color: #4b5563;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  gap: 0.25rem;
}

.page-number {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.page-number.active {
  background-color: #dc2626;
  color: #fff;
}

.page-number:not(.active) {
  background-color: #374151;
  color: #fff;
}

.page-number:not(.active):hover {
  background-color: #4b5563;
}

/* Responsive design */
@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .logo {
    font-size: 1.75rem;
  }
  .page-header {
    margin-bottom: 2rem;
  }
  .page-title {
    font-size: 1.875rem;
  }
  .page-description {
    font-size: 1rem;
  }
  .page-stats {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1280px) {
  .video-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
/* Mobile touch optimization */
@media (hover: none) {
  .video-card:hover {
    transform: none;
  }
  .video-card:active {
    transform: scale(0.98);
  }
}
.detail {
  /* Video player */
  /* Video info */
  /* Action buttons */
  /* Tabs */
  /* Sidebar components */
  /* Episode list */
  /* Recommended videos */
  /* Responsive design */
  /* Mobile touch optimization */
}
.detail .main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.detail .content-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.detail .sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.detail .video-player {
  position: relative;
  background-color: #111827;
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 200px;
}
.detail .player-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #374151, #111827);
}
.detail .player-info {
  text-align: center;
  padding: 1rem;
}
.detail .play-button {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail .episode-title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.detail .episode-subtitle {
  color: #9ca3af;
  font-size: 0.75rem;
}
.detail .video-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.detail .breadcrumb {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}
.detail .breadcrumb a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}
.detail .breadcrumb a:hover {
  color: #ef4444;
}
.detail .breadcrumb .current {
  color: #fff;
}
.detail .video-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}
.detail .video-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}
.detail .status-complete {
  color: #10b981;
}
.detail .status-ongoing {
  color: #3b82f6;
}
.detail .action-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.detail .action-btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid #4b5563;
  background: transparent;
  color: #fff;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.detail .action-btn:hover {
  background-color: #374151;
}
.detail .tabs {
  width: 100%;
}
.detail .tab-buttons {
  display: flex;
  background-color: #374151;
  border-radius: 0.5rem;
}
.detail .tab-button {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.3s;
}
.detail .tab-button:first-child {
  border-radius: 0.5rem 0 0 0.5rem;
}
.detail .tab-button:last-child {
  border-radius: 0 0.5rem 0.5rem 0;
}
.detail .tab-button.active {
  background-color: #dc2626;
  color: #fff;
}
.detail .tab-content {
  margin-top: 1rem;
  background-color: #111827;
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.detail .tab-content.hidden {
  display: none;
}
.detail .tab-content p {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 0.875rem;
}
.detail .cast-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.detail .cast-item {
  display: flex;
  gap: 0.5rem;
}
.detail .cast-label {
  color: #9ca3af;
  font-size: 0.875rem;
  min-width: 3rem;
}
.detail .cast-value {
  color: #fff;
  font-size: 0.875rem;
}
.detail .sidebar-section {
  background-color: #111827;
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.detail .sidebar-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail .current-episode {
  font-size: 0.75rem;
  color: #9ca3af;
}
.detail .episode-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  max-height: 12rem;
  overflow-y: auto;
}
.detail .episode-item {
  width: 100%;
  padding: 0.5rem;
  font-size: 0.75rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s;
}
.detail .episode-item.active {
  background-color: #dc2626;
  color: #fff;
}
.detail .episode-item:not(.active) {
  background-color: #374151;
  color: #d1d5db;
}
.detail .episode-item:not(.active):hover {
  background-color: #4b5563;
}
.detail .recommended-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.detail .recommended-item {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.3s;
}
.detail .recommended-item:hover {
  background-color: #374151;
}
.detail .recommended-thumb {
  width: 4rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 0.25rem;
  flex-shrink: 0;
}
.detail .recommended-info {
  flex: 1;
  min-width: 0;
}
.detail .recommended-title {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.detail .recommended-episodes {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .detail .episode-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (min-width: 768px) {
  .detail .nav-desktop {
    display: flex;
  }
  .detail .mobile-menu-btn {
    display: none;
  }
  .detail .logo {
    font-size: 1.75rem;
  }
  .detail .main-grid {
    gap: 2rem;
  }
  .detail .content-area {
    gap: 1.5rem;
  }
  .detail .sidebar {
    gap: 1.5rem;
  }
  .detail .video-player {
    min-height: 300px;
  }
  .detail .play-button {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
  }
  .detail .episode-title {
    font-size: 1.125rem;
  }
  .detail .episode-subtitle {
    font-size: 0.875rem;
  }
  .detail .breadcrumb {
    font-size: 0.875rem;
  }
  .detail .video-title {
    font-size: 1.5rem;
  }
  .detail .video-meta {
    font-size: 0.875rem;
    gap: 1rem;
  }
  .detail .action-buttons {
    display: flex;
    gap: 0.75rem;
  }
  .detail .action-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    gap: 0.5rem;
  }
  .detail .tab-button {
    font-size: 0.875rem;
  }
  .detail .tab-content {
    padding: 1rem;
  }
  .detail .tab-content p {
    font-size: 1rem;
  }
  .detail .cast-label, .detail .cast-value {
    font-size: 1rem;
  }
  .detail .sidebar-section {
    padding: 1rem;
  }
  .detail .sidebar-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  .detail .current-episode {
    font-size: 0.875rem;
  }
  .detail .episode-grid {
    grid-template-columns: repeat(6, 1fr);
    max-height: 16rem;
  }
  .detail .recommended-thumb {
    width: 5rem;
    height: 3.75rem;
  }
  .detail .recommended-title {
    font-size: 0.875rem;
  }
  .detail .recommended-episodes {
    font-size: 0.75rem;
  }
}
@media (min-width: 1280px) {
  .detail .main-grid {
    grid-template-columns: 2fr 1fr;
  }
  .detail .sidebar {
    order: 2;
  }
  .detail .content-area {
    order: 1;
  }
  .detail .episode-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (hover: none) {
  .detail .episode-item:not(.active):hover {
    background-color: #374151;
  }
  .detail .episode-item:not(.active):active {
    background-color: #4b5563;
  }
  .detail .recommended-item:hover {
    background-color: transparent;
  }
  .detail .recommended-item:active {
    background-color: #374151;
  }
}

@media (max-width: 768px) {
  .related-section .video-desc {
    font-size: 0.72rem;
    line-height: 1.25;
  }
}
.search-keyword {
  color: #374151;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-keyword em {
  color: #000000;
  font-style: normal;
  font-weight: 600;
  background: rgba(255, 107, 157, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .search-keyword {
    font-size: 0.9rem;
  }
}
.search-count {
  color: #374151;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-count::before {
  content: "📊";
  font-size: 0.9rem;
}

.search-count .count {
  color: #000000;
  font-weight: 600;
  background: rgba(255, 107, 157, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.search-header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.search-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #000000, #6B7280);
  border-radius: 0 2px 2px 0;
}

@media (max-width: 768px) {
  .search-header {
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
  }
}
.search-title {
  font-size: 1.8rem;
  color: #111827;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
}

.search-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #000000, #6B7280);
  border-radius: 1px;
}

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

body {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: linear-gradient(120deg, #0a2e2c 0%, #1a4742 100%);
  color: #fff;
  min-height: 100vh;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 30px;
}

header {
  background: rgba(23, 32, 42, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  border-radius: 0 0 18px 18px;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  padding: 0 1rem;
}
header .logo {
  font-size: 2rem;
  font-weight: bold;
  color: #19e3b1;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px #a7fff3;
}
header .logo img {
  height: 38px;
}
header .nav-desktop {
  display: flex;
  gap: 2.5rem;
}
header .nav-desktop .nav-link {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 18px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
header .nav-desktop .nav-link:hover, header .nav-desktop .nav-link.active {
  background: linear-gradient(135deg, #19e3b1 0%, #00f0ff 100%);
  color: #0a2e2c;
  box-shadow: 0 2px 12px #a7fff3;
}
header .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #19e3b1;
  font-size: 2rem;
  cursor: pointer;
}

.video-card, .sidebar-section, .tab-content, .search-header, .footer-nav a {
  background: rgba(23, 32, 42, 0.4);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.video-card {
  overflow: hidden;
  border: 1.5px solid rgba(25, 227, 177, 0.12);
}
.video-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(25, 227, 177, 0.25);
  background: linear-gradient(120deg, #19e3b1 60%, #a7fff3 100%);
}
.video-card:hover .video-title, .video-card:hover .video-episodes {
  color: #0a2e2c;
}
.video-card img {
  border-radius: 18px 18px 0 0;
  transition: filter 0.3s;
  filter: brightness(0.98) saturate(1.1);
}
.video-card .video-card-content {
  padding: 0.8rem 1rem 1rem 1rem;
}
.video-card .video-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  text-shadow: 0 1px 4px rgba(25, 227, 177, 0.12);
  transition: color 0.3s;
}
.video-card .video-episodes {
  color: #b2dfdb;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.search-container {
  max-width: 32rem;
  margin: 0 auto;
}

.search-form {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.85rem 1.2rem 0.85rem 2.5rem;
  background: rgba(23, 32, 42, 0.4);
  border: 1.5px solid #19e3b1;
  border-radius: 18px;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  transition: border 0.3s, box-shadow 0.3s;
}
.search-input::placeholder {
  color: #b2dfdb;
  opacity: 0.8;
}
.search-input:focus {
  outline: none;
  border-color: #00f0ff;
  box-shadow: 0 0 0 2px #a7fff3;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #19e3b1;
  font-size: 1.2rem;
}

.search-btn {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #19e3b1 0%, #00f0ff 100%);
  color: #0a2e2c;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px #a7fff3;
  transition: background 0.3s, color 0.3s;
}
.search-btn:hover {
  background: linear-gradient(120deg, #19e3b1 60%, #a7fff3 100%);
  color: #fff;
}

.hot-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.hot-tag {
  color: #19e3b1;
  background: rgba(25, 227, 177, 0.08);
  border-radius: 18px;
  padding: 0.3rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.hot-tag:hover {
  background: linear-gradient(135deg, #19e3b1 0%, #00f0ff 100%);
  color: #0a2e2c;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0 1rem 0;
}
.pagination ul {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
.pagination li a, .pagination li .page-link {
  display: block;
  min-width: 2.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 18px;
  background: rgba(23, 32, 42, 0.4);
  color: #19e3b1;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid transparent;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  transition: background 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s;
  text-align: center;
}
.pagination li a:hover, .pagination li a.active, .pagination li .page-link:hover, .pagination li .page-link.active {
  background: linear-gradient(135deg, #19e3b1 0%, #00f0ff 100%);
  color: #0a2e2c;
  border: 1.5px solid #19e3b1;
  box-shadow: 0 4px 16px #a7fff3;
}
.pagination li.page-options .page-link {
  background: linear-gradient(120deg, #19e3b1 60%, #a7fff3 100%);
  color: #0a2e2c;
}

.footer {
  background: linear-gradient(120deg, #0a2e2c 0%, #0fae8d 100%);
  color: #fff;
  padding: 48px 0 28px;
  border-radius: 18px 18px 0 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -4px 32px 0 rgba(25, 227, 177, 0.1);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #19e3b1 0%, #00f0ff 100%);
}

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

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 18px;
  background: rgba(23, 32, 42, 0.4);
  border: 1.5px solid rgba(25, 227, 177, 0.12);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.footer-nav a:hover {
  background: linear-gradient(135deg, #19e3b1 0%, #00f0ff 100%);
  color: #0a2e2c;
  box-shadow: 0 2px 12px #a7fff3;
}

.footer-copyright {
  border-top: 1px solid rgba(25, 227, 177, 0.15);
  padding-top: 18px;
}
.footer-copyright p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin-bottom: 6px;
  font-weight: 400;
}
.footer-copyright p.footer-notice {
  font-size: 0.85rem;
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.video-card:hover {
  animation: float 0.8s ease-in-out;
}

@media (max-width: 900px) {
  .nav-desktop {
    gap: 1.2rem;
  }
  .footer-nav {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .header-content {
    height: auto;
    gap: 0.5rem;
  }
  .nav-desktop {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  .video-card .video-title {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .nav-desktop {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block !important;
    background: linear-gradient(135deg, #19e3b1 0%, #00f0ff 100%);
    color: #0a2e2c;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    padding: 0.3rem 0.7rem;
    margin-left: 0.5rem;
    border: none;
    font-size: 2rem;
    transition: background 0.3s, color 0.3s;
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: rgba(23, 32, 42, 0.7);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    margin-top: 0.7rem;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    position: relative;
    z-index: 99;
  }
  .mobile-nav a {
    color: #19e3b1;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 1.2rem;
    border-radius: 18px;
    transition: background 0.3s, color 0.3s;
  }
  .mobile-nav a:hover, .mobile-nav a.active {
    background: linear-gradient(135deg, #19e3b1 0%, #00f0ff 100%);
    color: #0a2e2c;
  }
  .mobile-nav.show {
    display: flex !important;
  }
}
.pagination-container ul {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
.pagination-container li a, .pagination-container li .page-link {
  display: block;
  min-width: 2.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 18px;
  background: rgba(23, 32, 42, 0.4);
  color: #19e3b1;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid transparent;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  transition: background 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s;
  text-align: center;
}
.pagination-container li a:hover, .pagination-container li a.active, .pagination-container li .page-link:hover, .pagination-container li .page-link.active {
  background: linear-gradient(135deg, #19e3b1 0%, #00f0ff 100%);
  color: #0a2e2c;
  border: 1.5px solid #19e3b1;
  box-shadow: 0 4px 16px #a7fff3;
}
.pagination-container li.page-options .page-link {
  background: linear-gradient(120deg, #19e3b1 60%, #a7fff3 100%);
  color: #0a2e2c;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0 1.5rem 0;
  padding: 0;
  background: transparent;
}

@media (max-width: 768px) {
  .page-options {
    width: 100px !important;
  }
  .pagination-container {
    transform: scale(0.6) !important;
  }
}

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