:root {
  --brand-blue: #0096dc;
  --brand-blue-dark: #0077b6;
  --brand-blue-light: #4db8e8;
  --brand-yellow: #ffd700;
  --brand-yellow-dark: #ffc700;
  --brand-red: #e63946;
  --brand-cream: #fff9e6;
  --text-main: #1f2937;
  --text-soft: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text-main);
  background: linear-gradient(180deg, var(--brand-cream), #ffffff 24rem);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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: 50;
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.22);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--brand-blue-dark);
  background: var(--brand-yellow);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.08);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-copy em {
  font-size: 12px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.76);
}

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

.nav-link,
.mobile-link {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--brand-blue-dark);
  background: var(--brand-yellow);
  transform: translateY(-1px);
}

.nav-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.nav-search input,
.mobile-search input {
  width: 180px;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 6px 10px;
}

.nav-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.nav-search button,
.mobile-search button {
  border: 0;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--brand-blue-dark);
  background: var(--brand-yellow);
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
}

.mobile-panel.is-open {
  display: grid;
  gap: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 20% 10%, rgba(255, 215, 0, 0.22), transparent 22rem), linear-gradient(110deg, var(--brand-blue), var(--brand-blue-light));
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  background: var(--brand-yellow);
  opacity: 0.13;
  animation: floatOrb 5.5s ease-in-out infinite;
}

.hero-orb.one {
  width: 132px;
  height: 132px;
  left: 8%;
  top: 16%;
}

.hero-orb.two {
  width: 210px;
  height: 210px;
  right: 6%;
  bottom: 8%;
  animation-delay: 1.2s;
}

.hero-inner {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 70px 0;
}

.hero-stage {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: 52px;
}

.hero-slide.is-active {
  display: grid;
  animation: fadeUp 0.5s ease both;
}

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

.eyebrow,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand-yellow);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.hero h2,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h2 {
  font-size: clamp(34px, 5vw, 60px);
}

.hero-text,
.page-hero p {
  max-width: 760px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

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

.primary-btn,
.ghost-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.primary-btn {
  color: var(--brand-blue-dark);
  background: var(--brand-yellow);
}

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

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

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

.hero-poster {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.24);
  border-radius: 34px;
  box-shadow: 0 32px 80px rgba(0, 50, 88, 0.34);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 56%);
}

.hero-poster span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--brand-blue-dark);
  background: var(--brand-yellow);
  font-size: 26px;
  box-shadow: var(--shadow);
}

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

.hero-dot {
  width: 42px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--brand-yellow);
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-weight: 900;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
}

.section-heading.light,
.section-heading.light span,
.section-heading.light p {
  color: #ffffff;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

.movie-card {
  overflow: hidden;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

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

.compact-card .poster-link {
  aspect-ratio: 3 / 4;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 58%);
  opacity: 0.8;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--brand-blue-dark);
  background: var(--brand-yellow);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.poster-meta,
.rank-badge {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
}

.poster-meta {
  right: 12px;
  top: 12px;
  padding: 5px 10px;
  background: var(--brand-red);
}

.rank-badge {
  left: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--brand-blue);
}

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 52px;
  margin-bottom: 8px;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compact-card .card-title {
  min-height: 46px;
  font-size: 16px;
}

.card-title:hover {
  color: var(--brand-blue);
}

.card-body p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin: 0 0 13px;
  color: var(--text-soft);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tags span,
.tag-list span {
  display: inline-flex;
  padding: 4px 8px;
  color: var(--brand-blue-dark);
  background: rgba(0, 150, 220, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.rank-band,
.blue-section {
  padding: 72px 0;
  color: #ffffff;
  background: linear-gradient(110deg, var(--brand-yellow-dark), var(--brand-yellow));
}

.blue-section {
  background: linear-gradient(110deg, var(--brand-blue-dark), var(--brand-blue-light));
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 42px 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  color: var(--text-main);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
}

.rank-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--brand-red);
  border-radius: 999px;
  font-weight: 900;
}

.rank-row img {
  width: 104px;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
}

.rank-info {
  min-width: 0;
}

.rank-info strong,
.rank-info em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info strong {
  font-weight: 900;
}

.rank-info em {
  color: var(--text-soft);
  font-size: 13px;
  font-style: normal;
}

.rank-score {
  color: var(--brand-blue);
  font-weight: 900;
}

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

.category-tile,
.overview-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 26px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.category-tile {
  display: grid;
  align-content: space-between;
}

.category-tile strong {
  font-size: 24px;
  color: var(--brand-blue-dark);
}

.category-tile em {
  margin-top: 8px;
  color: var(--text-soft);
  font-style: normal;
}

.tile-glow {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.2);
}

.tile-covers {
  display: flex;
  margin-top: 24px;
}

.tile-covers img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border: 4px solid #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.tile-covers img + img {
  margin-left: -18px;
}

.page-hero {
  padding: 64px 0;
  color: #ffffff;
  background: radial-gradient(circle at 80% 0%, rgba(255, 215, 0, 0.22), transparent 24rem), linear-gradient(110deg, var(--brand-blue), var(--brand-blue-light));
}

.category-hero {
  padding-bottom: 80px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

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

.filter-card {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  padding: 22px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.inline-search {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-weight: 800;
}

.inline-search input {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  padding: 13px 16px;
  border-radius: 16px;
}

.inline-search input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 150, 220, 0.12);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.filter-row > span {
  min-width: 46px;
  color: var(--text-soft);
  font-weight: 900;
}

.filter-button {
  border: 0;
  padding: 8px 14px;
  color: var(--text-main);
  background: #f3f4f6;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: #ffffff;
  background: var(--brand-blue);
}

.empty-state {
  display: none;
  padding: 56px;
  text-align: center;
  color: var(--text-soft);
  background: #ffffff;
  border-radius: var(--radius);
}

.empty-state.is-visible {
  display: block;
}

.overview-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 22px;
  min-height: 0;
}

.overview-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.overview-cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.overview-body h2 {
  margin: 0 0 8px;
}

.overview-body p {
  margin: 0 0 20px;
  color: var(--text-soft);
}

.text-link {
  color: #ffffff;
  background: var(--brand-blue);
}

.split-rank {
  background: linear-gradient(110deg, var(--brand-blue), var(--brand-blue-light));
}

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

.detail-wrap {
  padding: 36px 0 0;
}

.detail-wrap .breadcrumb {
  color: var(--text-soft);
}

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

.video-shell {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.play-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-mask span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: var(--brand-blue-dark);
  background: var(--brand-yellow);
  border-radius: 999px;
  font-size: 32px;
  box-shadow: var(--shadow);
}

.play-mask strong {
  font-size: 18px;
}

.play-mask.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-card,
.side-card {
  margin-top: 22px;
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

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

.detail-card h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.lead-text {
  margin: 0 0 22px;
  color: var(--text-main);
  font-size: 19px;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.info-item {
  padding: 14px;
  background: #f9fafb;
  border-radius: 16px;
}

.info-item span {
  display: block;
  color: var(--text-soft);
  font-size: 13px;
}

.info-item strong {
  color: var(--brand-blue-dark);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.article-block {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-block h2 {
  margin: 0 0 10px;
}

.article-block p {
  margin: 0;
  color: #374151;
  font-size: 16px;
}

.highlight-block {
  margin-top: 22px;
  padding: 22px;
  border: 0;
  border-left: 5px solid var(--brand-yellow);
  background: var(--brand-cream);
  border-radius: 18px;
}

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

.side-poster {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.side-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.side-card p {
  margin: 0;
  color: var(--text-soft);
}

.side-stats {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.side-stats span {
  padding: 10px 12px;
  color: var(--brand-blue-dark);
  background: rgba(0, 150, 220, 0.1);
  border-radius: 14px;
  font-weight: 900;
}

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

.side-links a {
  padding: 10px 12px;
  background: #f9fafb;
  border-radius: 12px;
  font-weight: 800;
}

.side-links a:hover {
  color: #ffffff;
  background: var(--brand-blue);
}

.on-blue .movie-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.on-blue .card-title,
.on-blue .card-body p {
  color: #ffffff;
}

.on-blue .card-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.site-footer {
  color: #ffffff;
  background: #0f172a;
}

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

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand-yellow);
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--brand-yellow);
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatOrb {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

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

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

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

  .detail-side {
    position: static;
  }

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

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

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

  .hero-inner {
    min-height: auto;
    padding: 46px 0;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-poster,
  .hero-poster img {
    min-height: 320px;
  }

  .feature-grid,
  .small-grid,
  .catalog-grid,
  .category-grid,
  .overview-grid,
  .rank-grid,
  .two-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .brand-copy strong {
    font-size: 17px;
  }

  .mobile-search {
    align-items: stretch;
  }

  .mobile-search input {
    width: 100%;
  }

  .hero h1,
  .hero h2,
  .page-hero h1 {
    font-size: 34px;
  }

  .section,
  .rank-band,
  .blue-section {
    padding: 48px 0;
  }

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

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

  .card-body {
    padding: 12px;
  }

  .card-title {
    min-height: 42px;
    font-size: 15px;
  }

  .card-body p {
    display: none;
  }

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

  .rank-row img {
    width: 78px;
    height: 58px;
  }

  .rank-score {
    display: none;
  }

  .detail-title-row {
    display: grid;
  }

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