:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --cyan: #06b6d4;
  --blue: #2563eb;
  --teal: #14b8a6;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.13);
  --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f8fafc 100%);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, #0f172a, #164e63);
  transition: opacity 0.2s ease, transform 0.35s ease;
}

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;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark,
.footer-brand span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 10px 24px rgba(6, 182, 212, 0.3);
}

.brand-text {
  font-size: 20px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.desktop-nav a,
.mobile-menu a {
  padding: 10px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-menu a:hover {
  color: #ffffff;
  background: rgba(51, 65, 85, 0.9);
}

.nav-search {
  display: flex;
  align-items: center;
  width: min(280px, 26vw);
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.88);
  overflow: hidden;
}

.nav-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 10px 4px 10px 16px;
}

.nav-search input::placeholder,
.mobile-search input::placeholder,
.inline-search input::placeholder,
.search-hero-form input::placeholder {
  color: rgba(226, 232, 240, 0.72);
}

.nav-search button {
  border: 0;
  color: #cbd5e1;
  background: transparent;
  width: 42px;
  height: 42px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(51, 65, 85, 0.88);
}

.mobile-menu {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: #0f172a;
}

.mobile-menu.is-open {
  display: grid;
  gap: 8px;
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 4px;
}

.mobile-search input,
.mobile-search button,
.inline-search input,
.inline-search button,
.search-hero-form input,
.search-hero-form button {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
}

.mobile-search input,
.search-hero-form input {
  flex: 1;
  min-width: 0;
}

.mobile-search button,
.inline-search button,
.search-hero-form button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #000000;
}

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

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

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

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

.hero-mask {
  background:
    radial-gradient(circle at 22% 50%, rgba(6, 182, 212, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 42%, rgba(2, 6, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.65), transparent 45%);
}

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

.hero-copy {
  max-width: 720px;
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 20px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero p,
.page-hero p {
  max-width: 740px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-tags,
.detail-tags-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-tags span,
.detail-tags-line span,
.detail-tags-line a {
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-actions,
.section-head,
.overview-top,
.pager,
.ranking-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 32px rgba(6, 182, 212, 0.28);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.5);
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  font-size: 32px;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dot.is-active {
  background: #ffffff;
}

.stat-band {
  color: #ffffff;
  background: linear-gradient(180deg, #0f172a, #1e293b);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 38px 0;
  text-align: center;
}

.stat-grid strong {
  display: block;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
}

.stat-grid span {
  display: block;
  margin-top: 8px;
  color: #94a3b8;
}

.section {
  padding: 72px 0;
}

.muted-section {
  background: linear-gradient(180deg, #f8fafc, #eef8ff);
}

.accent-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 10%, rgba(20, 184, 166, 0.32), transparent 35%),
    linear-gradient(135deg, #0f172a, #164e63 55%, #0f172a);
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2,
.detail-content h1,
.detail-side h2,
.overview-card h2,
.region-card h2,
.search-status h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-head p,
.overview-card p,
.region-card p,
.search-status p {
  margin: 8px 0 0;
  color: var(--slate-500);
}

.section-head.light h2,
.section-head.light p {
  color: #ffffff;
}

.text-link {
  color: #0891b2;
  font-weight: 800;
}

.category-grid,
.movie-grid,
.overview-grid,
.region-grid {
  display: grid;
  gap: 22px;
}

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

.category-tile,
.overview-card,
.region-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  border-radius: 26px;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #164e63);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile span {
  display: block;
  margin-bottom: 30px;
  font-size: 14px;
  opacity: 0.88;
}

.category-tile strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.color-cyan { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.color-violet { background: linear-gradient(135deg, #7c3aed, #312e81); }
.color-red { background: linear-gradient(135deg, #ef4444, #7f1d1d); }
.color-amber { background: linear-gradient(135deg, #f59e0b, #b45309); }
.color-pink { background: linear-gradient(135deg, #ec4899, #9d174d); }
.color-emerald { background: linear-gradient(135deg, #10b981, #065f46); }
.color-blue { background: linear-gradient(135deg, #3b82f6, #1e3a8a); }
.color-slate { background: linear-gradient(135deg, #475569, #0f172a); }
.color-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.color-orange { background: linear-gradient(135deg, #f97316, #9a3412); }
.color-fuchsia { background: linear-gradient(135deg, #d946ef, #86198f); }
.color-lime { background: linear-gradient(135deg, #84cc16, #3f6212); }
.color-indigo { background: linear-gradient(135deg, #6366f1, #312e81); }
.color-sky { background: linear-gradient(135deg, #0ea5e9, #075985); }
.color-gray { background: linear-gradient(135deg, #64748b, #1e293b); }

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

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

.catalog-grid {
  margin-top: 24px;
  margin-bottom: 24px;
}

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-frame {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #0f172a, #155e75);
}

.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-card:hover .poster-img,
.rank-card:hover img,
.mini-card:hover img {
  transform: scale(1.07);
}

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

.movie-card-topline,
.movie-meta,
.rank-info em,
.mini-info em {
  color: #64748b;
  font-style: normal;
  font-size: 13px;
}

.movie-card strong {
  display: block;
  margin: 8px 0 8px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.25;
}

.movie-card em {
  display: block;
  flex: 1;
  color: #475569;
  font-style: normal;
  font-size: 14px;
}

.movie-meta {
  display: block;
  margin-top: 14px;
}

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

.rank-card,
.mini-card {
  display: flex;
  gap: 14px;
  align-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.rank-poster,
.mini-poster {
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #0f172a;
}

.rank-poster {
  width: 120px;
  aspect-ratio: 16 / 10;
}

.mini-poster {
  width: 94px;
  aspect-ratio: 16 / 10;
}

.rank-img,
.mini-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-info,
.mini-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.rank-info strong,
.mini-info strong {
  color: #0f172a;
  line-height: 1.25;
}

.rank-info span {
  color: #475569;
  font-size: 14px;
}

.inline-search {
  display: flex;
  gap: 10px;
  min-width: min(420px, 100%);
}

.inline-search input {
  flex: 1;
  min-width: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.page-hero {
  color: #ffffff;
  padding: 82px 0;
}

.gradient-hero,
.category-hero {
  background:
    radial-gradient(circle at 18% 30%, rgba(6, 182, 212, 0.35), transparent 32%),
    linear-gradient(135deg, #0f172a, #164e63 54%, #0f172a);
}

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

.overview-card {
  min-height: 300px;
}

.overview-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}

.overview-card h2,
.region-card h2 {
  color: #ffffff;
}

.overview-card a {
  color: #ffffff;
  font-weight: 800;
}

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

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

.region-card {
  background: #ffffff;
  color: #0f172a;
}

.region-card h2 {
  color: #0f172a;
  margin-bottom: 18px;
}

.catalog-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-links a,
.pager a,
.pager span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.08);
}

.pager {
  justify-content: center;
  margin: 10px 0 20px;
}

.pager .is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.07);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.filter-panel input,
.filter-panel select {
  min-width: 0;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 11px 12px;
  color: #0f172a;
  background: #f8fafc;
}

.empty-state {
  display: none;
  padding: 46px 0;
  text-align: center;
  color: #64748b;
  font-size: 18px;
}

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

.ranking-list ol {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ranking-list li {
  justify-content: flex-start;
  border-radius: 24px;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.rank-number {
  flex: 0 0 52px;
  color: #0891b2;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.ranking-list .rank-card {
  flex: 1;
  box-shadow: none;
  padding: 0;
}

.search-hero-form {
  display: flex;
  max-width: 760px;
  gap: 12px;
}

.search-hero-form input {
  color: #0f172a;
  background: #ffffff;
}

.search-status {
  margin-bottom: 24px;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: #64748b;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #0891b2;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(280px, 0.85fr);
  gap: 28px;
}

.player-card,
.detail-side {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.movie-video,
.player-cover,
.player-cover-img,
.player-cover-mask {
  position: absolute;
  inset: 0;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-cover {
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #000000;
}

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

.player-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-cover-mask {
  background:
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.32), rgba(2, 6, 23, 0.88));
}

.play-circle {
  position: relative;
  z-index: 3;
  display: inline-flex;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 24px 50px rgba(6, 182, 212, 0.38);
  font-size: 36px;
  padding-left: 6px;
}

.detail-content {
  padding: 26px;
}

.detail-content h1 {
  margin-bottom: 18px;
}

.detail-content section {
  margin-top: 26px;
}

.detail-content h2,
.detail-side h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 22px;
}

.detail-content p {
  margin: 0;
  color: #475569;
  white-space: pre-line;
}

.detail-tags-line a,
.detail-tags-line span {
  color: #0f172a;
  background: #f1f5f9;
}

.detail-tags-line a:first-child {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.review-box {
  border-left: 5px solid #06b6d4;
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-cloud a {
  border-radius: 999px;
  padding: 7px 12px;
  color: #334155;
  background: #f1f5f9;
  font-size: 14px;
}

.tag-cloud a:hover {
  color: #ffffff;
  background: #0891b2;
}

.detail-side {
  position: sticky;
  top: 98px;
  align-self: start;
  padding: 22px;
}

.related-section {
  padding-top: 42px;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(135deg, #020617, #0f172a 55%, #1e293b);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding: 52px 0 32px;
}

.footer-brand {
  margin-bottom: 16px;
  font-size: 21px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: #94a3b8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 18px 0 24px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .desktop-nav a:nth-last-child(-n+3) {
    display: none;
  }

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

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

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

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

  .hero-arrow {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .stat-grid,
  .movie-grid,
  .compact-grid,
  .category-grid,
  .overview-grid,
  .region-grid,
  .feature-list,
  .footer-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid {
    display: block;
  }

  .detail-side {
    position: static;
    margin-top: 24px;
  }

  .section-head,
  .hero-actions,
  .overview-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .inline-search,
  .search-hero-form {
    width: 100%;
  }
}

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

  .nav-shell {
    min-height: 64px;
  }

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

  .hero,
  .hero-content {
    min-height: 68vh;
  }

  .hero-copy {
    padding: 24px 0 58px;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .stat-grid,
  .movie-grid,
  .compact-grid,
  .category-grid,
  .overview-grid,
  .region-grid,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .rank-card,
  .mini-card {
    align-items: flex-start;
  }

  .rank-poster {
    width: 104px;
  }

  .mini-poster {
    width: 90px;
  }

  .ranking-list li {
    align-items: stretch;
    flex-direction: column;
  }

  .rank-number {
    text-align: left;
  }

  .detail-content {
    padding: 20px;
  }

  .play-circle {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
