* {
  box-sizing: border-box;
}

:root {
  --bg: #0a0e1a;
  --bg-soft: #131827;
  --bg-panel: rgba(15, 23, 42, 0.78);
  --primary: #38bdf8;
  --primary-deep: #0284c7;
  --primary-dark: #0c4a6e;
  --text: #ffffff;
  --muted: #cbd5e1;
  --subtle: #94a3b8;
  --line: rgba(12, 74, 110, 0.45);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --glow: 0 0 28px rgba(56, 189, 248, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 34rem),
    linear-gradient(180deg, #08101f 0%, var(--bg) 42%, #060913 100%);
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 26, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: var(--glow);
  font-size: 14px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  padding: 9px 14px;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
  background: rgba(15, 23, 42, 0.72);
}

.header-search {
  position: relative;
  width: 260px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--subtle);
}

.header-search input,
.mobile-search input,
.inline-filter input,
.search-page-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.64);
  color: #fff;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
  height: 40px;
  padding: 0 16px 0 40px;
}

.header-search input:focus,
.mobile-search input:focus,
.inline-filter input:focus,
.search-page-form input:focus {
  border-color: var(--primary-deep);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.14);
  background: rgba(15, 23, 42, 0.88);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px;
  background: rgba(10, 14, 26, 0.96);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-search {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-search input {
  height: 42px;
  padding: 0 14px;
}

.mobile-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: var(--primary-deep);
}

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.48);
}

.hero-slider {
  position: relative;
  height: 82vh;
  min-height: 560px;
  overflow: hidden;
  background: #060913;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade,
.detail-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 26, 0.96) 0%, rgba(10, 14, 26, 0.72) 42%, rgba(10, 14, 26, 0.28) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(10, 14, 26, 0.25) 56%, rgba(10, 14, 26, 0.15) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 84px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(14, 165, 233, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.hero-copy h1,
.hero-copy > h2:first-of-type {
  margin: 18px 0 6px;
  font-size: clamp(36px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy h2:last-of-type {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
  color: #e0f2fe;
}

.hero-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  margin: 0 0 22px;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-row span,
.detail-tags a {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(30, 41, 59, 0.72);
  color: var(--muted);
  font-size: 13px;
}

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

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

.primary-btn {
  background: var(--primary-deep);
  color: #fff;
  box-shadow: var(--glow);
}

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

.primary-btn:hover {
  background: #0369a1;
}

.ghost-btn {
  border: 1px solid var(--line);
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 14, 26, 0.58);
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(3, 105, 161, 0.88);
  border-color: rgba(56, 189, 248, 0.5);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.78);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--primary);
}

.content-block {
  padding: 56px 0 0;
}

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

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--subtle);
}

.section-heading.with-link a {
  color: var(--primary);
  font-weight: 700;
}

.section-icon {
  color: var(--primary);
  font-size: 26px;
}

.featured-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.featured-card,
.poster-card,
.rank-row,
.category-card-large,
.text-card,
.player-card,
.side-card,
.category-tile {
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid var(--line);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.18);
}

.featured-card,
.poster-card,
.rank-row,
.category-card-large,
.category-tile {
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.featured-card:hover,
.poster-card:hover,
.rank-row:hover,
.category-card-large:hover,
.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.58);
  box-shadow: var(--glow);
}

.featured-link {
  display: grid;
  grid-template-columns: minmax(260px, 42%) 1fr;
  min-height: 260px;
}

.featured-cover,
.poster-cover {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

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

.featured-card:hover img,
.poster-card:hover img {
  transform: scale(1.08);
}

.featured-cover::after,
.poster-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 14, 26, 0.86), rgba(10, 14, 26, 0.06));
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) scale(0.86);
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(2, 132, 199, 0.9);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
}

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

.corner-badge,
.type-badge,
.rank-badge {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  padding: 5px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(2, 132, 199, 0.9);
  backdrop-filter: blur(8px);
}

.corner-badge,
.type-badge {
  right: 12px;
  top: 12px;
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 32px;
  text-align: center;
}

.featured-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-body h3,
.poster-info h3,
.rank-content h3,
.side-card h2 {
  margin: 0;
  color: #fff;
}

.featured-body h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.featured-body p {
  margin: 14px 0 20px;
  color: var(--muted);
  line-height: 1.75;
}

.meta-row,
.poster-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--subtle);
  font-size: 14px;
}

.featured-body .tag-row {
  margin-top: 18px;
}

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

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

.poster-card {
  border-radius: 18px;
}

.poster-cover {
  aspect-ratio: 3 / 4;
}

.poster-info {
  padding: 14px;
}

.poster-info h3 {
  font-size: 16px;
  line-height: 1.42;
  min-height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poster-meta {
  justify-content: space-between;
  margin-top: 10px;
  color: #64748b;
  font-size: 12px;
}

.poster-info p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-panel {
  position: relative;
}

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

.category-tile {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  justify-content: space-between;
  padding: 22px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 60%),
    rgba(15, 23, 42, 0.52);
}

.category-tile span {
  font-size: 22px;
  font-weight: 800;
}

.category-tile small {
  color: var(--subtle);
  line-height: 1.6;
}

.rank-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

.rank-row {
  border-radius: 18px;
}

.rank-row a {
  display: grid;
  grid-template-columns: 54px 86px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
}

.rank-num {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}

.rank-row img {
  width: 86px;
  height: 112px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--bg-soft);
}

.rank-content h3 {
  font-size: 18px;
}

.rank-content p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.6;
}

.rank-action {
  color: var(--primary);
  font-weight: 800;
}

.page-main {
  padding-top: 26px;
}

.page-hero {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.2), transparent 30rem),
    rgba(15, 23, 42, 0.52);
  box-shadow: var(--shadow);
}

.small-hero {
  padding: 42px;
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.page-hero p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.category-large-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 36px;
}

.category-card-large {
  border-radius: 24px;
}

.category-card-large a {
  display: block;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: var(--bg-soft);
}

.category-thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.category-large-body {
  padding: 20px;
}

.category-large-body h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.category-large-body p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.category-large-body span {
  color: var(--primary);
  font-weight: 800;
}

.category-hero {
  padding: 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.inline-filter {
  min-width: min(360px, 100%);
}

.inline-filter input {
  height: 46px;
  padding: 0 18px;
}

.rank-filter {
  margin-bottom: 24px;
  margin-left: auto;
}

.search-page-form {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  max-width: 680px;
}

.search-page-form input {
  height: 52px;
  padding: 0 18px;
}

.search-page-form button {
  min-width: 110px;
  font-weight: 800;
}

.search-status {
  color: var(--muted);
  margin-bottom: 22px;
  min-height: 24px;
}

.detail-main {
  padding-top: 0;
}

.detail-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #060913;
}

.detail-hero > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--subtle);
  font-size: 14px;
  margin-bottom: 42px;
}

.breadcrumb a {
  color: #e0f2fe;
}

.detail-title-row {
  max-width: 840px;
}

.detail-title-row h1 {
  margin: 18px 0 16px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
}

.detail-title-row p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.detail-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  margin-top: -70px;
  position: relative;
  z-index: 4;
}

.detail-content {
  min-width: 0;
}

.player-card,
.text-card,
.side-card {
  border-radius: 24px;
  margin-bottom: 22px;
}

.player-card {
  overflow: hidden;
}

.player-shell {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle at center, rgba(2, 132, 199, 0.24), rgba(0, 0, 0, 0.46));
}

.play-layer.is-hidden {
  display: none;
}

.play-layer span {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.92);
  box-shadow: var(--glow);
  font-size: 34px;
  padding-left: 4px;
}

.text-card {
  padding: 28px;
}

.text-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.text-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.detail-tags a {
  transition: color 0.2s ease, background 0.2s ease;
}

.detail-tags a:hover {
  color: #fff;
  background: var(--primary-deep);
}

.detail-side {
  position: relative;
}

.side-card {
  position: sticky;
  top: 96px;
  padding: 18px;
}

.side-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  background: var(--bg-soft);
  margin-bottom: 18px;
}

.side-card h2 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.side-card dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.side-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(12, 74, 110, 0.28);
}

.side-card dt {
  color: var(--subtle);
}

.side-card dd {
  margin: 0;
  color: #e0f2fe;
  text-align: right;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: rgba(6, 9, 19, 0.72);
}

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

.footer-logo {
  margin-bottom: 16px;
}

.footer-brand p,
.site-footer a,
.footer-bottom {
  color: var(--subtle);
}

.footer-brand p {
  max-width: 520px;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(12, 74, 110, 0.28);
  text-align: center;
  padding: 18px;
  font-size: 14px;
}

.movie-card.is-hidden {
  display: none;
}

@media (max-width: 1120px) {
  .poster-grid,
  .compact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .home-rank {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-inner {
    height: 66px;
  }

  .hero-slider {
    height: 76vh;
    min-height: 520px;
  }

  .hero-content {
    padding-bottom: 74px;
  }

  .hero-arrow {
    display: none;
  }

  .featured-link {
    grid-template-columns: 1fr;
  }

  .featured-cover {
    aspect-ratio: 16 / 9;
  }

  .poster-grid,
  .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .category-hero,
  .section-heading {
    display: block;
  }

  .inline-filter {
    margin-top: 22px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-side {
    order: -1;
  }

  .side-card {
    position: static;
  }

  .side-card img {
    max-width: 260px;
  }

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

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

  .site-logo {
    font-size: 18px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .hero-slider {
    height: 72vh;
    min-height: 500px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

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

  .poster-info h3 {
    font-size: 14px;
  }

  .category-grid,
  .category-large-grid {
    grid-template-columns: 1fr;
  }

  .rank-row a {
    grid-template-columns: 42px 70px 1fr;
    gap: 12px;
  }

  .rank-row img {
    width: 70px;
    height: 94px;
  }

  .rank-action {
    display: none;
  }

  .rank-content p {
    display: none;
  }

  .small-hero,
  .category-hero,
  .text-card {
    padding: 24px;
  }

  .search-page-form {
    display: grid;
  }

  .detail-hero-content {
    padding-top: 92px;
  }

  .detail-title-row p {
    font-size: 17px;
  }

  .play-layer span {
    width: 72px;
    height: 72px;
  }
}
