:root {
  color-scheme: light;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --red-100: #fee2e2;
  --amber-500: #f59e0b;
  --white: #ffffff;
  --shadow-soft: 0 12px 34px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
  line-height: 1.6;
}

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

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

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: 100;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800));
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.22);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.35);
  font-size: 15px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  color: var(--slate-300);
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.45), transparent 32%), linear-gradient(135deg, var(--slate-950), #7f1d1d, var(--slate-900));
}

.hero-bg-wrap,
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1.6s ease;
  filter: saturate(1.06) contrast(1.03);
}

.hero-bg.active {
  opacity: 0.28;
  transform: scale(1);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.70), rgba(127, 29, 29, 0.70));
}

.hero-inner {
  position: relative;
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  align-items: center;
  gap: 42px;
  padding: 54px 0;
}

.hero-copy {
  color: var(--white);
}

.kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--red-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker.light {
  color: #fecaca;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--slate-200);
  font-size: clamp(17px, 2vw, 22px);
}

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

.btn,
.hero-link,
.section-action,
.panel-more,
.category-box-head a,
.search-title-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn {
  min-height: 48px;
  padding: 0 24px;
}

.btn.primary,
.hero-link {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.35);
}

.btn.primary:hover,
.hero-link:hover {
  background: var(--red-700);
  transform: translateY(-2px) scale(1.02);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pills a,
.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-pills a {
  color: var(--white);
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-pills a:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-panel {
  position: relative;
  min-height: 390px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.hero-slider {
  position: relative;
  min-height: 390px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 22px;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.hero-poster {
  overflow: hidden;
  border-radius: 22px;
  min-height: 310px;
  background: var(--slate-800);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
}

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

.hero-poster:hover img {
  transform: scale(1.07);
}

.hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  color: var(--white);
}

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

.hero-tags span {
  color: #fee2e2;
  padding: 6px 10px;
  background: rgba(220, 38, 38, 0.24);
}

.hero-info h2 {
  margin: 20px 0 12px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.hero-info p {
  margin: 0;
  color: var(--slate-300);
  font-size: 15px;
}

.hero-link {
  width: fit-content;
  margin-top: 24px;
  padding: 12px 18px;
}

.hero-dots {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

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

.hero-dot.active {
  background: var(--red-500);
}

.section {
  padding: 72px 0;
}

.section.white {
  background: var(--white);
}

.section.soft {
  background: var(--slate-50);
}

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

.section-head h2,
.rank-panel h2,
.category-box h2,
.text-card h2,
.detail-article h2,
.side-card h2,
.cta-inner h2,
.search-title-row h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-head p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--slate-600);
}

.section-action,
.panel-more,
.category-box-head a,
.search-title-row a {
  min-height: 40px;
  padding: 0 16px;
  color: var(--red-600);
  background: var(--red-100);
}

.section-action:hover,
.panel-more:hover,
.category-box-head a:hover,
.search-title-row a:hover {
  color: var(--white);
  background: var(--red-600);
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.82);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(239, 68, 68, 0.28);
}

.movie-card.compact .movie-card-body p {
  display: none;
}

.movie-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--slate-200);
}

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

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

.score-badge,
.type-badge {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.score-badge {
  left: 12px;
  background: rgba(220, 38, 38, 0.92);
}

.type-badge {
  right: 12px;
  background: rgba(15, 23, 42, 0.76);
}

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

.movie-card h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card:hover h3 {
  color: var(--red-600);
}

.movie-card p {
  min-height: 46px;
  margin: 8px 0 0;
  color: var(--slate-600);
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 700;
}

.movie-meta span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--slate-100);
}

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

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.82);
}

.rank-panel.large {
  position: static;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 38px 64px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: var(--slate-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: var(--red-100);
  transform: translateX(2px);
}

.rank-number {
  color: var(--red-600);
  font-size: 18px;
  font-weight: 900;
}

.rank-item img {
  width: 64px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong,
.rank-copy small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-copy strong {
  color: var(--slate-900);
  font-size: 14px;
}

.rank-copy small {
  margin-top: 3px;
  color: var(--slate-500);
  font-size: 12px;
}

.panel-more {
  width: 100%;
  margin-top: 18px;
}

.category-showcase {
  padding: 64px 0;
  background: var(--white);
}

.category-showcase:nth-of-type(even) {
  background: var(--slate-50);
}

.cta-band {
  color: var(--white);
  background: linear-gradient(120deg, var(--slate-900), #7f1d1d);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  color: var(--white);
}

.cta-inner p {
  max-width: 700px;
  margin: 10px 0 0;
  color: var(--slate-300);
}

.page-hero {
  color: var(--white);
  padding: 76px 0;
  background: radial-gradient(circle at 20% 10%, rgba(239, 68, 68, 0.38), transparent 32%), linear-gradient(120deg, var(--slate-900), #7f1d1d);
}

.category-list {
  display: grid;
  gap: 28px;
}

.category-box {
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-soft);
}

.category-box-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 20px;
}

.category-box p {
  margin: 8px 0 0;
  color: var(--slate-600);
}

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

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 16px;
  padding: 22px;
  margin-bottom: 28px;
  border-radius: 22px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}

.search-panel label {
  display: grid;
  gap: 8px;
  color: var(--slate-700);
  font-weight: 800;
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--slate-300);
  background: var(--white);
  color: var(--slate-900);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--red-500);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.search-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.text-layout {
  display: grid;
  gap: 24px;
}

.text-card {
  padding: 30px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-soft);
}

.text-card p {
  margin: 14px 0 0;
  color: var(--slate-700);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

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

.detail-bg {
  background-position: center;
  background-size: cover;
  opacity: 0.24;
  filter: blur(2px) saturate(1.08);
  transform: scale(1.05);
}

.detail-mask {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.74), rgba(127, 29, 29, 0.58));
}

.detail-hero-inner {
  position: relative;
  padding: 34px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--slate-300);
  font-size: 14px;
}

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

.detail-main {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  background: var(--slate-800);
}

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

.detail-poster span {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red-600);
  font-weight: 900;
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 840px;
  margin: 20px 0 0;
  color: var(--slate-200);
  font-size: 20px;
}

.detail-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-meta span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--slate-100);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 750;
}

.tag-row span {
  color: #fecaca;
  padding: 6px 10px;
  background: rgba(220, 38, 38, 0.24);
}

.detail-copy .btn {
  margin-top: 28px;
}

.dark-player {
  background: var(--slate-950);
  padding: 42px 0;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16 / 9;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.76));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-symbol {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding-left: 5px;
  background: var(--red-600);
  box-shadow: 0 18px 38px rgba(220, 38, 38, 0.38);
  font-size: 34px;
}

.player-cover strong {
  font-size: 25px;
}

.player-cover small {
  color: var(--slate-300);
  font-size: 15px;
}

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

.detail-article,
.side-card {
  padding: 30px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-soft);
}

.detail-article p {
  margin: 16px 0 26px;
  color: var(--slate-700);
  font-size: 17px;
}

.detail-side {
  position: sticky;
  top: 96px;
}

.side-card dl,
.side-card dt,
.side-card dd {
  margin: 0;
}

.side-card dl {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.side-card dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--slate-200);
}

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

.side-card dd {
  color: var(--slate-900);
  font-weight: 700;
}

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

.site-footer {
  color: var(--slate-300);
  background: var(--slate-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  padding: 52px 0;
}

.site-footer p {
  max-width: 360px;
  color: var(--slate-400);
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

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

.site-footer a:hover {
  color: var(--red-500);
}

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

@media (max-width: 1080px) {
  .hero-inner,
  .split-layout,
  .rank-page-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .rank-panel,
  .detail-side {
    position: static;
  }

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

@media (max-width: 820px) {
  .site-nav {
    min-height: 66px;
  }

  .brand {
    font-size: 21px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-strong);
  }

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

  .nav-link {
    padding: 12px;
    border-radius: 12px;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 44px 0;
  }

  .hero-panel,
  .hero-slider {
    min-height: 560px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    min-height: 300px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head,
  .category-box-head,
  .cta-inner,
  .search-title-row {
    align-items: start;
    flex-direction: column;
  }

  .movie-grid,
  .mini-grid,
  .related-grid,
  .footer-grid,
  .detail-main,
  .search-panel {
    grid-template-columns: 1fr;
  }

  .movie-thumb {
    aspect-ratio: 16 / 9;
  }

  .detail-poster {
    max-width: 260px;
  }
}

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

  .hero-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 36px;
  }

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

  .hero-panel,
  .hero-slider {
    min-height: 530px;
  }

  .hero-slide {
    padding: 18px;
  }

  .hero-dots {
    left: 18px;
    right: auto;
  }

  .category-box,
  .text-card,
  .detail-article,
  .side-card,
  .rank-panel {
    padding: 20px;
  }

  .player-box {
    border-radius: 16px;
  }
}
