:root {
  --pudding-50: #fefdfb;
  --pudding-100: #fef9f3;
  --pudding-200: #fdf3e7;
  --pudding-500: #f8c98f;
  --pudding-600: #f0b46f;
  --pudding-700: #c18448;
  --moonlight-50: #f8f9fd;
  --moonlight-100: #f0f3fb;
  --moonlight-300: #cfd9f4;
  --moonlight-400: #b8c6ea;
  --moonlight-500: #9baee3;
  --moonlight-600: #7d93d9;
  --moonlight-700: #6478c4;
  --ink-900: #111827;
  --ink-800: #1f2937;
  --ink-700: #374151;
  --ink-600: #4b5563;
  --ink-500: #6b7280;
  --soft-blue: #e8f4fd;
  --soft-green: #e9f8ef;
  --soft-pink: #fde8f5;
  --radius: 22px;
  --shadow: 0 16px 40px rgba(125, 147, 217, 0.14);
  --shadow-lg: 0 24px 70px rgba(125, 147, 217, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  color: var(--ink-800);
  background: linear-gradient(180deg, var(--pudding-50), #ffffff 45%, var(--moonlight-50));
}

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

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

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: 80;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--pudding-100);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 26px rgba(99, 102, 141, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pudding-100), var(--moonlight-100));
  color: var(--moonlight-700);
  box-shadow: var(--shadow);
}

.brand-name,
.footer-brand span:last-child {
  font-size: 23px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--pudding-600), var(--moonlight-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 650;
  color: var(--ink-700);
}

.nav-links a,
.mobile-panel a,
.site-footer a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.mobile-panel a:hover,
.site-footer a:hover {
  color: var(--moonlight-600);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--pudding-200);
  border-radius: 999px;
  background: var(--pudding-50);
}

.header-search input,
.mobile-panel input,
.page-search-input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink-800);
}

.header-search input {
  width: 190px;
  padding: 9px 8px 9px 14px;
}

.header-search button,
.mobile-panel button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  color: #ffffff;
  background: var(--moonlight-600);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  color: var(--ink-800);
  background: var(--pudding-50);
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid var(--pudding-100);
}

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

.mobile-panel form {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--pudding-200);
  border-radius: 999px;
  background: var(--pudding-50);
}

.mobile-panel input {
  min-width: 0;
  flex: 1;
  padding: 8px 10px;
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pudding-50), var(--moonlight-100));
}

.hero-slides {
  position: relative;
  min-height: 620px;
}

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

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

.hero-visual {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(125, 147, 217, 0.32), transparent 30%),
    linear-gradient(90deg, rgba(254, 253, 251, 0.97), rgba(254, 253, 251, 0.84) 42%, rgba(240, 243, 251, 0.58));
}

.hero-content {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.66fr);
  align-items: center;
  gap: 54px;
  padding: 72px 0 116px;
}

.hero-copy {
  animation: fadeUp 0.7s ease both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 28px rgba(125, 147, 217, 0.13);
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--ink-800);
}

.hero-copy p,
.page-hero p,
.center-title p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--ink-600);
  font-size: 18px;
  line-height: 1.9;
}

.hero-tags,
.detail-tags,
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.detail-tags span,
.card-tags span {
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--moonlight-700);
}

.hero-tags span,
.detail-tags span {
  padding: 7px 12px;
  font-size: 13px;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 12px 23px;
  font-weight: 750;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
  color: #ffffff;
  background: var(--moonlight-600);
  box-shadow: 0 18px 35px rgba(125, 147, 217, 0.33);
}

.primary-button:hover,
.ghost-button:hover,
.movie-card:hover,
.category-tile:hover,
.category-overview-card:hover,
.full-rank-row:hover {
  transform: translateY(-3px);
}

.primary-button:hover {
  background: var(--moonlight-700);
}

.primary-button.full {
  width: 100%;
}

.ghost-button {
  color: var(--moonlight-700);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(125, 147, 217, 0.18);
}

.hero-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

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

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-control-wrap {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
  border: 0;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--moonlight-700);
  font-size: 28px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 30px;
  background: var(--moonlight-600);
}

.featured-strip {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: -74px;
}

.section-block {
  padding: 70px 0 0;
}

.nested-block {
  padding-top: 36px;
}

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

.section-head.compact {
  margin-bottom: 18px;
}

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

.section-head h2,
.center-title h2,
.site-footer h2,
.side-card h2 {
  margin: 0;
  color: var(--ink-800);
}

.section-head h2,
.center-title h2 {
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.03em;
}

.section-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--pudding-100), var(--moonlight-100));
  box-shadow: var(--shadow);
}

.section-more,
.text-link {
  color: var(--moonlight-600);
  font-weight: 750;
}

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--pudding-50);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .card-image img,
.compact-card:hover img,
.full-rank-row:hover img,
.rank-row:hover img {
  transform: scale(1.08);
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));
  opacity: 0.85;
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--moonlight-700);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 9px;
  color: #ffffff;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.card-badge.top {
  top: 10px;
  right: 10px;
}

.card-badge.bottom {
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: var(--moonlight-600);
}

.card-body {
  display: grid;
  gap: 8px;
  padding: 17px;
}

.card-body strong {
  color: var(--ink-800);
  font-size: 17px;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.movie-card:hover .card-body strong {
  color: var(--moonlight-600);
}

.card-body small,
.card-body em {
  color: var(--ink-500);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}

.card-tags span {
  padding: 4px 8px;
  font-size: 12px;
  background: var(--pudding-50);
  color: var(--pudding-700);
}

.category-band {
  margin-top: 78px;
  padding: 72px 0;
  background: linear-gradient(135deg, var(--soft-pink), var(--soft-blue));
}

.center-title {
  text-align: center;
  margin-bottom: 34px;
}

.center-title p {
  margin-left: auto;
  margin-right: auto;
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  transition: opacity 0.25s ease, transform 0.5s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.96));
}

.category-tile:hover img {
  opacity: 0.28;
  transform: scale(1.08);
}

.category-icon {
  font-size: 32px;
}

.category-tile strong,
.category-overview-head strong {
  font-size: 20px;
  color: var(--ink-800);
}

.category-tile small,
.category-overview-card p {
  color: var(--ink-600);
  line-height: 1.7;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.ranking-panel,
.content-card,
.side-card,
.filter-panel,
.category-overview-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.ranking-panel {
  position: sticky;
  top: 104px;
  padding: 22px;
}

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

.rank-row,
.compact-card,
.full-rank-row {
  display: flex;
  align-items: center;
  gap: 13px;
}

.rank-row img,
.compact-card img {
  width: 96px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 13px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.rank-number {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pudding-600), var(--moonlight-600));
}

.rank-info {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.rank-info strong,
.compact-card strong {
  color: var(--ink-800);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-info small,
.compact-card small {
  color: var(--ink-500);
}

.page-hero {
  padding: 64px 0 58px;
}

.soft-hero {
  background:
    radial-gradient(circle at 82% 30%, rgba(125, 147, 217, 0.28), transparent 28%),
    linear-gradient(135deg, var(--pudding-50), var(--moonlight-100));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--ink-500);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--moonlight-600);
}

.filter-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
}

.page-search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 2px solid var(--pudding-200);
  border-radius: 999px;
  background: var(--pudding-50);
  transition: border 0.25s ease, background 0.25s ease;
}

.page-search-input:focus {
  border-color: var(--moonlight-400);
  background: #ffffff;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--ink-700);
  background: var(--pudding-50);
  transition: background 0.25s ease, color 0.25s ease;
}

.filter-chip.is-active {
  color: #ffffff;
  background: var(--moonlight-600);
}

.filter-count {
  color: var(--ink-500);
  font-size: 14px;
}

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

.category-overview-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-overview-head span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pudding-100), var(--moonlight-100));
}

.full-rank-list {
  gap: 12px;
}

.full-rank-row {
  border-radius: 20px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(125, 147, 217, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.full-rank-row img {
  width: 150px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.rank-number.large {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border-radius: 16px;
}

.rank-info.wide {
  flex: 1;
}

.rank-info em {
  color: var(--ink-600);
  font-style: normal;
  line-height: 1.5;
}

.rank-score {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--moonlight-700);
  background: var(--moonlight-100);
  font-weight: 800;
}

.detail-wrap {
  padding: 30px 0 70px;
}

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

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

.video-section {
  margin-bottom: 24px;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #0f172a;
  box-shadow: var(--shadow-lg);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #0f172a;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.72));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  color: var(--moonlight-700);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  font-size: 30px;
}

.content-card {
  padding: 26px;
}

.movie-detail-card h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.lead-text {
  margin: 0 0 16px;
  color: var(--ink-600);
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink-600);
  background: var(--pudding-50);
}

.movie-detail-card h2 {
  margin: 28px 0 12px;
  font-size: 22px;
}

.movie-detail-card p {
  color: var(--ink-700);
  line-height: 2;
}

.detail-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 20px;
}

.side-card {
  padding: 20px;
}

.cover-card {
  display: grid;
  gap: 12px;
}

.cover-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
}

.cover-card strong {
  font-size: 20px;
}

.cover-card small {
  color: var(--ink-500);
}

.is-hidden {
  display: none !important;
}

.site-footer {
  margin-top: 88px;
  border-top: 1px solid var(--pudding-100);
  background: linear-gradient(180deg, #ffffff, var(--pudding-50));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: 48px 0;
}

.site-footer p,
.site-footer li {
  color: var(--ink-600);
  line-height: 1.8;
}

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

.footer-bottom {
  padding: 20px 16px 26px;
  border-top: 1px solid var(--pudding-200);
  color: var(--ink-500);
  text-align: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .four-cols,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-column-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .detail-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 66px;
  }

  .nav-links,
  .header-search {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 48px 0 120px;
  }

  .hero-poster {
    max-width: 280px;
    margin: 0 auto;
  }

  .featured-strip,
  .three-cols,
  .four-cols,
  .category-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-strip {
    margin-top: -54px;
  }
}

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

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

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

  .hero-copy h1,
  .page-hero h1 {
    font-size: 36px;
  }

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

  .hero-actions {
    display: grid;
  }

  .featured-strip,
  .three-cols,
  .four-cols,
  .category-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .full-rank-row {
    align-items: flex-start;
  }

  .full-rank-row img {
    width: 110px;
  }

  .rank-score {
    display: none;
  }

  .content-card,
  .side-card,
  .filter-panel {
    padding: 16px;
  }

  .video-shell {
    border-radius: 18px;
  }
}
