:root {
  --peach-50: #fff5f2;
  --peach-100: #ffe5e0;
  --peach-200: #ffd4e5;
  --peach-300: #ffc9b9;
  --peach-400: #ffb5a7;
  --peach-500: #ffa07a;
  --peach-600: #ff9999;
  --pink-50: #fff0f5;
  --pink-100: #ffe4e1;
  --pink-300: #ffb6c1;
  --pink-400: #ff9eb5;
  --pink-500: #ff8fa3;
  --coral-300: #ffb0a8;
  --text: #2d2d35;
  --muted: #687078;
  --line: rgba(255, 181, 167, 0.34);
  --glass: rgba(255, 255, 255, 0.76);
  --shadow: 0 20px 45px rgba(255, 159, 122, 0.25);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, var(--peach-50), var(--pink-100));
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--peach-400), var(--pink-400));
  box-shadow: 0 10px 25px rgba(255, 143, 163, 0.35);
}

.brand-name,
.gradient-text {
  font-size: 24px;
  background: linear-gradient(135deg, var(--peach-600), var(--pink-500), var(--pink-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-link {
  color: #585c65;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--peach-600);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.header-search input {
  width: 210px;
  border: 0;
  outline: none;
  background: transparent;
  padding: 8px 4px 8px 12px;
}

.header-search button,
.search-page-form button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--peach-500), var(--pink-500));
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 8px 20px rgba(255, 143, 163, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 181, 167, 0.16);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  border-radius: 99px;
  background: var(--peach-600);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--peach-50);
  color: #5b5f69;
  font-weight: 600;
}

.hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--peach-400), var(--pink-400));
}

.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-image,
.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-shade,
.detail-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38, 17, 28, 0.82), rgba(70, 21, 41, 0.55), rgba(255, 181, 167, 0.14));
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.24), transparent 32%), linear-gradient(0deg, rgba(255, 245, 242, 0.92), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(720px, 100%);
  color: #fff;
  padding-top: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #51333a;
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 span,
.hero-copy h2 span {
  display: block;
  margin-top: 8px;
}

.hero-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 36px);
}

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

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

.btn-peach,
.btn-glass,
.btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-peach {
  color: #fff;
  background: linear-gradient(135deg, var(--peach-500), var(--pink-500));
  box-shadow: var(--shadow);
}

.btn-glass {
  color: #4f3d42;
  background: rgba(255, 255, 255, 0.86);
}

.btn-text {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-peach:hover,
.btn-glass:hover,
.btn-text:hover,
.card-hover:hover {
  transform: translateY(-6px);
}

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

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-dot.is-active {
  width: 54px;
  background: #fff;
}

.hero-recommend-panel {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-top: -72px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.recommend-copy span {
  color: var(--peach-600);
  font-weight: 800;
}

.recommend-copy h2 {
  margin: 8px 0;
  font-size: 28px;
}

.recommend-copy p {
  margin: 0;
  color: var(--muted);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.compact-grid.small {
  grid-template-columns: repeat(2, 1fr);
}

.compact-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background: var(--peach-300);
  box-shadow: 0 14px 28px rgba(255, 159, 122, 0.18);
}

.compact-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.compact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 64%);
}

.compact-card span,
.compact-card small {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
}

.compact-card span {
  bottom: 34px;
  font-weight: 800;
}

.compact-card small {
  bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
}

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

.section-block {
  margin-top: 76px;
}

.section-heading,
.rank-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-heading {
  justify-content: flex-start;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
}

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

.more-link {
  color: var(--peach-600);
  font-weight: 800;
}

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

.category-tile {
  position: relative;
  display: grid;
  min-height: 220px;
  align-content: end;
  overflow: hidden;
  padding: 18px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--peach-400), var(--pink-400));
  box-shadow: 0 14px 28px rgba(255, 159, 122, 0.18);
}

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

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

.category-tile span,
.category-tile small {
  position: relative;
  z-index: 2;
}

.category-tile span {
  font-size: 22px;
  font-weight: 900;
}

.category-tile small {
  color: rgba(255, 255, 255, 0.82);
}

.category-tile:hover img {
  transform: scale(1.08);
}

.tool-bar {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(255, 159, 122, 0.12);
}

.tool-bar input,
.tool-bar select,
.search-page-form input {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.tool-bar input {
  width: min(460px, 100%);
  padding: 12px 18px;
}

.tool-bar select {
  padding: 12px 18px;
}

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 181, 167, 0.22);
  box-shadow: 0 12px 28px rgba(255, 159, 122, 0.13);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--peach-200), var(--pink-100));
}

.large-card .poster-wrap {
  aspect-ratio: 16 / 9;
}

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

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

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 143, 163, 0.82);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.poster-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #63333c;
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  padding: 16px;
}

.meta-line,
.card-stats,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-line span,
.card-stats span,
.detail-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #81515b;
  background: var(--peach-50);
  font-size: 12px;
  font-weight: 700;
}

.card-body h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.card-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.rank-list {
  display: grid;
  gap: 12px;
}

.rank-row {
  display: grid;
  grid-template-columns: 58px 72px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(255, 159, 122, 0.10);
}

.rank-num {
  color: var(--pink-500);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.rank-row img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--peach-100);
}

.rank-main strong {
  display: block;
  font-size: 18px;
}

.rank-main em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.rank-meta {
  color: #81515b;
  font-weight: 800;
  white-space: nowrap;
}

.inner-page .page-hero {
  padding: 76px 0;
}

.gradient-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 26%), linear-gradient(135deg, var(--peach-400), var(--pink-500), var(--coral-300));
}

.gradient-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 60px);
}

.gradient-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.split-hero {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 32px;
  align-items: center;
}

.hero-side-grid {
  grid-template-columns: repeat(2, 1fr);
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.category-overview-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(255, 159, 122, 0.12);
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.category-overview-head span {
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
}

.category-overview-head a {
  color: var(--peach-600);
  font-weight: 800;
}

.category-overview-card p {
  margin: 8px 0 18px;
  color: var(--muted);
}

.search-page-form {
  display: flex;
  gap: 12px;
  max-width: 720px;
  margin-top: 26px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.search-page-form input {
  flex: 1;
  padding: 14px 20px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 68px 0;
  color: #fff;
  background: #1d1018;
}

.detail-mask {
  background: linear-gradient(90deg, rgba(20, 7, 13, 0.92), rgba(35, 11, 22, 0.74), rgba(255, 159, 122, 0.14));
}

.detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: center;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  aspect-ratio: 16 / 9;
}

.player-card video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.22));
}

.player-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.player-icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--peach-500), var(--pink-500));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  font-size: 28px;
}

.player-cover strong {
  max-width: 80%;
  font-size: clamp(20px, 3vw, 32px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

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

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

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

.detail-meta {
  margin-bottom: 18px;
}

.detail-meta span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

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

.tag-chip {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  margin-top: 56px;
}

.detail-article,
.detail-side {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(255, 159, 122, 0.12);
}

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

.detail-article p {
  margin: 0 0 24px;
  color: #4f5560;
  font-size: 17px;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 14px;
  margin: 0;
}

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

.detail-side dd {
  margin: 0;
}

.site-footer {
  margin-top: 90px;
  padding-top: 46px;
  background: linear-gradient(135deg, var(--peach-100), var(--pink-100));
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
}

.footer-grid p {
  max-width: 440px;
  color: var(--muted);
}

.footer-grid h3 {
  margin: 0 0 14px;
}

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

.footer-links.two-col {
  grid-template-columns: repeat(2, 1fr);
}

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

.footer-links a:hover {
  color: var(--peach-600);
}

.footer-bottom {
  margin-top: 34px;
  padding: 18px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.card-hidden {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-transition {
  animation: fadeIn 0.32s ease;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

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

  .menu-toggle {
    display: flex;
  }

  .header-search {
    margin-left: auto;
  }

  .hero-recommend-panel,
  .split-hero,
  .detail-grid,
  .detail-content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-slider,
  .hero-content {
    min-height: 620px;
  }

  .hero-copy {
    padding-top: 44px;
  }

  .hero-recommend-panel {
    margin-top: -42px;
  }

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

  .rank-row {
    grid-template-columns: 42px 58px 1fr;
  }

  .rank-row img {
    width: 58px;
    height: 78px;
  }

  .rank-meta {
    grid-column: 3;
    white-space: normal;
  }

  .tool-bar,
  .search-page-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .tool-bar input,
  .tool-bar select {
    width: 100%;
  }
}

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

  .header-inner {
    min-height: 66px;
  }

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

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

  .hero-copy p,
  .gradient-hero p,
  .detail-one-line {
    font-size: 16px;
  }

  .compact-grid,
  .compact-grid.small,
  .category-grid,
  .movie-grid,
  .hero-side-grid {
    grid-template-columns: 1fr;
  }

  .hero-recommend-panel {
    padding: 18px;
  }

  .detail-hero {
    padding: 34px 0;
  }

  .player-icon {
    width: 62px;
    height: 62px;
  }

  .detail-content-grid {
    margin-top: 34px;
  }
}
