:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --amber: #f59e0b;
  --amber-soft: #fffbeb;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(31, 41, 55, 0.12);
  --soft-shadow: 0 10px 26px rgba(31, 41, 55, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.12);
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand,
.mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.32);
  font-size: 14px;
}

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

.nav-link {
  padding: 9px 14px;
  border-radius: 999px;
  color: #4b5563;
  font-weight: 650;
  transition: 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange-dark);
  background: #fff7ed;
}

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

.header-search input,
.mobile-search input,
.filter-bar input,
.search-panel input {
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
  background: var(--white);
  min-width: 220px;
  transition: 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.search-panel input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.header-search button,
.mobile-search button {
  border: 0;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: #fff7ed;
  color: var(--orange-dark);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 24px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 16px 22px 22px;
  border-top: 1px solid #fed7aa;
  background: var(--white);
}

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

.mobile-links {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.hero-slider {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #fff7ed;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.26), transparent 26%),
    linear-gradient(90deg, rgba(255, 247, 237, 0.96) 0%, rgba(255, 247, 237, 0.82) 40%, rgba(255, 247, 237, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 70px;
  max-width: 1120px;
}

.hero-content h1 {
  margin: 14px 0 10px;
  max-width: 760px;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #111827;
}

.hero-content h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--orange-dark);
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 24px;
  font-size: 19px;
  color: #374151;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker strong {
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  padding: 6px 12px;
  letter-spacing: 0;
}

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

.primary-button,
.secondary-button,
.ghost-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  transition: 0.22s ease;
  border: 2px solid transparent;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.28);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.light-button:hover {
  transform: translateY(-2px) scale(1.01);
}

.secondary-button {
  color: var(--orange-dark);
  background: var(--white);
  border-color: #fdba74;
  box-shadow: var(--soft-shadow);
}

.ghost-button {
  color: #374151;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(251, 146, 60, 0.4);
}

.ghost-button.warm {
  color: var(--orange-dark);
}

.light-button {
  color: var(--orange-dark);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: #ffedd5;
  color: #c2410c;
  font-size: 13px;
  font-weight: 700;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.hero-controls button {
  border: 0;
  background: var(--white);
  color: var(--orange-dark);
  cursor: pointer;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  font-size: 22px;
  font-weight: 800;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px !important;
  height: 10px !important;
  padding: 0;
  background: #fed7aa !important;
}

.hero-dot.is-active {
  width: 28px !important;
  background: var(--orange) !important;
}

.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.55;
  animation: pulseGlow 5s ease-in-out infinite;
}

.hero-orb-one {
  top: 110px;
  left: 8%;
  width: 210px;
  height: 210px;
  background: #fb923c;
}

.hero-orb-two {
  right: 7%;
  bottom: 130px;
  width: 280px;
  height: 280px;
  background: #f59e0b;
  animation-delay: 1s;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.72;
  }
}

.feature-strip {
  max-width: 1180px;
  margin: -56px auto 0;
  padding: 0 22px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.category-card,
.category-overview-card,
.story-card,
.side-card,
.search-panel,
.filter-bar {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(251, 146, 60, 0.14);
  border-radius: 28px;
  box-shadow: var(--soft-shadow);
}

.feature-card {
  padding: 30px;
  text-align: center;
}

.feature-card span,
.category-icon,
.cta-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  font-size: 28px;
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.26);
}

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

.feature-card p,
.category-card p,
.category-overview-card p {
  margin: 0;
  color: var(--muted);
}

.content-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 78px 22px;
}

.bg-soft,
.bg-warm {
  max-width: none;
  padding-left: max(22px, calc((100% - 1240px) / 2 + 22px));
  padding-right: max(22px, calc((100% - 1240px) / 2 + 22px));
}

.bg-soft {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.bg-warm {
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.section-heading {
  text-align: center;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}

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

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

.movie-card {
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.movie-card.is-hidden,
.horizontal-card.is-hidden {
  display: none;
}

.movie-poster {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 245px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.compact .movie-poster {
  min-height: 170px;
}

.movie-poster::after,
.horizontal-poster::after,
.detail-cover::after,
.mini-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.48));
}

.poster-id {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 36px;
  font-weight: 900;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.poster-type,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  left: 14px;
  right: auto;
  color: #111827;
  background: #fde047;
}

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

.movie-meta-row,
.inline-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.movie-meta-row span,
.inline-info span {
  border-radius: 999px;
  background: #f8fafc;
  padding: 3px 8px;
}

.movie-card h3,
.horizontal-card h3 {
  margin: 10px 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.compact h3 {
  font-size: 16px;
}

.movie-card h3 a:hover,
.horizontal-card h3 a:hover {
  color: var(--orange-dark);
}

.movie-card p,
.horizontal-card p {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 14px;
}

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

.category-card,
.category-overview-card {
  padding: 26px;
  transition: 0.22s ease;
}

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

.category-overview-main,
.category-card > a {
  display: block;
  text-align: center;
}

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

.mini-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: #fff7ed;
  transition: 0.2s ease;
}

.mini-link:hover {
  background: #ffedd5;
}

.mini-thumb {
  position: relative;
  flex: 0 0 48px;
  height: 48px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.mini-link strong,
.mini-link em {
  display: block;
}

.mini-link strong {
  font-size: 14px;
  line-height: 1.3;
}

.mini-link em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 34% 1fr;
  min-height: 210px;
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  box-shadow: var(--soft-shadow);
  transition: 0.24s ease;
}

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

.horizontal-poster {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.horizontal-poster > span:not(.rank-badge) {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: 30px;
  font-weight: 900;
}

.horizontal-body {
  padding: 22px;
}

.section-action {
  text-align: center;
  margin-top: 34px;
}

.cta-section {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: var(--white);
  padding: 90px 22px;
  text-align: center;
}

.cta-section > div {
  max-width: 760px;
  margin: 0 auto;
}

.cta-icon {
  background: rgba(255, 255, 255, 0.18);
}

.cta-section h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
}

.cta-section p {
  margin: 0 0 26px;
  font-size: 19px;
  opacity: 0.94;
}

.page-hero {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: var(--white);
  padding: 86px 22px;
  text-align: center;
}

.page-hero > div {
  max-width: 840px;
  margin: 0 auto;
}

.page-hero .eyebrow {
  color: #ffedd5;
}

.page-hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
}

.page-hero p {
  margin: 0;
  font-size: 18px;
  opacity: 0.94;
}

.filter-bar,
.search-panel {
  margin-bottom: 28px;
  padding: 24px;
}

.filter-bar label,
.search-panel label {
  display: grid;
  gap: 9px;
  color: #374151;
  font-weight: 800;
}

.search-panel {
  display: grid;
  gap: 18px;
}

.category-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filter-buttons button {
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--white);
  color: var(--orange-dark);
  cursor: pointer;
  font-weight: 750;
}

.category-filter-buttons button.active {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.detail-hero {
  position: relative;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.detail-hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.36)),
    radial-gradient(circle at 78% 20%, rgba(249, 115, 22, 0.32), transparent 25%);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  padding: 44px 22px 70px;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 42px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 42px;
  align-items: end;
}

.detail-cover {
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.detail-cover span {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  font-size: 42px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

.detail-info .eyebrow {
  color: #fed7aa;
}

.detail-info h1 {
  margin: 12px 0 14px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
}

.detail-one-line {
  max-width: 840px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff7ed;
  font-weight: 800;
}

.detail-tags .tag-pill {
  background: rgba(255, 255, 255, 0.16);
  color: #ffedd5;
}

.player-section {
  max-width: 1120px;
  margin: -64px auto 0;
  padding: 0 22px 40px;
  position: relative;
  z-index: 5;
}

.player-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.32);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #111827;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.34), rgba(17, 24, 39, 0.72));
  cursor: pointer;
  text-align: center;
  padding: 24px;
}

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

.play-circle {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--orange-dark);
  background: var(--white);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
  font-size: 34px;
}

.player-overlay strong {
  font-size: clamp(20px, 4vw, 34px);
}

.detail-content {
  padding-top: 40px;
}

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

.story-card,
.side-card {
  padding: 30px;
}

.story-card h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.story-card p {
  margin: 0 0 28px;
  color: #475569;
  font-size: 17px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  margin: 0 0 24px;
}

.side-card dt {
  color: var(--muted);
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  color: #111827;
}

.full-width {
  width: 100%;
}

.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 48px 22px;
}

.footer-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-shell p {
  max-width: 520px;
  margin: 14px 0 0;
  color: #9ca3af;
}

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

.footer-links a {
  color: #d1d5db;
}

.footer-links a:hover {
  color: #fdba74;
}

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

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

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

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

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

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

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.96), rgba(255, 247, 237, 0.78));
  }

  .feature-strip,
  .horizontal-grid,
  .article-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-top: 0;
    padding-top: 24px;
  }

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

  .horizontal-card {
    grid-template-columns: 38% 1fr;
  }

  .detail-cover {
    min-height: 360px;
    max-width: 300px;
  }

  .footer-shell {
    display: grid;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    padding: 12px 16px;
  }

  .brand,
  .footer-brand,
  .mobile-brand {
    font-size: 17px;
  }

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

  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .hero-actions,
  .page-actions {
    flex-direction: column;
  }

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

  .content-section,
  .bg-soft,
  .bg-warm {
    padding: 52px 16px;
  }

  .movie-grid,
  .small-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .horizontal-poster {
    min-height: 190px;
  }

  .movie-poster {
    min-height: 230px;
  }

  .page-hero {
    padding: 62px 16px;
  }

  .detail-hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .player-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .player-card {
    border-radius: 20px;
  }

  .side-card dl {
    grid-template-columns: 1fr;
  }
}
