:root {
  --bg: #fffaf0;
  --bg-strong: #fffbeb;
  --paper: #ffffff;
  --ink: #451a03;
  --text: #78350f;
  --muted: #a16207;
  --line: #fde68a;
  --brand: #d97706;
  --brand-dark: #92400e;
  --brand-soft: #fef3c7;
  --shadow: 0 18px 45px rgba(146, 64, 14, 0.13);
  --radius: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(251, 191, 36, 0.22), transparent 28%),
    linear-gradient(180deg, #fff7ed 0%, #fffaf0 36%, #ffffff 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 235, 0.93);
  border-bottom: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 6px 24px rgba(146, 64, 14, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--max);
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.28);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-copy strong {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0.02em;
}

.logo-copy em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.header-search {
  position: relative;
  width: 265px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-menu input,
.tool-search input,
.listing-tools select {
  width: 100%;
  border: 1px solid #f5d78b;
  color: var(--ink);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  height: 38px;
  padding: 0 82px 0 16px;
  border-radius: 999px;
}

.header-search input:focus,
.mobile-menu input:focus,
.tool-search input:focus,
.listing-tools select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.header-search button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 30px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand);
  cursor: pointer;
}

.header-search button:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: var(--brand-soft);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--brand-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 20px;
  display: grid;
  gap: 12px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
}

.mobile-menu form {
  display: grid;
  gap: 10px;
}

.mobile-menu input {
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
}

.mobile-menu button {
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: var(--brand);
}

main {
  min-height: 70vh;
}

.hero-slider {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

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

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

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

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(69, 26, 3, 0.88) 0%, rgba(120, 53, 15, 0.74) 42%, rgba(120, 53, 15, 0.18) 100%),
    radial-gradient(circle at 72% 18%, rgba(251, 191, 36, 0.32), transparent 32%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  min-height: 560px;
  margin: 0 auto;
  padding: 78px 20px 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 44px;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(254, 243, 199, 0.38);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(69, 26, 3, 0.32);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fbbf24;
  box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.18);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 28px;
  color: #fffbeb;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

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

.primary-btn,
.secondary-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 18px 34px rgba(217, 119, 6, 0.35);
}

.secondary-btn {
  color: #fffbeb;
  border: 1px solid rgba(254, 243, 199, 0.45);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-side-card {
  border: 1px solid rgba(254, 243, 199, 0.28);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 251, 235, 0.16);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-side-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-side-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
}

.hero-side-card p {
  margin: 0;
  color: #fde68a;
  line-height: 1.65;
}

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

.hero-dots button {
  width: 36px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 54px;
  background: #fbbf24;
}

.page-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #451a03, #92400e 50%, #f59e0b);
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.23), transparent 31%);
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 20px;
  color: #ffffff;
}

.page-banner h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
}

.page-banner p {
  max-width: 760px;
  margin: 0;
  color: #fffbeb;
  font-size: 18px;
  line-height: 1.8;
}

.container,
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 20px;
}

.section + .section {
  padding-top: 18px;
}

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

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.section-head p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-link {
  color: var(--brand-dark);
  background: var(--brand-soft);
  white-space: nowrap;
}

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

.category-tile,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 174px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.category-tile img,
.category-overview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-tile:hover img,
.category-overview-card:hover img,
.movie-card:hover img,
.horizontal-card:hover img {
  transform: scale(1.07);
}

.category-tile::after,
.category-overview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(69, 26, 3, 0.86) 100%);
}

.category-tile-content,
.category-overview-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
}

.category-tile h3,
.category-overview-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.category-tile p,
.category-overview-card p {
  margin: 0;
  color: #fde68a;
  line-height: 1.55;
}

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

.movie-card,
.horizontal-card,
.detail-card,
.search-panel {
  border: 1px solid rgba(245, 215, 139, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(146, 64, 14, 0.09);
}

.movie-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover,
.horizontal-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(146, 64, 14, 0.18);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--brand-soft);
}

.movie-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0.8;
}

.movie-duration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.62);
}

.movie-card-body {
  padding: 16px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.movie-type,
.tag-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 9px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  background: var(--brand-soft);
}

.movie-card-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.movie-card-title a:hover,
.horizontal-body h3 a:hover,
.detail-side a:hover {
  color: var(--brand);
}

.movie-card-text {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.movie-card-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 13px;
}

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

.horizontal-card {
  position: relative;
  padding: 14px;
  display: grid;
  grid-template-columns: auto 128px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-number {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #b45309);
}

.horizontal-poster {
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.horizontal-poster img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.horizontal-body h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.horizontal-body p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.listing-tools {
  margin: 0 0 24px;
  padding: 16px;
  border: 1px solid rgba(245, 215, 139, 0.78);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 150px 150px 165px;
  gap: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(146, 64, 14, 0.08);
}

.tool-search input,
.listing-tools select {
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
}

.empty-state {
  display: none;
  padding: 40px 20px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed #f0c466;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

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

.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.detail-heading {
  margin-bottom: 22px;
}

.detail-heading h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.14;
}

.detail-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.detail-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-dark);
  font-weight: 800;
  background: var(--brand-soft);
}

.player-shell {
  position: relative;
  overflow: hidden;
  margin: 28px 0;
  border-radius: 26px;
  background: #111827;
  box-shadow: 0 22px 50px rgba(69, 26, 3, 0.18);
}

.player-shell video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #111827;
  cursor: pointer;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 42%, rgba(245, 158, 11, 0.42), transparent 27%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start strong {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 18px 34px rgba(217, 119, 6, 0.34);
}

.player-start span {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

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

.detail-card {
  margin: 24px 0;
  padding: 24px;
}

.detail-card h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 26px;
}

.detail-card p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list .tag-chip {
  margin-bottom: 0;
}

.detail-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.detail-cover,
.side-block {
  border: 1px solid rgba(245, 215, 139, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(146, 64, 14, 0.09);
  overflow: hidden;
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-cover div,
.side-block {
  padding: 18px;
}

.detail-cover h2,
.side-block h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
}

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

.side-links a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  background: var(--brand-soft);
}

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

.search-panel {
  margin-bottom: 24px;
  padding: 22px;
}

.search-panel h2 {
  margin: 0 0 8px;
  color: var(--ink);
}

.search-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  margin-top: 30px;
  border-top: 1px solid rgba(251, 191, 36, 0.35);
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-logo {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.footer-inner p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--brand-dark);
  font-weight: 800;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 34px;
  color: var(--muted);
}

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

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

  .hero-side-card {
    max-width: 440px;
  }

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

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

  .detail-side {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

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

  .mobile-toggle {
    display: block;
  }

  .header-inner {
    height: 64px;
  }

  .hero-slider,
  .hero-inner {
    min-height: 640px;
  }

  .hero-inner {
    padding-top: 46px;
    padding-bottom: 72px;
  }

  .category-tiles,
  .category-overview-grid,
  .movie-grid,
  .ranking-list,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing-tools {
    grid-template-columns: 1fr 1fr;
  }

  .tool-search {
    grid-column: 1 / -1;
  }

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

  .rank-number {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
  }

  .horizontal-poster {
    grid-column: 1;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .logo-copy em {
    display: none;
  }

  .logo-copy strong {
    font-size: 18px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 36px;
  }

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

  .category-tiles,
  .category-overview-grid,
  .movie-grid,
  .ranking-list,
  .related-grid,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .listing-tools {
    grid-template-columns: 1fr;
  }

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

  .horizontal-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .horizontal-body p {
    display: none;
  }

  .player-start strong {
    width: 68px;
    height: 68px;
  }
}
