* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #111827;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 34%, #f9fafb 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #92400e;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #b45309, #ea580c);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(180, 83, 9, 0.25);
}

.brand-text {
  font-size: 1.2rem;
}

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

.nav-link {
  color: #4b5563;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #b45309;
}

.top-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(320px, 30vw);
}

.top-search input,
.mobile-search input,
.page-filter input,
.search-hero-form input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
  color: #111827;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.top-search input,
.mobile-search input {
  padding: 10px 14px;
}

.top-search input:focus,
.mobile-search input:focus,
.page-filter input:focus,
.search-hero-form input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.top-search button,
.mobile-search button,
.search-hero-form button {
  border: 0;
  color: #ffffff;
  background: #b45309;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.top-search button:hover,
.mobile-search button:hover,
.search-hero-form button:hover {
  background: #92400e;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fffbeb;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #92400e;
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid #f3f4f6;
  background: #ffffff;
}

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

.mobile-link {
  display: block;
  padding: 11px 0;
  color: #374151;
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.is-active {
  color: #b45309;
}

.mobile-search {
  display: flex;
  gap: 8px;
  padding-top: 10px;
}

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #111827;
}

.hero-track,
.hero-slide {
  min-height: 70vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity 700ms ease;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 34%, rgba(245, 158, 11, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.66) 46%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.35), rgba(17, 24, 39, 0.15));
}

.hero-content {
  position: relative;
  min-height: 70vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.46fr);
  align-items: center;
  gap: 56px;
  padding-block: 74px;
}

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

.hero-kicker,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background: rgba(180, 83, 9, 0.92);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.section-eyebrow {
  color: #b45309;
  background: #fffbeb;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-copy p {
  margin: 0;
  color: #e5e7eb;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  max-width: 680px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: #f9fafb;
  font-weight: 700;
}

.hero-meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  margin-left: 14px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.36);
}

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

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

.hero-tags span,
.tag-cloud span,
.detail-pills span,
.card-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-tags span {
  color: #fde68a;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  color: #ffffff;
  background: #b45309;
  padding: 14px 24px;
  box-shadow: 0 16px 30px rgba(180, 83, 9, 0.32);
}

.primary-button:hover {
  background: #92400e;
  transform: translateY(-2px) scale(1.02);
}

.primary-button.dark {
  background: #111827;
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-poster {
  justify-self: end;
  width: min(100%, 360px);
  aspect-ratio: 2 / 3;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  transform: rotate(2deg);
}

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

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

.hero-dot {
  width: 32px;
  height: 6px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.34);
  transition: width 180ms ease, background 180ms ease;
}

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

.quick-categories {
  padding: 28px 0 10px;
  background: #ffffff;
}

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

.category-chip,
.category-card,
.text-card,
.detail-info-card,
.movie-card,
.ranking-card {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.category-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-chip:hover {
  transform: translateY(-3px);
  border-color: #f59e0b;
  box-shadow: 0 18px 42px rgba(180, 83, 9, 0.14);
}

.category-chip strong {
  color: #111827;
  font-size: 1.08rem;
}

.category-chip span {
  color: #b45309;
  font-size: 0.88rem;
  font-weight: 800;
}

.content-section {
  padding: 72px 0;
}

.content-section.soft-bg {
  background: linear-gradient(90deg, #fff7ed, #fffbeb);
}

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

.section-heading h2 {
  margin: 10px 0 0;
  color: #111827;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-more {
  color: #b45309;
  padding: 10px 0;
}

.section-more:hover {
  transform: translateX(3px);
}

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.14);
}

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

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

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.78) 100%);
  transition: opacity 220ms ease;
}

.movie-card:hover .poster-link::after {
  opacity: 1;
}

.year-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.62);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(180, 83, 9, 0.92);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(10px);
}

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

.card-body {
  padding: 15px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-body h3 a:hover {
  color: #b45309;
}

.card-body p {
  min-height: 44px;
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta span {
  color: #b45309;
  background: #fffbeb;
}

.card-tags {
  margin-top: 8px;
  color: #9ca3af;
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-section {
  padding: 76px 0;
  background: linear-gradient(135deg, #c2410c, #b45309 54%, #78350f);
  color: #ffffff;
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.ranking-copy .section-eyebrow {
  color: #fde68a;
  background: rgba(255, 255, 255, 0.14);
}

.ranking-copy h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.ranking-copy p {
  max-width: 560px;
  color: #ffedd5;
  font-size: 1.08rem;
}

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

.rank-list a {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease;
}

.rank-list a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.18);
}

.rank-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #78350f;
  background: #fde68a;
  border-radius: 999px;
  font-weight: 900;
}

.rank-title {
  font-weight: 800;
}

.rank-meta {
  color: #ffedd5;
  font-size: 0.9rem;
}

.page-hero {
  padding: 76px 0 64px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.24), transparent 28%),
    linear-gradient(135deg, #78350f, #b45309 55%, #ea580c);
}

.page-hero h1 {
  margin: 18px 0 12px;
  max-width: 860px;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #ffedd5;
  font-size: 1.1rem;
}

.page-hero .section-eyebrow {
  color: #fde68a;
  background: rgba(255, 255, 255, 0.14);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

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

.page-filter,
.search-hero-form {
  margin-top: 28px;
  max-width: 720px;
}

.page-filter input,
.search-hero-form input {
  padding: 16px 18px;
  font-size: 1rem;
}

.search-hero-form {
  display: flex;
  gap: 12px;
}

.search-hero-form button {
  padding-inline: 28px;
}

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

.category-card {
  border-radius: 24px;
  padding: 24px;
}

.category-card-main {
  display: block;
  padding-bottom: 18px;
}

.category-card-main span {
  color: #b45309;
  font-weight: 900;
}

.category-card-main h2 {
  margin: 8px 0;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.category-card-main p {
  margin: 0;
  color: #6b7280;
}

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

.category-mini-grid a {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: #111827;
}

.category-mini-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-mini-grid span {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 8px 8px;
  color: #ffffff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  font-size: 0.75rem;
  font-weight: 800;
}

.detail-top {
  padding: 34px 0 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 20%, rgba(245, 158, 11, 0.22), transparent 26%),
    linear-gradient(135deg, #111827 0%, #1f2937 48%, #78350f 100%);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: stretch;
}

.player-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.video-player {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.58));
  font-size: 1.05rem;
  font-weight: 900;
  z-index: 4;
}

.player-card.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(180, 83, 9, 0.94);
  box-shadow: 0 16px 34px rgba(180, 83, 9, 0.34);
}

.detail-info-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
}

.detail-info-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-info-body {
  padding: 24px;
}

.detail-info-body h1 {
  margin: 12px 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-info-body p {
  margin: 0 0 18px;
  color: #4b5563;
}

.detail-pills span {
  color: #92400e;
  background: #fffbeb;
}

.detail-pills.small span {
  font-size: 0.82rem;
}

.detail-body-section {
  padding: 62px 0 10px;
}

.detail-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.text-card {
  border-radius: 22px;
  padding: 26px;
}

.text-card h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.text-card p {
  margin: 0 0 14px;
  color: #4b5563;
}

.text-card p:last-child {
  margin-bottom: 0;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.info-list dt {
  color: #6b7280;
}

.info-list dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.info-list a {
  color: #b45309;
}

.tag-cloud span {
  color: #b45309;
  background: #fffbeb;
}

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

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

.ranking-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: 20px;
  padding: 14px;
}

.ranking-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 15px;
}

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

.ranking-poster span {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #78350f;
  background: #fde68a;
  border-radius: 50%;
  font-weight: 900;
}

.ranking-card h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.ranking-card h2 a:hover {
  color: #b45309;
}

.ranking-card p {
  margin: 0 0 12px;
  color: #6b7280;
}

.empty-state {
  display: none;
  margin: 36px 0 0;
  padding: 22px;
  color: #92400e;
  background: #fffbeb;
  border-radius: 18px;
  font-weight: 800;
  text-align: center;
}

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

.site-footer {
  color: #d1d5db;
  background: #111827;
  margin-top: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 34px;
  padding: 54px 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
}

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

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

.footer-bottom {
  padding: 22px 16px;
  color: #6b7280;
  border-top: 1px solid #1f2937;
  text-align: center;
}

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

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

  .hero-content,
  .detail-layout,
  .detail-body-grid,
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

  .detail-info-card img {
    height: 100%;
    aspect-ratio: auto;
  }
}

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

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

  .nav-wrap {
    min-height: 64px;
  }

  .hero,
  .hero-track,
  .hero-slide,
  .hero-content {
    min-height: 78vh;
  }

  .hero-content {
    padding-block: 52px 80px;
  }

  .category-chip-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .ranking-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .detail-info-card {
    display: block;
  }

  .player-card,
  .video-player {
    min-height: 260px;
  }

  .search-hero-form {
    flex-direction: column;
  }
}

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

  .brand-text {
    font-size: 1rem;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

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

  .card-body {
    padding: 12px;
  }

  .card-body p,
  .card-tags {
    display: none;
  }

  .rank-list a {
    grid-template-columns: 40px 1fr;
  }

  .rank-meta {
    display: none;
  }
}
