:root {
  --page: #f8fafc;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --soft: #e2e8f0;
  --line: #e5e7eb;
  --brand: #0d9488;
  --brand-dark: #0f766e;
  --brand-light: #ccfbf1;
  --cyan: #06b6d4;
  --blue: #2563eb;
  --gold: #f59e0b;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

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

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.25);
}

.brand-text,
.footer-brand div {
  display: grid;
  gap: 2px;
}

.brand-text strong,
.footer-brand strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
}

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

.desktop-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav-link {
  padding: 10px 0;
  color: #334155;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand);
  border-color: var(--brand);
}

.nav-search,
.mobile-search,
.hero-search {
  position: relative;
}

.nav-search {
  width: 250px;
}

.site-search-input,
.filter-input,
.filter-year {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: #fff;
  color: var(--ink);
  padding: 12px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search-input:focus,
.filter-input:focus,
.filter-year:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.14);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  width: min(420px, 88vw);
  max-height: 430px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  z-index: 60;
}

.search-results.is-open {
  display: grid;
  gap: 8px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
}

.search-result-item:hover {
  background: #f1f5f9;
}

.search-result-item img {
  width: 48px;
  height: 62px;
  border-radius: 10px;
  object-fit: cover;
  background: #e2e8f0;
}

.search-result-item strong,
.search-result-item span {
  display: block;
}

.search-result-item span {
  color: var(--muted);
  font-size: 13px;
}

.search-empty {
  padding: 12px;
  color: var(--muted);
  text-align: center;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  color: #0f172a;
  width: 44px;
  height: 44px;
  font-size: 24px;
}

.mobile-panel {
  display: none;
  padding: 8px 16px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #334155;
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.is-active {
  color: var(--brand);
  background: #f0fdfa;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ecfeff 0%, #f0fdfa 48%, #eff6ff 100%);
  padding: 86px 0 78px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 52px;
  align-items: center;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.18;
}

.hero-glow-one {
  top: 70px;
  left: 6vw;
  width: 280px;
  height: 280px;
  background: var(--brand);
}

.hero-glow-two {
  right: 8vw;
  bottom: 60px;
  width: 380px;
  height: 380px;
  background: var(--cyan);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.detail-line {
  max-width: 650px;
  color: #475569;
  font-size: 19px;
}

.hero-search {
  width: min(560px, 100%);
  margin: 28px 0 22px;
}

.hero-search .site-search-input {
  height: 58px;
  padding-left: 22px;
  border: 0;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

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

.btn-primary,
.btn-soft,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  box-shadow: 0 14px 26px rgba(13, 148, 136, 0.24);
}

.btn-soft,
.section-more {
  color: var(--brand-dark);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.btn-primary:hover,
.btn-soft:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-category-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: #0f766e;
  background: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.hero-stage {
  min-width: 0;
}

.hero-frame {
  position: relative;
  height: 520px;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 32px;
  background: #dbeafe;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 20%, rgba(15, 23, 42, 0.86) 100%);
}

.hero-slide-copy {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  color: #fff;
}

.hero-slide-copy p,
.hero-slide-copy h2,
.hero-slide-copy span {
  margin: 0;
}

.hero-slide-copy p {
  color: #99f6e4;
  font-weight: 900;
}

.hero-slide-copy h2 {
  margin: 8px 0;
  font-size: 32px;
  line-height: 1.1;
}

.hero-slide-copy > span {
  display: block;
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-slide-copy a {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

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

.hero-tags span,
.tag-list span,
.detail-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.tag-list span,
.detail-badges span {
  background: #f1f5f9;
  color: #334155;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.hero-arrow,
.hero-dot {
  border: 0;
}

.hero-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #0f766e;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 26px;
}

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

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

.hero-dot.is-active {
  width: 28px;
  background: var(--brand);
}

.feature-strip {
  padding: 42px 0 20px;
  background: #fff;
}

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

.feature-card,
.content-card,
.side-card,
.filter-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-card span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: #0f766e;
  background: linear-gradient(135deg, #ccfbf1, #cffafe);
  font-size: 20px;
  font-weight: 900;
}

.feature-card strong {
  display: block;
  margin-top: 14px;
  font-size: 18px;
}

.feature-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

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

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

.section-heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

.movie-card {
  display: grid;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  height: 300px;
  overflow: hidden;
  background: #e2e8f0;
}

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

.movie-card:hover .poster-wrap img,
.category-tile:hover img {
  transform: scale(1.08);
}

.year-badge,
.play-chip {
  position: absolute;
  z-index: 2;
}

.year-badge {
  top: 14px;
  right: 14px;
  padding: 4px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.play-chip {
  display: grid;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(13, 148, 136, 0.86);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.movie-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.movie-meta {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.movie-body strong {
  overflow: hidden;
  color: #0f172a;
  font-size: 19px;
  line-height: 1.25;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.movie-desc {
  display: -webkit-box;
  min-height: 45px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

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

.category-tile {
  position: relative;
  display: block;
  height: 300px;
  overflow: hidden;
  border-radius: 28px;
  background: #0f172a;
  box-shadow: var(--shadow-soft);
}

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

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.84));
}

.category-content {
  position: absolute;
  inset: auto 22px 22px;
  display: grid;
  gap: 8px;
  color: #fff;
}

.category-content strong {
  font-size: 26px;
  line-height: 1.1;
}

.category-content em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.category-content b {
  color: #99f6e4;
}

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

.rank-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 240px;
  border-radius: 24px;
  color: #fff;
  background: #0f172a;
  box-shadow: var(--shadow-soft);
}

.rank-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.88));
}

.rank-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-card span,
.rank-card strong,
.rank-card em {
  position: absolute;
  z-index: 2;
}

.rank-card span {
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold);
  font-weight: 900;
}

.rank-card strong {
  left: 14px;
  right: 14px;
  bottom: 42px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-card em {
  left: 14px;
  bottom: 16px;
  color: #99f6e4;
  font-style: normal;
  font-weight: 800;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: linear-gradient(135deg, #0f766e, #0891b2 55%, #2563eb);
  color: #fff;
}

.page-hero h1,
.page-hero p,
.detail-hero h1,
.detail-hero p,
.detail-hero .eyebrow {
  color: #fff;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px;
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 72px 76px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.rank-number {
  color: var(--brand);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.rank-row img {
  width: 76px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
  background: #e2e8f0;
}

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

.rank-main strong {
  overflow: hidden;
  font-size: 19px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-main em,
.rank-main b {
  overflow: hidden;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-heat {
  padding: 8px 12px;
  border-radius: 999px;
  color: #92400e;
  background: #fef3c7;
  font-weight: 900;
}

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

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 10px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.26);
}

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

.breadcrumb a:hover {
  color: #ccfbf1;
}

.detail-badges {
  margin-top: 22px;
}

.detail-badges span {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

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

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020617;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 12px;
  place-items: center;
  align-content: center;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.72));
  font-size: 18px;
  font-weight: 900;
  z-index: 3;
}

.play-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  box-shadow: 0 15px 35px rgba(13, 148, 136, 0.36);
  font-size: 30px;
}

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

.content-card,
.side-card {
  padding: 28px;
}

.content-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.2;
}

.content-card p {
  margin: 0 0 24px;
  color: #334155;
  font-size: 17px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  margin: 0;
}

.side-card dt {
  color: var(--muted);
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  color: #0f172a;
}

.prev-next {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.prev-next a {
  display: block;
  overflow: hidden;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--brand-dark);
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.related-grid .poster-wrap {
  height: 240px;
}

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

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

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand strong,
.site-footer h2 {
  color: #fff;
}

.site-footer p,
.site-footer li,
.footer-brand small {
  color: #94a3b8;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

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

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

.footer-bottom {
  padding: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  text-align: center;
}

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

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

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

  .hero-stage {
    max-width: 620px;
  }
}

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

  .menu-toggle {
    display: grid;
    place-items: center;
  }

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

  .hero {
    padding-top: 58px;
  }

  .hero-frame {
    height: 440px;
  }

  .feature-grid,
  .movie-grid,
  .category-grid,
  .category-grid-large,
  .rank-grid,
  .footer-grid,
  .detail-grid,
  .detail-content {
    grid-template-columns: 1fr 1fr;
  }

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

  .detail-poster {
    max-width: 300px;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }
}

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

  .nav-bar {
    min-height: 68px;
  }

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

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

  .hero-copy h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 38px;
  }

  .hero-frame {
    height: 380px;
    border-width: 6px;
    border-radius: 24px;
  }

  .hero-slide-copy h2 {
    font-size: 25px;
  }

  .feature-grid,
  .movie-grid,
  .category-grid,
  .category-grid-large,
  .rank-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .poster-wrap {
    height: 360px;
  }

  .section-heading {
    display: grid;
  }

  .rank-row {
    grid-template-columns: 44px 64px 1fr;
    gap: 10px;
  }

  .rank-row img {
    width: 64px;
    height: 84px;
  }

  .rank-heat {
    grid-column: 3;
    justify-self: start;
  }

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