:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-50: #fff7ed;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: rgba(146, 64, 14, 0.18);
  --shadow: 0 18px 48px rgba(120, 53, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--amber-50), #ffffff 42%, var(--orange-50));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, var(--amber-100), var(--orange-50));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(120, 53, 15, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner,
.footer-inner,
.page-section,
.hero-content-shell,
.quick-inner,
.inner-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.3);
  font-size: 15px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  color: var(--amber-900);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--amber-600);
  font-size: 12px;
}

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

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

.nav-link:hover {
  color: var(--amber-500);
}

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

.header-search input,
.mobile-search input,
.quick-search input,
.filter-toolbar input,
.filter-toolbar select {
  border: 1px solid rgba(217, 119, 6, 0.28);
  outline: none;
  color: var(--amber-900);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 11px 16px;
  min-width: 220px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.quick-search input:focus,
.filter-toolbar input:focus,
.filter-toolbar select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.header-search button,
.mobile-search button,
.quick-search button,
.btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 750;
  cursor: pointer;
}

.header-search button,
.mobile-search button,
.quick-search button,
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.22);
}

.btn-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(254, 243, 199, 0.82);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--amber-900);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  padding: 16px;
}

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

.mobile-search {
  margin-bottom: 12px;
}

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

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
  color: var(--amber-800);
  background: var(--amber-50);
  border-radius: 12px;
  font-weight: 650;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--amber-900);
}

.hero-track,
.hero-slide,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

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

.hero-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.1));
}

.hero-content-shell {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 88px;
}

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

.hero-tags,
.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-tags {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-chip,
.chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--amber-700);
  background: var(--amber-100);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
}

.hero-chip {
  color: white;
  background: rgba(245, 158, 11, 0.88);
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.hero p {
  margin: 0 0 28px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.75;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 46px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 64px;
  background: var(--amber-500);
}

.quick-panel {
  padding: 42px 0 20px;
}

.quick-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.quick-inner h2,
.page-hero h1,
.section-heading h2 {
  margin: 0;
  color: var(--amber-900);
  letter-spacing: -0.03em;
}

.quick-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.quick-inner p,
.section-heading p,
.page-hero p {
  color: var(--amber-700);
  line-height: 1.8;
}

.quick-search {
  justify-content: flex-end;
}

.quick-search input {
  width: min(100%, 380px);
}

.page-section {
  padding: 56px 0;
}

.soft-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.72), rgba(255, 247, 237, 0.72));
}

.section-heading {
  margin-bottom: 28px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--amber-600);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
}

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

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

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

.movie-card,
.special-card,
.category-overview-card {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(146, 64, 14, 0.08);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(120, 53, 15, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover,
.special-card:hover,
.category-overview-card:hover,
.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(120, 53, 15, 0.16);
}

.movie-link,
.horizontal-link,
.special-link,
.rank-link {
  display: block;
  height: 100%;
}

.movie-cover {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.movie-cover img,
.horizontal-cover img,
.special-card img,
.category-tile img,
.detail-poster img,
.category-covers img,
.rank-card img,
.related-list .movie-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover img,
.special-card:hover img,
.category-tile:hover img,
.rank-card:hover img {
  transform: scale(1.08);
}

.movie-year {
  position: absolute;
  top: 12px;
  right: 12px;
  color: white;
  background: rgba(0, 0, 0, 0.54);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.movie-body,
.horizontal-body,
.category-overview-body {
  padding: 18px;
}

.movie-meta-row {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.movie-card h3,
.horizontal-body h3,
.special-copy h3,
.rank-info strong {
  margin: 0 0 10px;
  color: var(--amber-900);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover h3,
.horizontal-link:hover h3,
.special-card:hover h3,
.rank-card:hover strong {
  color: var(--amber-600);
}

.movie-card p,
.horizontal-body p,
.special-copy p,
.category-overview-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span,
.detail-tags a {
  color: var(--amber-700);
  background: var(--amber-50);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 650;
}

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

.movie-card-horizontal .horizontal-link {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.horizontal-cover {
  min-height: 168px;
  overflow: hidden;
}

.movie-foot,
.rank-info em {
  display: block;
  color: #9ca3af;
  font-size: 13px;
  font-style: normal;
}

.special-link {
  position: relative;
  min-height: 460px;
}

.special-card img {
  position: absolute;
  inset: 0;
}

.special-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.08));
}

.special-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 760px;
  padding: 46px;
  color: white;
}

.special-copy h3 {
  color: white;
  font-size: clamp(30px, 4vw, 50px);
}

.special-copy p {
  color: rgba(255, 255, 255, 0.88);
  -webkit-line-clamp: 4;
}

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

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

.rank-card {
  background: white;
  border: 1px solid rgba(146, 64, 14, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(120, 53, 15, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rank-link {
  display: grid;
  grid-template-columns: 62px 92px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.rank-number {
  color: var(--amber-500);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.rank-card img {
  height: 70px;
  border-radius: 12px;
}

.rank-info strong {
  display: block;
  margin-bottom: 6px;
}

.section-more {
  margin-top: 28px;
  text-align: center;
}

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

.category-tile {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.24));
}

.category-tile img {
  position: absolute;
  inset: 0;
}

.category-tile span,
.category-tile em {
  position: relative;
  z-index: 2;
  display: block;
  color: white;
}

.category-tile span {
  padding: 120px 20px 8px;
  font-size: 24px;
  font-weight: 850;
}

.category-tile em {
  padding: 0 20px 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
}

.inner-page {
  padding-top: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 10px 0 22px;
  color: var(--amber-700);
  font-size: 14px;
}

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

.page-hero {
  padding: 50px;
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.9), rgba(255, 247, 237, 0.95));
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.small-hero p {
  max-width: 780px;
  margin-bottom: 0;
}

.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: end;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.filter-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--amber-800);
  font-size: 13px;
  font-weight: 800;
}

.filter-toolbar input {
  min-width: min(420px, 75vw);
}

.empty-state {
  display: none;
  margin: 28px 0 0;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: white;
  border-radius: 18px;
}

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

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

.category-overview-card a {
  display: grid;
  grid-template-columns: 220px 1fr;
  height: 100%;
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 210px;
  overflow: hidden;
}

.category-overview-body h2 {
  margin: 0 0 12px;
  color: var(--amber-900);
  font-size: 28px;
}

.category-overview-body span {
  display: inline-flex;
  margin-top: 18px;
  color: white;
  background: var(--amber-500);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
}

.detail-hero {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 36px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.96), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.detail-poster {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(120, 53, 15, 0.16);
}

.detail-intro h1 {
  margin: 16px 0;
  color: var(--amber-900);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-one-line {
  color: var(--amber-800);
  font-size: 18px;
  line-height: 1.8;
}

.player-section,
.detail-block {
  margin-bottom: 32px;
  padding: 26px;
  background: white;
  border: 1px solid rgba(146, 64, 14, 0.08);
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(120, 53, 15, 0.08);
}

.player-section h2,
.detail-block h2,
.related-sidebar h2 {
  margin: 0 0 18px;
  color: var(--amber-900);
  font-size: 26px;
}

.movie-player {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.movie-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  width: 100%;
  color: white;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.28));
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

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

.play-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: var(--amber-900);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
}

.detail-block p {
  margin: 0;
  color: #4b5563;
  line-height: 1.9;
  font-size: 16px;
}

.warm-block {
  background: linear-gradient(135deg, var(--amber-50), var(--orange-50));
}

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

.info-list div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(146, 64, 14, 0.09);
}

.info-list dt {
  color: var(--amber-800);
  font-weight: 850;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.related-sidebar {
  position: sticky;
  top: 92px;
  align-self: start;
}

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

.related-list .movie-card {
  border-radius: 18px;
}

.related-list .movie-card p,
.related-list .tag-row {
  display: none;
}

.related-list .movie-cover {
  aspect-ratio: 16 / 9;
}

.site-footer {
  margin-top: 70px;
  background: linear-gradient(180deg, var(--amber-50), var(--amber-100));
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 36px;
  padding: 46px 0;
}

.footer-brand p,
.footer-col a {
  color: var(--amber-700);
  line-height: 1.8;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--amber-900);
}

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

.footer-col a:hover {
  color: var(--amber-500);
}

.footer-bottom {
  padding: 18px;
  color: var(--amber-600);
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.filter-item.is-hidden {
  display: none;
}

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

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

  .header-search {
    display: none;
  }

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

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

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

  .related-sidebar {
    position: static;
  }
}

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

  .hero-content-shell {
    padding-bottom: 88px;
  }

  .quick-inner,
  .detail-hero,
  .category-overview-card a,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .quick-search {
    justify-content: stretch;
  }

  .quick-search,
  .mobile-search {
    flex-direction: column;
    align-items: stretch;
  }

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

  .movie-grid,
  .three-cols,
  .compact-grid,
  .category-grid,
  .category-overview-grid,
  .horizontal-grid,
  .rank-grid,
  .full-rank {
    grid-template-columns: 1fr;
  }

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

  .horizontal-cover {
    aspect-ratio: 16 / 9;
  }

  .page-hero {
    padding: 30px;
  }

  .filter-toolbar,
  .filter-toolbar label,
  .filter-toolbar input,
  .filter-toolbar select {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 540px) {
  .header-inner,
  .footer-inner,
  .page-section,
  .hero-content-shell,
  .quick-inner,
  .inner-page {
    width: min(100% - 22px, 1180px);
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .rank-link {
    grid-template-columns: 52px 82px 1fr;
  }

  .special-copy {
    padding: 28px;
  }

  .player-section,
  .detail-block {
    padding: 18px;
  }
}
