:root {
  --rose: #e11d48;
  --rose-dark: #be123c;
  --pink: #db2777;
  --amber: #f59e0b;
  --orange: #f97316;
  --green: #10b981;
  --blue: #2563eb;
  --purple: #7c3aed;
  --cyan: #0891b2;
  --teal: #0d9488;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow: 0 20px 45px rgba(190, 18, 60, 0.12);
  --shadow-strong: 0 28px 60px rgba(17, 24, 39, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(135deg, #fff1f2 0%, #ffffff 45%, #fffbeb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(244, 63, 94, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.08);
}

.header-inner {
  max-width: 1180px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #fb7185 0%, #db2777 100%);
  box-shadow: 0 12px 28px rgba(219, 39, 119, 0.28);
}

.brand-name {
  display: block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--rose), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  color: var(--gray-500);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--gray-800);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 99px;
}

.page-main {
  min-height: 72vh;
  padding-top: 68px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  height: 640px;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

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

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-slide.active .hero-image {
  animation: heroZoom 7s ease forwards;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(190, 18, 60, 0.95) 0%, rgba(219, 39, 119, 0.82) 42%, rgba(245, 158, 11, 0.78) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.52), rgba(17, 24, 39, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  padding-top: 20px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.hero-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fde68a;
  box-shadow: 0 0 18px rgba(253, 230, 138, 0.8);
}

.hero h1,
.hero h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero h1 span,
.hero h2 span {
  color: #fde68a;
}

.hero-text {
  max-width: 720px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-primary {
  color: var(--rose);
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(255, 255, 255, 0.24);
}

.btn-primary:hover {
  background: #fff1f2;
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 120px;
  background: linear-gradient(0deg, #fff1f2 0%, rgba(255, 241, 242, 0) 100%);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 44px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

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

.hero-dot.active {
  width: 34px;
  background: #ffffff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 26px;
}

.hero-next {
  right: 26px;
}

.section {
  padding: 64px 0;
}

.section-soft {
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 52%, #eff6ff 100%);
}

.section-rose {
  background: linear-gradient(135deg, #fff1f2 0%, #fdf2f8 100%);
}

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

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: var(--shadow);
}

.section-title h2,
.page-hero h1,
.detail-title h1 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-title p,
.page-hero p,
.detail-title p {
  margin: 6px 0 0;
  color: var(--gray-600);
}

.more-link {
  color: var(--rose);
  font-weight: 900;
}

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(244, 63, 94, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  border-color: rgba(244, 63, 94, 0.34);
  box-shadow: var(--shadow-strong);
  transform: translateY(-5px);
}

.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fecdd3, #fde68a);
}

.movie-card.horizontal .movie-poster {
  width: 170px;
  min-width: 170px;
  aspect-ratio: 4 / 5;
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0));
}

.type-pill,
.score-pill,
.rank-pill {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.type-pill {
  left: 12px;
  background: linear-gradient(135deg, var(--rose), var(--pink));
}

.score-pill {
  right: 12px;
  background: rgba(17, 24, 39, 0.72);
}

.rank-pill {
  left: 12px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.play-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.play-hover span {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.26);
}

.movie-card:hover .play-hover {
  opacity: 1;
}

.movie-body {
  padding: 16px;
}

.movie-body h3 {
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-body h3 {
  color: var(--rose);
}

.movie-body p {
  margin: 0 0 12px;
  color: var(--gray-600);
  font-size: 14px;
}

.line-clamp-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--rose-dark);
  background: #ffe4e6;
  font-size: 12px;
  font-weight: 800;
}

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

.movie-card.horizontal {
  display: flex;
  min-height: 218px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border-radius: 24px;
  color: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.category-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -44px;
  bottom: -44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.accent-rose { background: linear-gradient(135deg, #e11d48, #db2777); }
.accent-pink { background: linear-gradient(135deg, #db2777, #f472b6); }
.accent-amber { background: linear-gradient(135deg, #f59e0b, #f97316); }
.accent-green { background: linear-gradient(135deg, #10b981, #059669); }
.accent-blue { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.accent-orange { background: linear-gradient(135deg, #f97316, #fb7185); }
.accent-purple { background: linear-gradient(135deg, #7c3aed, #db2777); }
.accent-cyan { background: linear-gradient(135deg, #0891b2, #2563eb); }
.accent-indigo { background: linear-gradient(135deg, #4f46e5, #7c3aed); }
.accent-teal { background: linear-gradient(135deg, #0d9488, #10b981); }

.page-hero {
  padding: 72px 0 46px;
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 63, 94, 0.18), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(245, 158, 11, 0.22), transparent 30%),
    linear-gradient(135deg, #fff1f2 0%, #ffffff 50%, #fffbeb 100%);
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 700;
}

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

.search-panel {
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(244, 63, 94, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(12px);
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.search-input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--gray-900);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
  border-color: rgba(244, 63, 94, 0.62);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-chip {
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  transform: translateY(-1px);
}

.detail-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.detail-poster {
  position: sticky;
  top: 92px;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

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

.detail-info {
  padding: 28px;
  border: 1px solid rgba(244, 63, 94, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.detail-title h1 {
  margin-bottom: 12px;
}

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

.fact {
  padding: 13px;
  border-radius: 16px;
  background: #fff1f2;
}

.fact span {
  display: block;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 800;
}

.fact strong {
  display: block;
  margin-top: 3px;
  color: var(--gray-900);
  font-size: 15px;
}

.player-card {
  overflow: hidden;
  margin-top: 28px;
  border-radius: 28px;
  background: #0b0f1a;
  box-shadow: var(--shadow-strong);
}

.player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  cursor: pointer;
}

.player-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18));
  cursor: pointer;
}

.player-start span {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.94);
  font-size: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  transition: transform 0.2s ease;
}

.player-start:hover span {
  transform: scale(1.08);
}

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

.player-state {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 5;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
  pointer-events: none;
}

.content-block {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(244, 63, 94, 0.12);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
}

.content-block h2 {
  margin: 0 0 16px;
  color: var(--gray-900);
  font-size: 26px;
}

.content-block p {
  margin: 0 0 16px;
  color: var(--gray-700);
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(244, 63, 94, 0.16);
  background: linear-gradient(135deg, #fff1f2 0%, #fdf2f8 50%, #fffbeb 100%);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer-inner h3,
.footer-inner h4 {
  margin: 0 0 12px;
  color: var(--gray-900);
}

.footer-inner p,
.footer-inner a {
  color: var(--gray-600);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  padding: 18px 0;
  border-top: 1px solid rgba(244, 63, 94, 0.12);
  color: var(--gray-500);
  text-align: center;
  font-size: 13px;
}

.empty-state {
  display: none;
  padding: 40px;
  border-radius: 22px;
  color: var(--gray-600);
  background: #ffffff;
  text-align: center;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

@media (max-width: 1024px) {
  .movie-grid,
  .movie-grid.large-first {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .detail-layout {
    grid-template-columns: 300px minmax(0, 1fr);
  }

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

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(244, 63, 94, 0.14);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff1f2;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    height: 620px;
  }

  .hero-arrow {
    display: none;
  }

  .section-head,
  .page-hero .container {
    display: block;
  }

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

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

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

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

  .detail-poster {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    padding: 0 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    padding-top: 0;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 44px 0;
  }

  .movie-grid,
  .movie-grid.large-first,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card.horizontal {
    display: block;
  }

  .movie-card.horizontal .movie-poster {
    width: 100%;
    min-width: auto;
    aspect-ratio: 3 / 4;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .detail-info,
  .content-block {
    padding: 20px;
  }

  .player-start span {
    width: 68px;
    height: 68px;
    font-size: 30px;
  }
}
