:root {
  --pink: #ec4899;
  --rose: #f43f5e;
  --rose-dark: #be123c;
  --text: #1f2937;
  --muted: #6b7280;
  --soft: #fff1f2;
  --line: #fbcfe8;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(190, 18, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff7f9;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(251, 207, 232, 0.8);
  box-shadow: 0 8px 28px rgba(190, 18, 60, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1200px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.35);
}

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

.brand-text strong {
  font-size: 23px;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  color: #4b5563;
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--pink), var(--rose));
  transition: width 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.header-search input,
.mobile-search input,
.wide-search input,
.filter-panel input,
.filter-panel select {
  border: 2px solid #fbcfe8;
  outline: none;
  background: #ffffff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.wide-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.header-search input {
  width: 220px;
  padding: 10px 14px;
  border-radius: 999px;
}

.header-search button,
.mobile-search button,
.wide-search button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(236, 72, 153, 0.25);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff1f2;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #4b5563;
}

.mobile-panel {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff1f2;
  color: #4b5563;
  font-weight: 650;
}

.mobile-nav-link.active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
}

.mobile-search input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3, #fff1f2);
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.48), rgba(190, 18, 60, 0.18)), linear-gradient(0deg, rgba(17, 24, 39, 0.84), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  max-width: 760px;
  margin-left: max(16px, calc((100vw - 1200px) / 2));
}

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

.hero-tags span,
.detail-tags span {
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

.hero-tags span:first-child,
.detail-tags span:first-child {
  background: linear-gradient(90deg, var(--pink), var(--rose));
}

.hero h1,
.hero h2 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-shadow: 0 20px 42px rgba(0, 0, 0, 0.35);
}

.hero p {
  margin: 0 0 30px;
  max-width: 720px;
  color: #ffe4ec;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

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

.primary-button,
.ghost-button {
  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;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  box-shadow: 0 16px 32px rgba(236, 72, 153, 0.34);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.ghost-button.light {
  color: #ffffff;
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(236, 72, 153, 0.35);
}

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

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  font-size: 30px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.section-block,
.quick-search-section {
  padding: 70px 0;
}

.soft-bg {
  background: linear-gradient(135deg, #fff1f2, #fdf2f8);
}

.section-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 820px;
  text-align: center;
}

.quick-search-section {
  background: #ffffff;
}

.quick-search-section h2,
.section-title-row h2,
.page-hero h1,
.detail-main h1,
.detail-article h2,
.side-panel h2 {
  margin: 0;
  color: #111827;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.quick-search-section h2,
.section-title-row h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.quick-search-section p,
.section-title-row p,
.page-hero p {
  color: var(--muted);
  line-height: 1.8;
}

.wide-search {
  max-width: 680px;
  margin: 28px auto 0;
  padding: 8px;
  border-radius: 999px;
  background: #fff1f2;
}

.wide-search input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  padding: 15px 18px;
}

.wide-search button {
  min-width: 128px;
  padding: 15px 24px;
}

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

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

.text-link {
  color: var(--pink);
  font-weight: 800;
}

.light-link {
  color: #ffffff;
}

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

.category-card {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(190, 18, 60, 0.22);
}

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

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

.category-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.88), rgba(236, 72, 153, 0.1));
}

.category-card span,
.category-card strong {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 18px;
  color: #ffffff;
}

.category-card span {
  padding-top: 88px;
  font-size: 20px;
  font-weight: 900;
}

.category-card strong {
  margin-top: 6px;
  color: #ffe4ec;
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(190, 18, 60, 0.11);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(190, 18, 60, 0.2);
}

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3, #ffe4e6);
}

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

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

.poster-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(236, 72, 153, 0.92);
  font-size: 12px;
  font-weight: 800;
}

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

.movie-card-body h3 {
  margin: 0 0 7px;
  color: #111827;
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-desc {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row,
.detail-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span,
.detail-tag-links a {
  border-radius: 999px;
  padding: 5px 8px;
  color: #be185d;
  background: #fce7f3;
  font-size: 12px;
  font-weight: 700;
}

.ranking-band {
  background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.45), transparent 30%), linear-gradient(135deg, #831843, #111827 65%, #4c0519);
}

.ranking-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ranking-list a {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.ranking-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  font-weight: 900;
}

.ranking-list strong,
.ranking-list em {
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-list em {
  margin-top: 4px;
  color: #fecdd3;
  font-size: 12px;
  font-style: normal;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #831843, #111827);
}

.compact-hero {
  padding: 78px 0;
}

.page-hero-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(34px, 5vw, 56px);
}

.page-hero p {
  max-width: 780px;
  color: #ffe4ec;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #ffe4ec;
  font-size: 14px;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 160px 160px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border-radius: 14px;
  padding: 12px 13px;
}

.empty-state {
  margin: 30px 0 0;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
}

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

.ranking-page-list a {
  display: grid;
  grid-template-columns: 58px 92px 1fr;
  gap: 18px;
  align-items: center;
  border-radius: 22px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(190, 18, 60, 0.1);
}

.ranking-page-list span {
  color: var(--pink);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.ranking-page-list img {
  width: 92px;
  height: 124px;
  border-radius: 16px;
  object-fit: cover;
  background: #fce7f3;
}

.ranking-page-list strong {
  color: #111827;
  font-size: 20px;
}

.ranking-page-list p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.6;
}

.ranking-page-list em {
  color: var(--pink);
  font-style: normal;
  font-weight: 800;
}

.detail-hero {
  min-height: 540px;
}

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

.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-bg-shade {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.56), rgba(190, 18, 60, 0.2)), linear-gradient(0deg, rgba(17, 24, 39, 0.88), transparent 64%);
  backdrop-filter: blur(2px);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
  align-items: end;
}

.detail-poster img {
  width: 280px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
  background: #fce7f3;
}

.detail-main h1 {
  color: #ffffff;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
}

.detail-one-line {
  max-width: 760px;
  margin: 20px 0 30px;
  color: #ffe4ec;
  font-size: 20px;
  line-height: 1.75;
}

.player-section {
  padding-top: 54px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.28);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.22), rgba(0, 0, 0, 0.65));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  box-shadow: 0 18px 38px rgba(236, 72, 153, 0.38);
  font-size: 30px;
}

.player-overlay strong {
  font-size: 22px;
}

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

.detail-article,
.side-panel {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-article {
  padding: 34px;
}

.detail-article h2 {
  margin-top: 30px;
  font-size: 28px;
}

.detail-article h2:first-child {
  margin-top: 0;
}

.detail-article p {
  color: #374151;
  font-size: 17px;
  line-height: 1.95;
}

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

.info-list div {
  padding: 14px;
  border-radius: 16px;
  background: #fff1f2;
}

.info-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.info-list dd {
  margin: 4px 0 0;
  color: #111827;
  font-weight: 800;
}

.side-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.side-panel h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.side-links {
  display: grid;
  gap: 10px;
}

.side-links a {
  display: block;
  border-radius: 16px;
  padding: 14px;
  background: #fff1f2;
}

.side-links strong,
.side-links span {
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-links strong {
  color: #111827;
}

.side-links span {
  margin-top: 4px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
}

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

.site-footer {
  background: linear-gradient(135deg, #fff1f2, #fce7f3);
  border-top: 1px solid #fbcfe8;
}

.footer-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 24px;
}

.footer-inner p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  border-radius: 999px;
  padding: 10px 14px;
  color: #be185d;
  background: #ffffff;
  font-weight: 800;
}

.copyright {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

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

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

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

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

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

  .side-panel {
    position: static;
  }
}

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

  .hero-content {
    margin-left: 16px;
    width: calc(100% - 32px);
  }

  .section-title-row,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

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

  .detail-poster img {
    width: 190px;
  }

  .ranking-page-list a {
    grid-template-columns: 44px 78px 1fr;
    gap: 12px;
  }

  .ranking-page-list img {
    width: 78px;
    height: 104px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    height: 66px;
  }

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

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text em {
    display: none;
  }

  .hero {
    height: 500px;
  }

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

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

  .hero-controls {
    bottom: 18px;
  }

  .section-block,
  .quick-search-section {
    padding: 48px 0;
  }

  .wide-search {
    border-radius: 24px;
    flex-direction: column;
  }

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

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

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

  .detail-article {
    padding: 24px;
  }

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

  .player-shell {
    border-radius: 18px;
  }
}
