:root {
  --cyan: #0891b2;
  --cyan-bright: #06b6d4;
  --blue: #2563eb;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --card: #ffffff;
  --dark: #020617;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fafc 0%, #eef7fb 42%, #f8fafc 100%);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Microsoft YaHei",
    sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan-bright), var(--blue));
  box-shadow: 0 16px 30px rgba(8, 145, 178, 0.28);
}

.brand-text strong {
  display: block;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #0891b2, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  color: #334155;
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link-active {
  color: var(--cyan);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 220px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: all 0.2s ease;
}

.dropdown-panel a {
  padding: 10px 12px;
  color: #334155;
  border-radius: 12px;
}

.dropdown-panel a:hover {
  color: var(--cyan);
  background: #ecfeff;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  background: #ecfeff;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cyan);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-weight: 650;
  color: #334155;
}

.hero-carousel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0891b2, #2563eb);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 90px 20px 120px;
  opacity: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.94),
      rgba(8, 145, 178, 0.58),
      rgba(37, 99, 235, 0.26)
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(34, 211, 238, 0.34),
      transparent 34%
    ),
    linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.32));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  color: #0e7490;
  background: #cffafe;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  color: #cffafe;
  background: rgba(8, 145, 178, 0.45);
  border: 1px solid rgba(207, 250, 254, 0.32);
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  max-width: 820px;
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.hero-content h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #cffafe;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.1;
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #e0f2fe;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.65;
}

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

.hero-tags span,
.tag-row span,
.pill-link {
  display: inline-flex;
  padding: 7px 10px;
  color: #0e7490;
  background: #ecfeff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

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

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

.primary-btn,
.watch-button,
.rank-action {
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 32px rgba(8, 145, 178, 0.24);
}

.primary-btn:hover,
.ghost-btn:hover,
.watch-button:hover,
.rank-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(8, 145, 178, 0.32);
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
}

.primary-btn.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 5;
  width: min(1180px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.hero-controls button {
  border: 0;
}

.hero-controls > button {
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(8px);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.feature-strip {
  width: min(1180px, calc(100% - 40px));
  margin: -44px auto 40px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-item {
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(8, 145, 178, 0.92),
    rgba(37, 99, 235, 0.92)
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 19px;
}

.feature-item span {
  color: #cffafe;
  font-size: 14px;
}

.section-block {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 42px;
  padding: 50px 0;
}

.section-white {
  width: min(1200px, calc(100% - 40px));
  padding: 42px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 32px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

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

.section-head h2,
.page-hero h1,
.detail-main h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #164e63, #1d4ed8);
}

.poster-link img,
.category-cover img,
.rank-thumb img,
.detail-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-link img {
  transition: transform 0.45s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.08);
}

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.66));
}

.poster-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(8, 145, 178, 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(8, 145, 178, 0.32);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #facc15, #ea580c);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
}

.movie-meta-line span:not(:last-child)::after {
  content: "·";
  margin-left: 7px;
  color: #94a3b8;
}

.movie-card h3,
.rank-info h2 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

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

.movie-card p,
.category-card p,
.rank-info p,
.detail-main p,
.footer-inner p,
.page-hero p {
  color: var(--muted);
  line-height: 1.75;
}

.movie-card p {
  min-height: 48px;
  margin: 0 0 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.movie-card-compact .movie-card-body {
  padding: 14px;
}

.movie-card-compact h3 {
  font-size: 16px;
}

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

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

.category-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.94);
  border-radius: 26px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.category-cover {
  min-height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, #0e7490, #2563eb);
  border-radius: 20px;
}

.category-card h2 {
  margin: 6px 0 8px;
  font-size: 24px;
}

.category-card h2 a:hover {
  color: var(--cyan);
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.mini-links a {
  padding: 7px 10px;
  color: #0f172a;
  background: #f1f5f9;
  border-radius: 99px;
  font-size: 12px;
}

.mini-links a:hover {
  color: var(--cyan);
  background: #ecfeff;
}

.page-hero {
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 80px 20px;
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(8, 145, 178, 0.7)),
    var(--hero-image, linear-gradient(135deg, #0891b2, #2563eb));
  background-size: cover;
  background-position: center;
}

.slim-hero {
  min-height: 300px;
  background-image: linear-gradient(135deg, #0891b2, #2563eb);
}

.page-hero > div {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.page-hero p {
  max-width: 850px;
  margin: 18px 0 0;
  color: #e0f2fe;
  font-size: 18px;
}

.pill-row {
  margin-top: 28px;
}

.pill-link:hover {
  color: #ffffff;
  background: var(--cyan);
}

.search-panel {
  margin-bottom: 28px;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.search-label {
  display: block;
  margin-bottom: 10px;
  color: #0f172a;
  font-weight: 800;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.search-box input {
  min-height: 48px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  outline: none;
  background: #ffffff;
}

.search-box input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.search-box button {
  padding: 0 18px;
  border: 0;
  color: #ffffff;
  background: var(--cyan);
  border-radius: 16px;
  font-weight: 800;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 64px 86px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.rank-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 999px;
  font-weight: 900;
}

.rank-thumb {
  width: 86px;
  height: 120px;
  overflow: hidden;
  background: linear-gradient(135deg, #164e63, #1d4ed8);
  border-radius: 16px;
}

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

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

.detail-wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 34px auto 50px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--cyan);
  font-weight: 750;
}

.player-shell {
  margin-bottom: 30px;
  padding: 18px;
  background: #020617;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 22px;
}

.video-frame video {
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: contain;
}

.video-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.18),
    rgba(2, 6, 23, 0.82)
  );
  border: 0;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.video-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.big-play {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 999px;
  box-shadow: 0 20px 42px rgba(8, 145, 178, 0.35);
  font-size: 34px;
}

.video-cover strong {
  max-width: min(760px, 80%);
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.1;
}

.video-cover em {
  font-style: normal;
  color: #cffafe;
  font-weight: 800;
}

.watch-button {
  margin-top: 16px;
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.detail-main,
.detail-side,
.info-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.detail-main {
  padding: 34px;
}

.detail-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.lead-text {
  margin: 0 0 20px;
  font-size: 19px;
}

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

.detail-main h2 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.detail-main p {
  font-size: 16px;
}

.detail-side {
  overflow: hidden;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #164e63, #1d4ed8);
}

.info-card {
  margin-top: 18px;
  padding: 22px;
}

.info-card dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.info-card div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.info-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-card dt {
  color: var(--muted);
}

.info-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.related-section {
  margin-top: 34px;
}

.site-footer {
  margin-top: 60px;
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.footer-inner h2 {
  margin: 0 0 12px;
  color: #67e8f9;
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 8px 10px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 13px;
}

.footer-links a:hover {
  color: #ffffff;
  background: rgba(6, 182, 212, 0.32);
}

.footer-bottom {
  padding: 22px 20px;
  color: #64748b;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 14px;
}

[data-card].is-hidden {
  display: none;
}

@media (max-width: 1080px) {
  .movie-grid,
  .movie-grid-large,
  .ranking-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .detail-side {
    max-width: 360px;
  }
}

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

  .mobile-toggle {
    display: block;
  }

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

  .brand-text strong {
    font-size: 19px;
  }

  .hero-carousel {
    min-height: 620px;
  }

  .hero-slide {
    padding-top: 70px;
  }

  .hero-controls > button {
    width: 40px;
    height: 40px;
  }

  .feature-strip,
  .category-grid,
  .category-grid-wide,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .section-white {
    padding: 24px;
    border-radius: 24px;
  }

  .section-head,
  .detail-title-row {
    align-items: start;
    flex-direction: column;
  }

  .rank-row {
    grid-template-columns: 46px 70px minmax(0, 1fr);
  }

  .rank-action {
    grid-column: 1 / -1;
  }

  .rank-thumb {
    width: 70px;
    height: 98px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding: 0 14px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .brand-text small {
    display: none;
  }

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

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content h2 {
    font-size: 26px;
  }

  .feature-strip,
  .section-block,
  .section-white,
  .detail-wrap {
    width: calc(100% - 24px);
  }

  .feature-strip,
  .section-block {
    margin-bottom: 26px;
  }

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

  .category-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }

  .category-cover {
    min-height: 150px;
  }

  .category-card h2 {
    font-size: 20px;
  }

  .category-card p,
  .mini-links {
    display: none;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .player-shell {
    padding: 10px;
    border-radius: 22px;
  }

  .video-frame {
    border-radius: 16px;
  }

  .detail-main {
    padding: 22px;
  }

  .big-play {
    width: 66px;
    height: 66px;
    font-size: 27px;
  }
}
