:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.86);
  --panel-solid: #0f172a;
  --panel-soft: #111827;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --line: rgba(148, 163, 184, 0.2);
  --cyan: #06b6d4;
  --cyan-deep: #0891b2;
  --cyan-soft: rgba(6, 182, 212, 0.18);
  --orange: #fb923c;
  --yellow: #facc15;
  --green: #22c55e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(8, 145, 178, 0.22), transparent 30%),
    radial-gradient(circle at 80% 8%, rgba(59, 130, 246, 0.16), transparent 28%),
    linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.94));
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), #2563eb);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.42);
}

.brand-text {
  font-size: 20px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.mobile-link {
  color: var(--muted-strong);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 8px 14px;
  font-size: 15px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #fff;
  background: var(--cyan-soft);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 3px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

.mobile-link {
  display: block;
  padding: 12px 14px;
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #020617;
}

.hero-track {
  position: relative;
  height: 640px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.75s ease, transform 1.2s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(2, 6, 23, 0.18) 100%),
    linear-gradient(0deg, #020617 0%, transparent 42%);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1180px) / 2));
  bottom: 120px;
  width: min(720px, calc(100% - 48px));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 16px;
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.9), rgba(37, 99, 235, 0.85));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.28);
}

.hero-content h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--muted-strong);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.detail-tags,
.mini-tags,
.tag-cloud,
.hot-keywords,
.quick-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-tags span,
.mini-tags span,
.tag-cloud a,
.hot-keywords button,
.quick-link-row a {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.62);
  color: var(--muted-strong);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), #2563eb);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.38);
}

.btn-ghost {
  color: #fff;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.hero-control-row {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot,
.hero-arrow {
  border: 0;
  color: #fff;
  background: rgba(15, 23, 42, 0.7);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.hero-dot {
  width: 34px;
  height: 6px;
  border-radius: 99px;
}

.hero-dot.active {
  background: var(--cyan);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.search-band,
.channel-section,
.content-section,
.page-hero,
.detail-hero,
.player-section,
.detail-body,
.breadcrumb {
  margin-top: 44px;
}

.search-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(8, 47, 73, 0.56));
  box-shadow: var(--shadow);
}

.search-band h2,
.section-title h2,
.page-hero h1,
.detail-info h1,
.player-section h2,
.detail-body h2 {
  color: #fff;
}

.search-band h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.search-band p,
.section-title p,
.page-hero p,
.detail-one-line,
.movie-card-body p,
.rank-info p,
.site-footer p {
  color: var(--muted);
}

.home-search,
.search-page-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: rgba(2, 6, 23, 0.48);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
}

.home-search input,
.search-page-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 0 14px;
}

.home-search button,
.search-page-form button,
.rank-watch {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), #2563eb);
  font-weight: 800;
  cursor: pointer;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
}

.section-title p {
  margin: 6px 0 0;
}

.section-more {
  color: var(--cyan);
  font-weight: 800;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.channel-card {
  min-height: 134px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.16), transparent 50%),
    rgba(15, 23, 42, 0.78);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.channel-card:hover,
.movie-card:hover,
.feature-card:hover,
.rank-row:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.58);
  box-shadow: 0 24px 60px rgba(6, 182, 212, 0.14);
}

.channel-card strong,
.channel-card span {
  display: block;
}

.channel-card strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.channel-card span {
  color: var(--muted);
}

.movie-grid,
.wide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.wide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.movie-card:hover img,
.feature-card:hover img,
.rank-row:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.badge {
  position: absolute;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.badge-year {
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.68);
}

.badge-region {
  top: 10px;
  left: 10px;
  background: rgba(6, 182, 212, 0.9);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(6, 182, 212, 0.9);
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-card-body {
  padding: 16px;
}

.movie-card-body h3 {
  min-height: 54px;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.45;
}

.movie-card-body h3 a:hover,
.rank-info h2 a:hover {
  color: var(--cyan);
}

.movie-card-body p {
  min-height: 56px;
  margin: 0 0 12px;
  font-size: 14px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
}

.mini-tags {
  margin-top: 12px;
  gap: 6px;
}

.mini-tags span {
  padding: 4px 8px;
  font-size: 12px;
}

.highlight-block {
  margin-top: 52px;
  padding: 36px 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(8, 47, 73, 0.28), rgba(15, 23, 42, 0.2));
}

.feature-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0f172a;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.feature-card.large {
  grid-row: span 2;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.18) 70%);
}

.feature-card span,
.feature-card strong,
.feature-card em {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
}

.feature-card span {
  bottom: 82px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.feature-card strong {
  bottom: 46px;
  font-size: 24px;
}

.feature-card em {
  bottom: 18px;
  color: var(--muted-strong);
  font-style: normal;
  font-size: 14px;
}

.page-main {
  padding-bottom: 52px;
}

.page-hero.small {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.18), transparent 44%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(8, 47, 73, 0.58));
  box-shadow: var(--shadow);
}

.page-hero.small h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.quick-link-row {
  margin-top: 22px;
}

.quick-link-row a:hover,
.tag-cloud a:hover,
.hot-keywords button:hover {
  color: #fff;
  border-color: var(--cyan);
  background: rgba(6, 182, 212, 0.22);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  padding: 9px 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.72);
}

.pagination a.current,
.pagination a:hover {
  color: #fff;
  border-color: var(--cyan);
  background: rgba(6, 182, 212, 0.22);
}

.rank-list {
  display: grid;
  gap: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 60px 82px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.rank-num {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  border-radius: 16px;
  background: rgba(6, 182, 212, 0.16);
  font-size: 20px;
  font-weight: 900;
}

.rank-cover {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 2 / 3;
}

.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.rank-info h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.rank-info p {
  margin: 0 0 8px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--cyan);
}

.detail-main {
  padding-bottom: 52px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 25% 10%, rgba(6, 182, 212, 0.2), transparent 30%),
    rgba(15, 23, 42, 0.76);
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 2 / 3;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.12;
}

.detail-one-line {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 7px 12px;
  color: #fff;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.detail-tags {
  margin-bottom: 26px;
}

.player-section h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.movie-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(6, 182, 212, 0.34);
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at center, rgba(6, 182, 212, 0.24), transparent 30%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.32));
  cursor: pointer;
}

.player-overlay span {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #2563eb);
  box-shadow: 0 0 60px rgba(6, 182, 212, 0.52);
  font-size: 34px;
}

.player-overlay strong {
  font-size: 20px;
}

.movie-player.is-playing .player-overlay,
.player-overlay[hidden] {
  display: none;
}

.detail-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-body article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.72);
}

.detail-body h2 {
  margin: 0 0 14px;
}

.detail-body p {
  margin: 0;
  color: var(--muted-strong);
}

.search-page-form {
  max-width: 760px;
  margin-top: 24px;
}

.hot-keywords {
  margin-top: 16px;
}

.hot-keywords button {
  cursor: pointer;
}

.search-results:empty {
  display: block;
  min-height: 140px;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.42);
}

.sitemap-list {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.7);
}

.sitemap-list ul {
  columns: 4 220px;
  padding-left: 18px;
  margin: 0;
}

.sitemap-list li {
  break-inside: avoid;
  margin: 0 0 8px;
  color: var(--muted-strong);
}

.sitemap-list a:hover {
  color: var(--cyan);
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 42px 0;
}

.footer-logo {
  margin-bottom: 12px;
  font-size: 20px;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
}

.footer-links a:hover,
.tag-cloud a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 18px;
  color: #64748b;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: grid;
  }

  .movie-grid,
  .wide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-band,
  .detail-hero,
  .detail-body,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    width: min(320px, 100%);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero-carousel,
  .hero-track {
    min-height: 590px;
    height: 590px;
  }

  .hero-content {
    left: 20px;
    bottom: 110px;
    width: calc(100% - 40px);
  }

  .hero-control-row {
    bottom: 24px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .search-band,
  .page-hero.small,
  .detail-hero,
  .detail-body article {
    padding: 22px;
  }

  .home-search,
  .search-page-form {
    border-radius: 18px;
    flex-direction: column;
  }

  .home-search input,
  .search-page-form input {
    min-height: 42px;
  }

  .movie-grid,
  .wide-grid,
  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .movie-card-body {
    padding: 12px;
  }

  .movie-card-body h3 {
    min-height: auto;
    font-size: 16px;
  }

  .movie-card-body p {
    min-height: auto;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .feature-card.large {
    grid-row: span 1;
  }

  .rank-row {
    grid-template-columns: 44px 68px 1fr;
  }

  .rank-watch {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .brand-text {
    font-size: 18px;
  }

  .movie-grid,
  .wide-grid {
    grid-template-columns: 1fr;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }

  .hero-tags span:nth-child(n + 4) {
    display: none;
  }

  .detail-info h1 {
    font-size: 30px;
  }
}
