:root {
  --orange: #f97316;
  --amber: #f59e0b;
  --yellow: #facc15;
  --slate: #0f172a;
  --slate-soft: #1e293b;
  --text: #1f2937;
  --muted: #64748b;
  --line: #e5e7eb;
  --bg: #f8fafc;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff7ed 0%, var(--bg) 32%, #eef2ff 100%);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(234, 88, 12, 0.96), rgba(245, 158, 11, 0.96), rgba(250, 204, 21, 0.95));
  box-shadow: 0 10px 30px rgba(146, 64, 14, 0.22);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

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

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

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  padding: 10px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fffde7;
  transform: translateY(-1px);
}

.top-search,
.mobile-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.search-page-form input,
.page-filter input {
  border: 1px solid rgba(255, 255, 255, 0.45);
  outline: none;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  min-width: 220px;
}

.top-search input::placeholder,
.mobile-search input::placeholder,
.search-page-form input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.top-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #9a3412;
  background: #fff7ed;
  font-weight: 800;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

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

.mobile-panel.open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-nav .nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--slate);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

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

.hero-backdrop {
  position: absolute;
  inset: -22px;
  background-size: cover;
  background-position: center;
  filter: blur(12px) saturate(1.08);
  transform: scale(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 22%, rgba(250, 204, 21, 0.28), transparent 28%), linear-gradient(110deg, rgba(67, 20, 7, 0.92), rgba(154, 52, 18, 0.84) 45%, rgba(245, 158, 11, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  min-height: 610px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  align-items: center;
  gap: 48px;
  padding: 72px 0;
}

.eyebrow,
.section-heading span,
.page-hero span {
  display: inline-flex;
  color: #fed7aa;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  color: #fff;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.55;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff7ed;
  background: rgba(15, 23, 42, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions,
.detail-actions,
.seo-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn,
.seo-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  box-shadow: 0 16px 36px rgba(234, 88, 12, 0.36);
}

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

.primary-btn:hover,
.ghost-btn:hover,
.seo-links a:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.36);
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.1);
}

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

.hero-poster span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 16px 36px rgba(234, 88, 12, 0.38);
}

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

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

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 28px;
}

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

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

.hero-dot.active {
  width: 32px;
  background: #fff7ed;
}

.section-block {
  padding: 64px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.left-heading {
  margin-left: 0;
  text-align: left;
}

.section-heading span,
.page-hero span {
  color: #c2410c;
  background: #ffedd5;
  border-color: #fed7aa;
}

.section-heading h2,
.page-hero h1,
.list-toolbar h2 {
  margin: 14px 0 10px;
  color: var(--slate);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p,
.list-toolbar p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f5f9;
}

.movie-card-large .poster {
  aspect-ratio: 3 / 4;
}

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

.movie-card:hover .poster img,
.compact-card:hover img,
.category-tile:hover img,
.category-cover:hover img {
  transform: scale(1.08);
}

.duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #fff;
  background: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(249, 115, 22, 0.88);
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

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

.movie-meta-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #ea580c;
  font-size: 12px;
  font-weight: 800;
}

.movie-card h2 {
  margin: 10px 0 8px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h2 a:hover {
  color: #ea580c;
}

.movie-card p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.tag-row span {
  color: #9a3412;
  background: #ffedd5;
  border: 0;
}

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

.category-tile {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 24px;
  padding: 20px;
  color: #fff;
  background: var(--slate);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

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

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(15, 23, 42, 0.9) 100%);
}

.category-tile span,
.category-tile em {
  position: relative;
  z-index: 1;
}

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

.category-tile em {
  margin-top: 8px;
  font-style: normal;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.ranking-list,
.latest-list,
.ranking-table {
  display: grid;
  gap: 12px;
}

.compact-card,
.rank-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-card:hover,
.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.compact-cover {
  width: 94px;
  height: 62px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 13px;
  background: #f1f5f9;
}

.compact-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.compact-text {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.compact-text strong {
  color: var(--slate);
  line-height: 1.3;
}

.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  font-size: 12px;
}

.compact-text em,
.rank-row em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.seo-panel {
  margin-bottom: 64px;
  border-radius: 30px;
  padding: 42px;
  color: #fff;
  background: linear-gradient(120deg, #7c2d12, #ea580c, #f59e0b);
  box-shadow: var(--shadow);
}

.seo-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
}

.seo-panel p {
  max-width: 850px;
  margin: 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.seo-links a {
  color: #9a3412;
  background: #fff7ed;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 66px 0;
  background-size: cover;
  background-position: center;
}

.small-hero {
  background: radial-gradient(circle at 78% 18%, rgba(250, 204, 21, 0.35), transparent 25%), linear-gradient(120deg, #431407, #c2410c 55%, #f59e0b);
}

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

.page-hero h1,
.page-hero p {
  color: #fff;
}

.page-hero h1 {
  max-width: 780px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.category-panels,
.info-grid {
  display: grid;
  gap: 24px;
  padding: 54px 0;
}

.category-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  border-radius: 26px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.category-cover {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 10;
}

.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.category-panel h2 {
  margin: 0 0 10px;
  color: var(--slate);
  font-size: 28px;
}

.category-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.sample-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sample-links a {
  border-radius: 999px;
  padding: 7px 11px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 13px;
  font-weight: 700;
}

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

.page-filter {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.page-filter input {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  min-width: 280px;
}

.ranking-table {
  border-radius: 26px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.rank-row {
  box-shadow: none;
  border: 1px solid #f1f5f9;
}

.rank-row span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  font-weight: 900;
}

.rank-row strong {
  flex: 1;
  min-width: 160px;
}

.search-page-form {
  margin-top: 24px;
  max-width: 620px;
}

.search-page-form input {
  min-width: 0;
  flex: 1;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.search-card {
  display: grid;
  gap: 14px;
  border-radius: 22px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.search-card h2 {
  margin: 0;
  color: var(--slate);
  font-size: 20px;
}

.search-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.detail-backdrop {
  position: absolute;
  inset: -24px;
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.1);
  transform: scale(1.08);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.94), rgba(124, 45, 18, 0.78), rgba(245, 158, 11, 0.52));
}

.detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 36px;
  align-items: center;
  padding: 54px 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 16 / 9;
  background: #020617;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
}

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

.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.45));
  cursor: pointer;
}

.play-button span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 22px 50px rgba(249, 115, 22, 0.35);
  font-size: 32px;
}

.play-button strong {
  font-size: 20px;
}

.player-shell.is-playing .play-button {
  display: none;
}

.detail-copy h1 {
  margin: 16px 0 16px;
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
}

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

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 50px 0 72px;
}

.detail-main-card,
.detail-sidebar,
.info-grid article {
  border-radius: 26px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.detail-main-card h2,
.detail-sidebar h2,
.info-grid h2 {
  margin: 0 0 14px;
  color: var(--slate);
  font-size: 24px;
}

.detail-main-card p,
.info-grid p {
  margin: 0 0 26px;
  color: #475569;
  line-height: 1.9;
  white-space: pre-line;
}

.review-box {
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  padding: 22px 22px 1px;
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  margin-bottom: 28px;
}

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

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

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

.info-list dd {
  margin: 6px 0 0;
  color: var(--slate);
  font-weight: 800;
}

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

.detail-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, #1e293b, #0f172a);
}

.footer-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 48px 0;
}

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

.site-footer p {
  margin: 0;
  line-height: 1.8;
}

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

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

.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px 0 28px;
  color: #94a3b8;
  font-size: 14px;
}

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

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

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

  .hero-poster {
    display: none;
  }

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

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 62px;
  }

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

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

  .hero-content {
    padding: 50px 0 90px;
  }

  .movie-grid,
  .category-grid,
  .search-results,
  .related-grid,
  .info-list {
    grid-template-columns: 1fr;
  }

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

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

  .page-filter input {
    min-width: 0;
    width: 100%;
  }

  .detail-layout {
    padding: 36px 0;
  }

  .detail-content {
    padding-top: 32px;
  }

  .detail-main-card,
  .detail-sidebar,
  .seo-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .rank-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
