* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #111827;
  background: #f9fafb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.site-nav-wrap {
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #14b8a6, #0891b2);
  box-shadow: 0 10px 22px rgba(20, 184, 166, 0.28);
}

.brand-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #0f766e, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 650;
  color: #374151;
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #0f766e;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b8a6, #0891b2);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #0f172a;
}

.mobile-nav {
  display: none;
  padding: 8px 24px 18px;
  border-top: 1px solid #eef2f7;
  background: #ffffff;
}

.mobile-nav.is-open {
  display: grid;
  gap: 6px;
}

.mobile-nav-link {
  padding: 12px 8px;
  border-radius: 10px;
  color: #374151;
  font-weight: 650;
}

.mobile-nav-link:hover {
  background: #ecfeff;
  color: #0f766e;
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #134e4a, #155e75);
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 45%, rgba(20, 184, 166, 0.48), transparent 35%), linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.48), rgba(15, 23, 42, 0.16));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  top: 50%;
  width: min(680px, calc(100vw - 48px));
  transform: translateY(-50%);
}

.hero-kicker,
.section-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(20, 184, 166, 0.9);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 620px;
  margin: 0 0 24px;
  color: #e5e7eb;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.82);
  color: #f8fafc;
  font-size: 14px;
  font-weight: 700;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.ghost-button,
.page-actions a,
.home-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.home-search button {
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488, #0891b2);
  box-shadow: 0 14px 28px rgba(8, 145, 178, 0.26);
}

.ghost-button,
.page-actions a {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover,
.page-actions a:hover,
.home-search button:hover {
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: min(980px, calc(100vw - 48px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.hero-dot {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: #d1d5db;
  background: rgba(15, 23, 42, 0.36);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.hero-dot span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 10px;
  font-weight: 700;
}

.hero-dot.is-active {
  color: #ffffff;
  border-color: rgba(45, 212, 191, 0.7);
  background: rgba(13, 148, 136, 0.7);
}

.search-band {
  background: #ffffff;
  border-bottom: 1px solid #eef2f7;
}

.search-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 26px;
  align-items: center;
}

.search-inner h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.search-inner p {
  margin: 0;
  color: #6b7280;
}

.home-search {
  display: flex;
  gap: 10px;
}

.home-search input,
.library-search {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.home-search input:focus,
.library-search:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.content-section,
.library-panel,
.ranking-page-list,
.category-overview-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

.no-top-pad {
  padding-top: 0;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-kicker {
  margin-bottom: 10px;
  color: #0f766e;
  background: #ccfbf1;
}

.section-more {
  color: #0f766e;
  font-weight: 800;
  white-space: nowrap;
}

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.13);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #0f766e, #155e75);
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.06);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.78));
  opacity: 0.82;
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: #0d9488;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.78);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.type-badge,
.year-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.type-badge {
  left: 10px;
  background: rgba(15, 23, 42, 0.75);
}

.year-badge {
  right: 10px;
  background: rgba(13, 148, 136, 0.92);
}

.rank-badge {
  left: 10px;
  top: 44px;
  background: rgba(245, 158, 11, 0.95);
}

.card-body {
  display: block;
  padding: 16px;
}

.card-body strong {
  display: -webkit-box;
  min-height: 46px;
  overflow: hidden;
  color: #111827;
  font-size: 16px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .card-body strong {
  color: #0f766e;
}

.card-line {
  display: -webkit-box;
  min-height: 42px;
  margin-top: 8px;
  overflow: hidden;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  color: #6b7280;
  font-size: 12px;
}

.card-meta span:last-child {
  color: #9ca3af;
  text-align: right;
}

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

.compact-card .card-body strong {
  min-height: 40px;
  font-size: 14px;
}

.compact-card .card-line {
  display: none;
}

.category-entry-section {
  max-width: none;
  background: linear-gradient(135deg, #f0fdfa, #f8fafc);
}

.category-entry-section > .section-head,
.category-grid {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.category-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 20px;
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.88));
}

.category-card-text {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.category-card-text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.category-card-text em {
  display: -webkit-box;
  overflow: hidden;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.45;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ranking-preview {
  padding: 68px 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #134e4a 52%, #155e75);
}

.ranking-preview .section-head,
.ranking-list-preview {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.light-head .section-kicker {
  color: #ffffff;
  background: rgba(20, 184, 166, 0.92);
}

.ranking-list-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ranking-list-preview a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.ranking-list-preview span {
  color: #5eead4;
  font-size: 20px;
  font-weight: 900;
}

.ranking-list-preview strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-list-preview em {
  color: #cbd5e1;
  font-style: normal;
  font-size: 13px;
}

.page-shell,
.detail-shell {
  min-height: 70vh;
}

.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 42px;
}

.small-hero,
.category-hero,
.rank-hero {
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.45), transparent 32%), linear-gradient(135deg, #0f172a, #134e4a 58%, #155e75);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.75;
}

.page-actions {
  margin-top: 26px;
}

.category-overview-list {
  display: grid;
  gap: 24px;
}

.category-overview-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.category-overview-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-overview-head h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.category-overview-head p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
}

.category-overview-head a {
  flex: 0 0 auto;
  color: #0f766e;
  font-weight: 800;
}

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

.library-tools {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(14px);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #ccfbf1;
  border-radius: 999px;
  color: #0f766e;
  background: #f0fdfa;
  cursor: pointer;
  font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #ffffff;
  background: #0d9488;
}

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

.ranking-page-list {
  display: grid;
  gap: 12px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 72px 78px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row:hover {
  transform: translateX(4px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.11);
}

.ranking-number {
  color: #0f766e;
  font-size: 22px;
  font-weight: 900;
}

.ranking-row img {
  width: 78px;
  height: 104px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-info strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.ranking-info em,
.ranking-meta {
  color: #6b7280;
  font-style: normal;
  line-height: 1.6;
}

.detail-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: #6b7280;
  font-size: 14px;
}

.breadcrumb a {
  color: #0f766e;
  font-weight: 800;
}

.watch-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: stretch;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(20, 184, 166, 0.24), rgba(0, 0, 0, 0.52));
  cursor: pointer;
}

.player-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.player-play-button {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d9488, #0891b2);
  box-shadow: 0 18px 38px rgba(8, 145, 178, 0.3);
  font-size: 30px;
}

.detail-side {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.detail-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-side-meta {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.detail-side-meta span {
  padding: 9px 12px;
  border-radius: 12px;
  color: #0f766e;
  background: #ccfbf1;
  font-weight: 800;
}

.detail-main-card {
  margin-top: 26px;
  padding: 32px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.detail-main-card h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 900px;
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 19px;
  line-height: 1.75;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.detail-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #0f766e;
  background: #ecfeff;
  font-size: 13px;
  font-weight: 800;
}

.detail-grid-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.detail-grid-text h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.detail-grid-text p {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.9;
}

.related-section {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.site-footer {
  color: #cbd5e1;
  background: #111827;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.footer-logo strong {
  color: #ffffff;
  font-size: 20px;
}

.footer-brand p {
  max-width: 520px;
  margin: 16px 0 0;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-group h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 16px;
}

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

.footer-links a:hover {
  color: #5eead4;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

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

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

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

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

  .detail-side {
    display: none;
  }
}

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

  .menu-button {
    display: inline-flex;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-dots {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }

  .hero-dot {
    min-height: 36px;
    font-size: 0;
  }

  .hero-dot::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
  }

  .search-inner,
  .library-tools,
  .footer-inner,
  .detail-grid-text {
    grid-template-columns: 1fr;
  }

  .filter-row {
    justify-content: flex-start;
  }

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

  .category-grid,
  .ranking-list-preview {
    grid-template-columns: 1fr;
  }

  .ranking-row {
    grid-template-columns: 52px 64px 1fr;
  }

  .ranking-row img {
    width: 64px;
    height: 86px;
  }

  .ranking-meta {
    grid-column: 3;
  }
}

@media (max-width: 560px) {
  .site-nav-wrap {
    padding: 0 16px;
  }

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

  .hero-carousel {
    height: 520px;
  }

  .hero-content {
    left: 18px;
    width: calc(100vw - 36px);
  }

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

  .hero-meta {
    gap: 8px;
  }

  .content-section,
  .library-panel,
  .ranking-page-list,
  .category-overview-list,
  .detail-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-head,
  .category-overview-head {
    display: block;
  }

  .section-more,
  .category-overview-head a {
    display: inline-block;
    margin-top: 12px;
  }

  .home-search {
    display: grid;
  }

  .movie-grid {
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .card-line {
    display: none;
  }

  .detail-main-card {
    padding: 22px;
  }
}
