:root {
  --page-bg: #020617;
  --panel-bg: rgba(15, 23, 42, 0.78);
  --panel-strong: #0f172a;
  --panel-soft: rgba(30, 41, 59, 0.56);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(251, 191, 36, 0.34);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --accent: #f59e0b;
  --accent-bright: #fbbf24;
  --accent-deep: #b45309;
  --danger: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --content-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
    radial-gradient(circle at 80% 12%, rgba(59, 130, 246, 0.12), transparent 36rem),
    linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

button,
input {
  font: inherit;
}

main {
  min-height: 68vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.86);
  backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(var(--content-width), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.28);
}

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

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

.brand-copy em {
  margin-top: 4px;
  color: var(--soft);
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(300px, 26vw);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
}

.header-search input {
  width: 100%;
  min-width: 0;
  color: var(--text);
  border: 0;
  outline: 0;
  background: transparent;
}

.header-search input::placeholder {
  color: #64748b;
}

.header-search button,
.large-search button {
  border: 0;
  color: #111827;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  font-weight: 800;
}

.header-search button {
  padding: 7px 14px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.92);
}

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

.mobile-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--text);
  background: rgba(245, 158, 11, 0.12);
}

.hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.76) 38%, rgba(2, 6, 23, 0.18) 72%),
    linear-gradient(0deg, #020617 0%, transparent 34%),
    radial-gradient(circle at 22% 24%, rgba(245, 158, 11, 0.26), transparent 32rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 86px 0 120px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--accent-bright);
  background: rgba(245, 158, 11, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 21px);
}

.hero-tags,
.detail-meta,
.tag-row,
.category-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin-top: 26px;
}

.hero-tags span,
.detail-meta span,
.tag-row span,
.category-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.62);
  font-size: 13px;
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  color: #111827;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  box-shadow: 0 16px 38px rgba(245, 158, 11, 0.28);
}

.ghost-btn {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.7);
}

.ghost-btn.slim {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
}

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

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.34);
  cursor: pointer;
}

.hero-dot.active {
  width: 38px;
  background: var(--accent-bright);
}

.feature-strip {
  width: min(var(--content-width), calc(100% - 32px));
  margin: -54px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-strip a {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-strip strong {
  font-size: 19px;
}

.feature-strip span {
  color: var(--soft);
  font-size: 14px;
}

.content-section {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 0;
}

.dark-panel {
  width: min(calc(var(--content-width) + 48px), calc(100% - 24px));
  margin-top: 72px;
  padding: 34px 24px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.5);
  box-shadow: var(--shadow);
}

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

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

.section-heading p {
  margin: 8px 0 0;
  color: var(--soft);
}

.section-more {
  min-width: max-content;
  color: var(--accent-bright);
  font-weight: 800;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #1e293b, #020617);
}

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

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

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #111827;
  background: rgba(251, 191, 36, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-weight: 900;
}

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

.year-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #111827;
  background: rgba(251, 191, 36, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.movie-card-body {
  padding: 15px;
}

.movie-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

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

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  min-height: 26px;
  padding: 3px 9px;
  color: #f8fafc;
  font-size: 12px;
  background: rgba(51, 65, 85, 0.62);
}

.rail-wrap {
  position: relative;
}

.movie-rail {
  display: grid;
  grid-auto-columns: minmax(170px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
}

.rail-card {
  width: 180px;
  scroll-snap-align: start;
}

.rail-control {
  position: absolute;
  top: 38%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(15, 23, 42, 0.88);
  cursor: pointer;
  font-size: 28px;
}

.rail-control.left {
  left: -12px;
}

.rail-control.right {
  right: -12px;
}

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

.category-tile,
.category-overview-card,
.top-rank-card,
.text-page article,
.detail-info-card,
.player-card,
.detail-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.category-tile {
  padding: 22px;
}

.category-title {
  display: inline-flex;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.category-tile p,
.category-overview-card p {
  color: var(--soft);
}

.mini-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.compact-card {
  display: grid;
  grid-template-columns: auto 54px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.38);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.compact-card:hover {
  transform: translateX(4px);
  border-color: rgba(251, 191, 36, 0.32);
}

.compact-card img {
  width: 54px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: #0f172a;
}

.compact-card span {
  display: grid;
  min-width: 0;
}

.compact-card strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.compact-card em {
  overflow: hidden;
  color: var(--soft);
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #111827;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  font-weight: 900;
}

.page-hero {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 36px;
}

.small-hero,
.category-hero,
.search-hero {
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}

.category-link-row {
  margin-top: 24px;
}

.category-link-row a:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.category-overview-card {
  overflow: hidden;
}

.category-overview-card > div {
  padding: 20px;
}

.poster-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  height: 210px;
  overflow: hidden;
  background: #0f172a;
}

.poster-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 26px;
}

.top-rank-card {
  overflow: hidden;
}

.top-rank-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0f172a;
}

.top-rank-card div {
  padding: 20px;
}

.top-rank-card span {
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.top-rank-card a {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 900;
}

.top-rank-card p {
  color: var(--soft);
}

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

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

.large-search {
  display: flex;
  gap: 10px;
  width: min(680px, 100%);
  margin-top: 28px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
}

.large-search input {
  flex: 1;
  min-width: 0;
  color: var(--text);
  border: 0;
  outline: 0;
  padding: 0 14px;
  background: transparent;
}

.large-search button {
  padding: 12px 24px;
}

.detail-shell {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding-top: 34px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
  color: var(--soft);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--accent-bright);
}

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

.player-card {
  overflow: hidden;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #111827;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.48));
  cursor: pointer;
}

.video-overlay span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: rgba(251, 191, 36, 0.92);
  font-size: 32px;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(245, 158, 11, 0.28);
}

.js-player.is-playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.player-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
}

.player-title-row h1 {
  margin: 0;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.15;
}

.detail-info-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  margin-top: 24px;
  padding: 22px;
}

.detail-poster img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #0f172a;
}

.detail-copy h2 {
  margin: 24px 0 8px;
  font-size: 22px;
}

.detail-copy p {
  margin: 0;
  color: var(--muted);
}

.lead-text {
  color: var(--text) !important;
  font-size: 18px;
  font-weight: 700;
}

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

.detail-aside {
  position: sticky;
  top: 100px;
  padding: 20px;
}

.detail-aside h2 {
  margin: 0 0 16px;
}

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

.related-section {
  padding-bottom: 36px;
}

.text-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 80px;
  display: grid;
  gap: 18px;
}

.text-page article {
  padding: 26px;
}

.text-page h2 {
  margin: 0 0 10px;
}

.text-page p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 76px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.74);
}

.footer-inner {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}

.footer-brand {
  font-size: 22px;
  font-weight: 900;
}

.footer-inner p {
  max-width: 620px;
  color: var(--soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--soft);
  font-size: 13px;
}

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

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

  .detail-aside {
    position: static;
  }
}

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

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

  .hero-slider {
    min-height: 620px;
  }

  .feature-strip,
  .category-grid,
  .category-overview-grid,
  .top-rank-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .wide-list {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 68px;
  }

  .brand-copy em {
    display: none;
  }

  .hero-slider {
    min-height: 560px;
  }

  .hero-content {
    padding: 70px 0 96px;
  }

  .feature-strip {
    margin-top: 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .content-section,
  .page-hero,
  .detail-shell {
    width: min(100% - 24px, var(--content-width));
  }

  .dark-panel {
    width: min(100% - 16px, var(--content-width));
    padding: 26px 12px 34px;
  }

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

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

  .player-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .large-search {
    border-radius: 20px;
    flex-direction: column;
  }

  .large-search input {
    min-height: 44px;
  }
}

@media (max-width: 430px) {
  .movie-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .movie-title {
    font-size: 14px;
  }

  .tag-row span:nth-child(n + 3) {
    display: none;
  }

  .compact-card {
    grid-template-columns: auto 46px 1fr;
  }

  .compact-card img {
    width: 46px;
    height: 62px;
  }
}
