
:root {
  --orange: #f97316;
  --red: #ef4444;
  --pink: #ec4899;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --green: #10b981;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 28px 70px rgba(15, 23, 42, 0.24);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f8fafc 100%);
  color: var(--slate-900);
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.28);
}

.site-header__inner {
  width: min(100% - 32px, var(--container));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.header-search input,
.mobile-search input {
  width: 220px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 9px 14px;
  outline: none;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--red);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 0 0 16px;
}

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

.mobile-nav a,
.mobile-search {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mobile-search input {
  width: 100%;
}

.hero-carousel {
  position: relative;
  height: min(680px, calc(100vh - 68px));
  min-height: 560px;
  overflow: hidden;
  background: var(--slate-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

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

.hero-slide .is-missing-image,
.hero-slide img.is-missing-image {
  display: none;
}

.hero-slide:has(img.is-missing-image) {
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.55), transparent 32%),
    linear-gradient(135deg, #111827, #7c2d12 45%, #0f172a);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.68) 42%, rgba(2, 6, 23, 0.12) 100%);
}

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

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.08em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 26px;
  font-size: clamp(18px, 2.4vw, 24px);
  color: rgba(255, 255, 255, 0.82);
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.primary-button {
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 18px 30px rgba(239, 68, 68, 0.36);
}

.primary-button:hover,
.ghost-button:hover,
.category-pill:hover,
.movie-card:hover {
  transform: translateY(-4px);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.primary-button--light {
  color: var(--red);
  background: var(--white);
  box-shadow: 0 16px 26px rgba(255, 255, 255, 0.18);
}

.ghost-button--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 34px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero-arrow--prev {
  left: 22px;
}

.hero-arrow--next {
  right: 22px;
}

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

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

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

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

.content-section--warm {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - var(--container)) / 2));
  background: linear-gradient(90deg, #fff7ed, #fff1f2);
}

.content-section--cool {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - var(--container)) / 2));
  background: linear-gradient(135deg, #eff6ff, #f8fafc, #ecfeff);
}

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

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

.section-link {
  color: var(--blue);
  font-weight: 900;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #7c2d12, #0f172a);
}

.movie-card--featured .poster {
  aspect-ratio: 16 / 8.8;
}

.poster img,
.compact-thumb img,
.ranking-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.72));
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.92);
  color: var(--white);
  transform: translate(-50%, -50%) scale(0.78);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.poster.is-missing-image::before,
.compact-thumb.is-missing-image::before,
.ranking-cover.is-missing-image::before {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--white);
  text-align: center;
  font-weight: 900;
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.45), transparent 34%),
    linear-gradient(135deg, #111827, #7c2d12 48%, #0f172a);
}

.poster.is-missing-image img,
.compact-thumb.is-missing-image img,
.ranking-cover.is-missing-image img {
  display: none;
}

.movie-card__body {
  padding: 18px;
}

.movie-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 800;
}

.movie-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.movie-card p {
  display: -webkit-box;
  min-height: 52px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--slate-600);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card__tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 12px;
  font-weight: 800;
}

.tag-chip--blue {
  background: #eff6ff;
  color: #1d4ed8;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-pill span {
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 800;
}

.cta-panel {
  width: min(100% - 32px, var(--container));
  margin: 32px auto 88px;
  padding: clamp(36px, 6vw, 72px);
  border-radius: 34px;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.cta-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.06em;
}

.cta-panel p {
  margin: 0 auto 30px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.cta-actions {
  justify-content: center;
}

.page-hero {
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
}

.page-hero--blue {
  background: linear-gradient(90deg, #2563eb, #0891b2, #0d9488);
}

.page-hero--dark {
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.35), transparent 32%),
    linear-gradient(135deg, #020617, #111827 55%, #7c2d12);
}

.page-hero--category {
  background: linear-gradient(90deg, #0f172a, #1e293b, #334155);
}

.page-hero__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 64px 0;
}

.page-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.07em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.catalog-layout {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 44px 0 86px;
}

.filter-panel {
  position: sticky;
  top: 82px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 180px)) auto;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select,
.search-box-large input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  padding: 12px 13px;
  background: var(--white);
  outline: none;
}

.reset-button,
.search-box-large button {
  align-self: end;
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  font-weight: 900;
  cursor: pointer;
}

.catalog-count {
  margin-bottom: 22px;
  color: var(--slate-600);
  font-weight: 800;
}

.catalog-count strong {
  color: var(--slate-900);
}

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

.category-card {
  display: flex;
  gap: 18px;
  min-height: 170px;
  padding: 24px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.category-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff7ed;
  font-size: 28px;
}

.category-card__content {
  display: grid;
  gap: 8px;
}

.category-card strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.category-card em {
  color: var(--slate-600);
  font-style: normal;
}

.category-card b {
  color: var(--orange);
}

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

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

.ranking-item a {
  display: grid;
  grid-template-columns: 56px 82px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.ranking-number {
  color: var(--orange);
  font-size: 24px;
  font-weight: 1000;
}

.ranking-cover {
  position: relative;
  height: 58px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--slate-900);
}

.ranking-info {
  display: grid;
}

.ranking-info strong {
  line-height: 1.3;
}

.ranking-info em {
  color: var(--slate-500);
  font-size: 13px;
  font-style: normal;
}

.ranking-heat {
  color: #dc2626;
  font-weight: 900;
}

.search-box-large {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.player-shell {
  background: var(--slate-950);
}

.player-frame {
  position: relative;
  width: min(100%, var(--container));
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: #000000;
  overflow: hidden;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  gap: 10px;
  min-width: 150px;
  min-height: 150px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(249, 115, 22, 0.92);
  box-shadow: 0 0 0 16px rgba(249, 115, 22, 0.18);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.player-start span {
  font-size: 40px;
  line-height: 1;
}

.player-start strong {
  font-size: 16px;
}

.player-start.is-hidden {
  display: none;
}

.player-status {
  position: absolute;
  left: 20px;
  bottom: 14px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(2, 6, 23, 0.72);
  font-size: 13px;
}

.detail-layout {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 34px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
}

.detail-card,
.sidebar-card,
.text-card {
  margin-bottom: 22px;
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.detail-badges,
.detail-meta,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--red));
  font-size: 13px;
  font-weight: 900;
}

.detail-card h1 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.detail-meta span,
.feature-list span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-600);
  font-weight: 800;
}

.one-line {
  color: var(--slate-700);
  font-size: 20px;
  font-weight: 800;
}

.detail-card h2,
.sidebar-card h2,
.text-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.detail-card p,
.text-card p {
  color: var(--slate-700);
}

.poster-card {
  padding: 0;
  overflow: hidden;
}

.poster--sidebar {
  aspect-ratio: 3 / 4;
  border-radius: 0;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: center;
}

.compact-thumb {
  position: relative;
  height: 70px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--slate-900);
}

.compact-content {
  min-width: 0;
  display: grid;
  gap: 3px;
}

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

.compact-content small {
  color: var(--slate-500);
}

.narrow-content {
  max-width: 900px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, #020617, #0f172a 55%, #111827);
}

.site-footer__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-logo {
  color: var(--white);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
}

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

.footer-small,
.footer-brand p {
  margin: 12px 0 0;
  color: #94a3b8;
}

.footer-bottom {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  color: #94a3b8;
  font-size: 14px;
}

[data-card].is-hidden {
  display: none;
}

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

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

  .movie-grid--three,
  .movie-grid--four,
  .featured-grid,
  .category-card-grid,
  .ranking-list--home,
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .reset-button {
    grid-column: span 2;
  }

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

@media (max-width: 720px) {
  .hero-carousel {
    min-height: 620px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 94px;
  }

  .hero-arrow {
    display: none;
  }

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

  .movie-grid--three,
  .movie-grid--four,
  .featured-grid,
  .category-card-grid,
  .ranking-list--home,
  .site-footer__inner,
  .filter-panel,
  .search-box-large {
    grid-template-columns: 1fr;
  }

  .reset-button {
    grid-column: auto;
  }

  .ranking-item a {
    grid-template-columns: 42px 74px 1fr;
  }

  .ranking-heat {
    grid-column: 3;
  }

  .player-status {
    display: none;
  }

  .player-start {
    min-width: 118px;
    min-height: 118px;
  }

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