:root {
  --bg: #0c0a09;
  --bg-soft: #1c1917;
  --card: rgba(28, 25, 23, 0.92);
  --card-strong: #292524;
  --line: rgba(245, 158, 11, 0.22);
  --text: #fafaf9;
  --muted: #cbd5e1;
  --dim: #a8a29e;
  --amber: #f59e0b;
  --amber-deep: #b45309;
  --amber-soft: rgba(245, 158, 11, 0.16);
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 158, 11, 0.17), transparent 34rem),
    radial-gradient(circle at 90% 15%, rgba(180, 83, 9, 0.18), transparent 32rem),
    linear-gradient(180deg, #0c0a09 0%, #11100f 46%, #0c0a09 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
  background: rgba(12, 10, 9, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #1c1202;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  box-shadow: 0 12px 34px rgba(245, 158, 11, 0.32);
}

.brand-text {
  white-space: nowrap;
}

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

.nav-link {
  position: relative;
  color: #fef3c7;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.82;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  opacity: 1;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f59e0b, #fde68a);
}

.header-search {
  display: flex;
  align-items: center;
  width: min(280px, 28vw);
  margin-left: 8px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 999px;
  background: rgba(41, 37, 36, 0.86);
  overflow: hidden;
}

.header-search input {
  width: 100%;
  min-width: 0;
  color: #fff7ed;
  border: 0;
  outline: 0;
  padding: 10px 12px 10px 16px;
  background: transparent;
}

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

.header-search button {
  border: 0;
  color: #1c1202;
  font-weight: 900;
  padding: 10px 16px;
  background: #f59e0b;
  cursor: pointer;
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  color: #fef3c7;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 12px;
  background: rgba(41, 37, 36, 0.82);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(245, 158, 11, 0.12);
  background: rgba(12, 10, 9, 0.96);
}

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

.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 18px 0 22px;
}

.mobile-nav .nav-link {
  padding: 10px 0;
}

.mobile-search {
  width: 100%;
  margin: 8px 0 0;
}

.hero {
  position: relative;
  min-height: 73vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 158, 11, 0.13);
  background: #0c0a09;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  opacity: 0.72;
}

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.98) 0%, rgba(12, 10, 9, 0.78) 42%, rgba(12, 10, 9, 0.28) 100%),
    linear-gradient(0deg, rgba(12, 10, 9, 1) 0%, rgba(12, 10, 9, 0.18) 46%, rgba(12, 10, 9, 0.84) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 38px;
  min-height: 73vh;
  padding: 74px 0 58px;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  font-weight: 800;
}

.hero h1,
.page-hero h1,
.detail-title {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.55rem, 6vw, 5.9rem);
}

.hero-movie-title {
  margin: 18px 0 12px;
  color: #fde68a;
  font-size: clamp(1.65rem, 3vw, 3.1rem);
  line-height: 1.18;
}

.hero-desc {
  max-width: 760px;
  margin: 0 0 22px;
  color: #d6d3d1;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #d6d3d1;
}

.meta-pill,
.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 999px;
  background: rgba(28, 25, 23, 0.76);
  color: #fef3c7;
  font-size: 0.88rem;
  font-weight: 700;
}

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

.button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 13px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #1c1202;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  box-shadow: 0 16px 38px rgba(245, 158, 11, 0.25);
}

.secondary-button {
  color: #fef3c7;
  border: 1px solid rgba(245, 158, 11, 0.27);
  background: rgba(41, 37, 36, 0.78);
}

.primary-button:hover,
.secondary-button:hover,
.movie-card:hover,
.category-card:hover,
.rank-card:hover {
  transform: translateY(-3px);
}

.hero-search {
  display: flex;
  width: min(680px, 100%);
  margin-top: 26px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 18px;
  background: rgba(28, 25, 23, 0.82);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.hero-search input {
  flex: 1;
  min-width: 0;
  color: #fff7ed;
  border: 0;
  outline: 0;
  padding: 17px 18px;
  background: transparent;
}

.hero-search button {
  border: 0;
  color: #1c1202;
  padding: 0 25px;
  background: #f59e0b;
  font-weight: 950;
  cursor: pointer;
}

.hero-panel {
  align-self: center;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(41, 37, 36, 0.78), rgba(12, 10, 9, 0.68));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.12);
}

.hero-panel-head strong {
  color: #fde68a;
  font-size: 1.05rem;
}

.hero-mini-list {
  display: grid;
  gap: 1px;
}

.hero-mini {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 13px;
  padding: 14px 18px;
  background: rgba(12, 10, 9, 0.34);
  transition: background 0.2s ease;
}

.hero-mini:hover {
  background: rgba(245, 158, 11, 0.1);
}

.hero-mini img {
  width: 74px;
  height: 96px;
  border-radius: 13px;
  object-fit: cover;
  background: rgba(245, 158, 11, 0.12);
}

.hero-mini h3 {
  margin: 0 0 5px;
  color: #fff7ed;
  font-size: 1rem;
}

.hero-mini p {
  margin: 0;
  color: #a8a29e;
  font-size: 0.88rem;
}

.hero-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 999px;
  color: #fef3c7;
  background: rgba(12, 10, 9, 0.62);
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-control.prev {
  left: 24px;
}

.hero-control.next {
  right: 24px;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #f59e0b;
}

.main-section {
  padding: 54px 0;
}

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

.section-title {
  margin: 0;
  color: #fef3c7;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.18;
}

.section-desc {
  margin: 8px 0 0;
  color: var(--dim);
  max-width: 760px;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 242px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scrollbar-color: #92400e #1c1917;
}

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

.movie-card {
  position: relative;
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(41, 37, 36, 0.95), rgba(28, 25, 23, 0.96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  border-color: rgba(245, 158, 11, 0.36);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.34);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 0%, rgba(245, 158, 11, 0.22), transparent 60%),
    #1c1917;
}

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

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

.card-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  color: #1c1202;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  font-size: 0.8rem;
  font-weight: 950;
}

.type-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 9px;
  color: #fff7ed;
  border-radius: 999px;
  background: rgba(12, 10, 9, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.movie-info {
  padding: 14px;
}

.movie-title {
  display: -webkit-box;
  min-height: 2.7em;
  margin: 0 0 8px;
  overflow: hidden;
  color: #fff7ed;
  font-size: 1.02rem;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #a8a29e;
  font-size: 0.82rem;
}

.movie-desc {
  display: -webkit-box;
  min-height: 3.75em;
  margin: 10px 0 0;
  color: #cbd5e1;
  font-size: 0.88rem;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

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

.category-card {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(41, 37, 36, 0.9)),
    rgba(28, 25, 23, 0.95);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
  border-color: rgba(245, 158, 11, 0.36);
}

.category-card h3 {
  margin: 0 0 10px;
  color: #fde68a;
  font-size: 1.3rem;
}

.category-card p {
  margin: 0 0 15px;
  color: #d6d3d1;
  font-size: 0.94rem;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #fef3c7;
  font-size: 0.82rem;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 78px 94px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(245, 158, 11, 0.13);
  border-radius: 20px;
  background: rgba(28, 25, 23, 0.9);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.rank-card:hover {
  border-color: rgba(245, 158, 11, 0.34);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #1c1202;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  font-size: 1.2rem;
  font-weight: 950;
}

.rank-cover {
  width: 94px;
  height: 126px;
  border-radius: 14px;
  object-fit: cover;
  background: #1c1917;
}

.rank-main h3 {
  margin: 0 0 8px;
  color: #fff7ed;
  font-size: 1.15rem;
}

.rank-main p {
  margin: 8px 0 0;
  color: #a8a29e;
}

.page-main {
  padding: 40px 0 70px;
}

.page-hero {
  margin-bottom: 34px;
  padding: 34px;
  border: 1px solid rgba(245, 158, 11, 0.17);
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 158, 11, 0.2), transparent 32rem),
    linear-gradient(135deg, rgba(41, 37, 36, 0.96), rgba(12, 10, 9, 0.96));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  color: #fff7ed;
  font-size: clamp(2rem, 4vw, 4rem);
}

.page-hero p {
  max-width: 850px;
  color: #d6d3d1;
  font-size: 1.05rem;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(150px, 0.55fr));
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: 20px;
  background: rgba(28, 25, 23, 0.86);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  color: #fff7ed;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 13px;
  outline: 0;
  padding: 12px 13px;
  background: #1c1917;
}

.filter-panel option {
  color: #111827;
}

.empty-state {
  display: none;
  padding: 30px;
  color: #d6d3d1;
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: 20px;
  background: rgba(28, 25, 23, 0.86);
  text-align: center;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: #a8a29e;
  font-size: 0.92rem;
}

.breadcrumb a {
  color: #fcd34d;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 36px;
  padding: 26px;
  border: 1px solid rgba(245, 158, 11, 0.17);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(245, 158, 11, 0.2), transparent 28rem),
    linear-gradient(135deg, rgba(41, 37, 36, 0.96), rgba(12, 10, 9, 0.95));
  box-shadow: var(--shadow);
}

.detail-poster {
  border-radius: 22px;
  overflow: hidden;
  background: #1c1917;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
}

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

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.detail-title {
  color: #fff7ed;
  font-size: clamp(2.1rem, 4vw, 4.8rem);
}

.detail-subtitle {
  margin: 18px 0 18px;
  color: #d6d3d1;
  font-size: 1.12rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.player-section,
.content-card,
.related-section {
  margin: 0 0 36px;
  padding: 26px;
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: 24px;
  background: rgba(28, 25, 23, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.player-section h2,
.content-card h2,
.related-section h2 {
  margin: 0 0 18px;
  color: #fef3c7;
  font-size: 1.7rem;
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 22px;
  background: #050505;
}

.video-player video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.play-trigger {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #fff7ed;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(245, 158, 11, 0.32), rgba(0, 0, 0, 0.74) 54%, rgba(0, 0, 0, 0.88));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.video-player.is-playing .play-trigger {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  color: #1c1202;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  box-shadow: 0 22px 60px rgba(245, 158, 11, 0.32);
  font-size: 2rem;
  transform: translateX(2px);
}

.play-text {
  color: #fde68a;
  font-weight: 950;
  font-size: 1.15rem;
}

.content-card p {
  margin: 0 0 16px;
  color: #d6d3d1;
}

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

.site-footer {
  border-top: 1px solid rgba(245, 158, 11, 0.14);
  background: #0c0a09;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
  color: #a8a29e;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #fef3c7;
}

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

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

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

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

  .hero-panel {
    display: none;
  }
}

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

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

  .hero-control {
    display: none;
  }

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

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

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

  .rank-card {
    grid-template-columns: 54px 80px 1fr;
  }

  .rank-card .secondary-button {
    grid-column: 3;
    width: max-content;
  }
}

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

  .header-inner {
    min-height: 64px;
  }

  .brand-text {
    max-width: 7.5em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero,
  .hero-inner {
    min-height: 78vh;
  }

  .hero-inner {
    padding: 44px 0 54px;
  }

  .hero-search {
    flex-direction: column;
    border-radius: 18px;
  }

  .hero-search button {
    min-height: 46px;
  }

  .main-section {
    padding: 40px 0;
  }

  .section-head,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .category-strip {
    grid-template-columns: 1fr;
  }

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

  .page-hero,
  .detail-hero,
  .player-section,
  .content-card,
  .related-section {
    padding: 20px;
    border-radius: 20px;
  }

  .detail-poster {
    max-width: 100%;
  }

  .detail-poster img {
    min-height: auto;
  }

  .rank-card {
    grid-template-columns: 46px 70px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .rank-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .rank-cover {
    width: 70px;
    height: 96px;
  }
}
