* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --blue-900: #123c8c;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-100: #dbeafe;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
  --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--gray-50);
  color: var(--slate-900);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, #2563eb, #1d4ed8 45%, #1e40af);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.25);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08);
}

.brand-text strong,
.footer-brand {
  display: block;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--blue-100);
  font-size: 12px;
}

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

.nav-link,
.nav-dropdown > button {
  border: 0;
  color: #eff6ff;
  background: transparent;
  cursor: pointer;
  padding: 8px 2px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown > button:hover {
  color: #bfdbfe;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: -16px;
  width: 180px;
  padding: 10px;
  border-radius: 16px;
  background: var(--white);
  color: var(--slate-900);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--slate-700);
}

.dropdown-panel a:hover {
  background: #eff6ff;
  color: var(--blue-700);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.header-search input,
.mobile-panel input,
.filter-bar input {
  border: 1px solid rgba(255, 255, 255, 0.22);
  outline: none;
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  min-width: 230px;
}

.header-search input::placeholder,
.mobile-panel input::placeholder {
  color: #bfdbfe;
}

.header-search button,
.mobile-panel button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--blue-800);
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  background: rgba(30, 64, 175, 0.98);
}

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

.mobile-panel nav,
.mobile-panel form {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 32%, rgba(37, 99, 235, 0.35), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.72) 48%, rgba(15, 23, 42, 0.32)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero-summary {
  max-width: 670px;
  margin: 22px 0 0;
  color: #e0f2fe;
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.tag-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-tags span,
.tag-line span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tag-line span {
  color: var(--blue-700);
  background: #eff6ff;
}

.genre-line span {
  color: #6d28d9;
  background: #f5f3ff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  min-height: 46px;
  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: var(--white);
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.25);
}

.btn.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.btn.light {
  color: var(--blue-700);
  background: var(--white);
}

.btn.ghost-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn.wide {
  width: 100%;
}

.hero-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.hero-panel div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
}

.hero-panel strong {
  font-size: 36px;
  line-height: 1;
}

.hero-panel span {
  color: #dbeafe;
  font-weight: 700;
}

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

.hero-dots button {
  width: 32px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dots button.is-active {
  background: var(--white);
}

.site-section {
  padding: 56px 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.03em;
}

.section-heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--slate-600);
  line-height: 1.7;
}

.section-link {
  flex: 0 0 auto;
  color: var(--blue-700);
  font-weight: 800;
}

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

.category-tile,
.category-overview-card,
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, #2563eb, #1e40af);
  box-shadow: var(--soft-shadow);
}

.category-tile {
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-tile::after,
.category-overview-card::after,
.page-hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.category-tile span {
  color: #dbeafe;
  font-size: 13px;
  font-weight: 800;
}

.category-tile strong {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.2;
}

.category-tile em {
  margin-top: 10px;
  color: #e0f2fe;
  font-style: normal;
  line-height: 1.6;
}

.from-indigo {
  background: linear-gradient(135deg, #4f46e5, #1d4ed8);
}

.from-slate {
  background: linear-gradient(135deg, #0f172a, #334155);
}

.from-rose {
  background: linear-gradient(135deg, #e11d48, #9f1239);
}

.from-violet {
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
}

.from-emerald {
  background: linear-gradient(135deg, #059669, #065f46);
}

.from-cyan {
  background: linear-gradient(135deg, #0891b2, #155e75);
}

.from-amber {
  background: linear-gradient(135deg, #d97706, #92400e);
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--slate-100);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.score-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  font-weight: 900;
}

.card-body {
  padding: 16px;
}

.card-body h2 {
  margin: 0;
  min-height: 48px;
  font-size: 17px;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body h2 a:hover {
  color: var(--blue-700);
}

.card-meta,
.card-desc {
  margin: 8px 0 0;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.6;
}

.card-desc {
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-card .card-body h2 {
  min-height: 42px;
  font-size: 15px;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.rank-list,
.ranking-list,
.mini-card-column {
  display: grid;
  gap: 12px;
}

.rank-item,
.ranking-main,
.mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item {
  padding: 10px;
}

.rank-item:hover,
.ranking-main:hover,
.mini-card:hover {
  transform: translateX(4px);
  box-shadow: var(--soft-shadow);
}

.rank-num,
.ranking-number {
  display: grid;
  place-items: center;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, #2563eb, #1e40af);
  font-weight: 900;
}

.rank-item img {
  width: 58px;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-info,
.ranking-text,
.mini-card span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.rank-info strong,
.ranking-text strong,
.mini-card strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-info em,
.ranking-text em,
.ranking-text small,
.mini-card em {
  color: var(--slate-600);
  font-size: 13px;
  font-style: normal;
}

.rank-item b,
.ranking-main b {
  margin-left: auto;
  color: var(--blue-700);
  font-size: 20px;
}

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

.page-hero {
  border-radius: 0;
  padding: 74px 0;
}

.page-hero .site-container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #e0f2fe;
  font-size: 18px;
  line-height: 1.8;
}

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

.category-overview-card {
  padding: 26px;
}

.category-overview-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 20px;
}

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

.category-overview-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 8px 0 0;
  color: #e0f2fe;
  line-height: 1.7;
}

.mini-card-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  padding: 10px;
  color: var(--slate-900);
}

.mini-card img {
  width: 64px;
  height: 86px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
  padding: 16px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.filter-bar input {
  min-width: min(420px, 100%);
  color: var(--slate-900);
  background: var(--gray-50);
  border-color: #dbe3ef;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pills button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--slate-700);
  background: var(--slate-100);
  cursor: pointer;
  font-weight: 800;
}

.filter-pills button.is-active {
  color: var(--white);
  background: var(--blue-700);
}

.empty-state {
  margin: 40px 0 0;
  padding: 28px;
  border-radius: 20px;
  text-align: center;
  background: var(--white);
  color: var(--slate-600);
  box-shadow: var(--soft-shadow);
}

.ranking-main {
  padding: 12px;
}

.ranking-main img {
  width: 72px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
}

.ranking-text em {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.breadcrumb {
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--slate-600);
  font-size: 14px;
}

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

.player-section {
  padding: 26px 0 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.42), transparent 32%),
    linear-gradient(135deg, #020617, #0f172a 58%, #1e3a8a);
}

.player-heading {
  max-width: 860px;
  margin-bottom: 22px;
}

.player-heading h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.player-heading p:not(.eyebrow) {
  color: #dbeafe;
  line-height: 1.8;
  font-size: 18px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
}

.player-box video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  background:
    linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.18)),
    radial-gradient(circle at center, rgba(37, 99, 235, 0.24), transparent 38%);
}

.player-overlay[hidden] {
  display: none;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.9);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
  font-size: 34px;
  padding-left: 5px;
}

.player-overlay strong {
  font-size: 20px;
  max-width: 80%;
  text-align: center;
}

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

.detail-main,
.detail-side,
.content-block,
.detail-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.detail-main {
  display: grid;
  gap: 22px;
  background: transparent;
  box-shadow: none;
}

.detail-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
}

.detail-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-info h2,
.content-block h2,
.detail-side h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.detail-info dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 0;
}

.detail-info dt {
  color: var(--slate-600);
  font-weight: 800;
}

.detail-info dd {
  margin: 0;
}

.content-block,
.detail-side {
  padding: 24px;
}

.content-block p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.95;
  font-size: 17px;
}

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

.detail-side {
  position: sticky;
  top: 94px;
}

.mini-card-column {
  margin-bottom: 18px;
}

.site-footer {
  margin-top: 30px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 36px;
  padding: 44px 0;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  color: #cbd5e1;
  line-height: 1.8;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: #dbeafe;
}

.footer-links {
  columns: 2;
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

[hidden],
.is-filtered-out {
  display: none !important;
}

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

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

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

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

  .menu-button {
    display: block;
  }

  .hero-content,
  .split-section,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

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

  .mini-card-row,
  .related-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-side {
    position: static;
  }

  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-bar input {
    width: 100%;
  }
}

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

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

  .brand-text small {
    display: none;
  }

  .hero-carousel,
  .hero-content {
    min-height: 560px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-actions,
  .section-heading,
  .category-overview-head {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .category-movie-grid,
  .search-grid,
  .category-grid,
  .mini-card-row,
  .related-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .card-desc,
  .tag-line {
    display: none;
  }

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

  .detail-cover {
    max-width: 280px;
  }

  .ranking-main {
    align-items: flex-start;
  }

  .ranking-number {
    width: 34px;
    height: 34px;
  }

  .ranking-main img {
    width: 58px;
    height: 78px;
  }

  .ranking-main b {
    display: none;
  }
}
