/* roulang page: index */
:root {
  --bg: #0B0A09;
  --bg-deep: #080706;
  --bg-soft: #14110E;
  --bg-card: #1B1814;
  --gold: #C9A063;
  --gold-light: #E0BD85;
  --gold-muted: rgba(201, 160, 99, .18);
  --text: #F2EDE4;
  --text-soft: #D7CEC0;
  --text-muted: #978E82;
  --line: rgba(201, 160, 99, .16);
  --line-soft: rgba(255, 255, 255, .07);
  --green: #7A9B76;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow: 0 22px 46px rgba(0, 0, 0, .35);
  --transition: .35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  position: relative;
}

.section {
  padding: 96px 0;
}

.section.tight {
  padding: 72px 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.section-head.left-only {
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.35;
}

.section-sub {
  max-width: 680px;
  color: var(--text-muted);
  font-size: .9375rem;
  margin-top: 8px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9375rem;
  color: var(--gold);
  font-weight: 500;
  transition: gap .3s ease, color .3s ease;
}

.text-link .arrow {
  transition: transform .3s ease;
  font-style: normal;
}

.text-link:hover {
  color: var(--gold-light);
}

.text-link:hover .arrow {
  transform: translateX(5px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
}

.site-header.scrolled .site-nav {
  background: rgba(11, 10, 9, .72);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}

.top-ticker {
  background: #050504;
  color: rgba(255, 255, 255, .72);
  font-size: .8125rem;
  text-align: center;
  padding: 5px 16px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(201, 160, 99, .14);
}

.top-ticker strong {
  color: var(--gold-light);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.site-nav.logged-in {
  border-bottom-color: var(--line-soft);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}

.logo-dot {
  display: block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 0 0 4px rgba(201, 160, 99, .14);
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(242, 237, 228, .78);
  transition: color .25s ease;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform .3s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: translateX(-50%) scale(1);
}

.desktop-nav a.active {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .9375rem;
  font-weight: 500;
  transition: all .3s ease;
}

.btn-gold {
  background: var(--gold);
  color: #17130B;
  padding: 10px 28px;
  border-radius: 3px;
  font-weight: 600;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 160, 99, .14);
}

.btn-outline {
  border: 1px solid rgba(201, 160, 99, .38);
  background: transparent;
  color: var(--text);
  padding: 10px 26px;
  border-radius: 3px;
}

.btn-outline:hover {
  background: rgba(201, 160, 99, .1);
  border-color: rgba(201, 160, 99, .7);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: .85rem;
  padding: 8px 20px;
}

.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-size: .9375rem;
  font-weight: 500;
  transition: gap .3s;
}

.btn-text-arrow:hover {
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 100px 0 72px;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/backpic/back-1.jpg') center top / cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 9, 8, .94) 0%, rgba(10, 9, 8, .82) 55%, rgba(12, 10, 9, .3) 100%), linear-gradient(0deg, rgba(11, 10, 9, 1) 0%, transparent 28%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border: 1px solid rgba(201, 160, 99, .4);
  border-radius: 40px;
  font-size: .8125rem;
  color: var(--gold-light);
  letter-spacing: .06em;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: .02em;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(242, 237, 228, .82);
  max-width: 680px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 56px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .15);
  color: rgba(242, 237, 228, .75);
  padding: 5px 15px;
  border-radius: 40px;
  font-size: .8125rem;
  transition: all .3s ease;
}

.chip:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .4);
  z-index: 2;
}

.hero-scroll-hint::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Metrics */
.metrics-section {
  padding: 88px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 10px;
}

.metric-item {
  padding: 36px 22px 12px;
  border-right: 1px solid var(--line-soft);
  transition: background .35s ease;
}

.metric-item:last-child {
  border-right: none;
}

.metric-item:hover {
  background: rgba(201, 160, 99, .04);
}

.metric-label {
  font-size: .8125rem;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.metric-num {
  font-size: clamp(2.2rem, 4.4vw, 3.7rem);
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
}

.metric-num i {
  font-style: normal;
  font-size: 1.2rem;
  color: var(--gold);
  margin-left: 4px;
}

.metric-desc {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: .8125rem;
  line-height: 1.6;
}

/* Category Matrix */
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid transparent;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  position: relative;
}

.cat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 160, 99, .5);
  box-shadow: var(--shadow);
}

.cat-card-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.cat-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cat-card:hover .cat-card-cover img {
  transform: scale(1.06);
}

.cat-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 10, 9, .82) 0%, transparent 62%);
}

.cat-card-body {
  padding: 18px 20px 22px;
  position: relative;
  flex: 1;
}

.cat-card-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.cat-card-name .num {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: .04em;
}

.cat-card-desc {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.cat-card-link {
  font-size: .8125rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: gap .3s;
}

.cat-card:hover .cat-card-link {
  gap: 8px;
}

/* Rail */
.rail-section {
  overflow: hidden;
}

.rail-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 6px 4px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 160, 99, .35) transparent;
}

.rail-track::-webkit-scrollbar {
  height: 5px;
}

.rail-track::-webkit-scrollbar-thumb {
  background: rgba(201, 160, 99, .35);
  border-radius: 8px;
}

.rail-card {
  flex: 0 0 200px;
  max-width: 200px;
}

.poster {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  display: block;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.rail-card:hover .poster img {
  transform: scale(1.07);
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, transparent 30%, rgba(0, 0, 0, .77) 100%);
}

.poster .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  border-radius: 3px;
  padding: 3px 8px;
  letter-spacing: .02em;
  line-height: 1.4;
}

.badge-free {
  background: var(--gold);
  color: #18120A;
  font-weight: 700;
}

.badge-hd {
  border: 1px solid rgba(201, 160, 99, .65);
  color: var(--gold-light);
  background: rgba(0, 0, 0, .25);
}

.badge-new {
  background: var(--green);
  color: #F6FBF4;
}

.play-dot {
  position: absolute;
  left: 12px;
  bottom: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;
  color: #fff;
  background: rgba(0, 0, 0, .1);
}

.play-dot::after {
  content: "";
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}

.rail-card:hover .play-dot {
  border-color: var(--gold);
  background: rgba(201, 160, 99, .16);
  transform: scale(1.12);
}

.poster-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-top: 14px;
}

.poster-sub {
  margin-top: 3px;
  font-size: .8125rem;
  color: var(--text-muted);
}

/* News / update list */
.update-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.update-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
}

.update-list {
  border-top: 1px solid var(--line-soft);
}

.update-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 10px 18px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s ease;
}

.update-item:hover {
  background: rgba(255, 255, 255, .025);
}

.up-date {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  font-size: .8125rem;
}

.up-cat {
  flex: 0 0 72px;
  text-align: center;
  color: var(--gold);
  font-size: .75rem;
  border: 1px solid rgba(201, 160, 99, .4);
  padding: 2px 0;
  border-radius: 3px;
}

.up-title {
  color: rgba(242, 237, 228, .85);
  font-size: .9375rem;
  transition: color .3s;
}

.update-item:hover .up-title {
  color: var(--gold-light);
}

.guide-aside {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, .18);
}

.guide-aside h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.guide-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.guide-list li .dot {
  margin-top: 10px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex: 0 0 auto;
}

/* Comparison */
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  gap: 0;
}

.compare-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.compare-head .side-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 38px;
}

.compare-head h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.compare-divider {
  width: 1px;
  background: var(--line-soft);
}

.compare-list li {
  padding: 18px 6px 18px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: .9375rem;
  color: var(--text-soft);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: padding-left .3s;
}

.compare-list li:hover {
  padding-left: 10px;
}

.compare-list.weak li {
  color: var(--text-muted);
}

.compare-list.weak li:before {
  content: "×";
  color: rgba(242, 237, 228, .25);
  font-size: 1rem;
  line-height: 1.5;
}

.compare-list.strong li:before {
  content: "✓";
  color: var(--gold-light);
  font-size: .9rem;
  line-height: 1.7;
  transform: scale(1.2);
}

/* FAQ */
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .012);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color .35s ease, background .35s ease;
}

.faq-item:hover {
  border-color: rgba(201, 160, 99, .32);
  background: rgba(255, 255, 255, .02);
}

.faq-item[open] {
  border-color: rgba(201, 160, 99, .42);
}

.faq-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-index {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: .8125rem;
  letter-spacing: .06em;
  border: 1px solid rgba(201, 160, 99, .3);
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question {
  flex: 1;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
}

.faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: all .3s ease;
}

.faq-toggle::before {
  width: 18px;
  height: 1px;
  top: 50%;
  left: 0;
}

.faq-toggle::after {
  width: 1px;
  height: 18px;
  left: 50%;
  top: 0;
}

.faq-item[open] .faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 24px 24px 72px;
  color: var(--text-soft);
  font-size: .9375rem;
  line-height: 1.85;
  background: rgba(255, 255, 255, .012);
}

/* Request CTA */
.request-section {
  padding: 0 0 110px;
}

.request-panel {
  position: relative;
  padding: 72px 64px;
  background: linear-gradient(0deg, rgba(14, 11, 9, .92) 0%, rgba(14, 11, 9, .86) 100%), url('/assets/images/backpic/back-3.jpg') center / cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 52px;
}

.request-panel h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}

.request-panel .lead {
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 0;
}

.need-form {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 28px;
}

.need-form label {
  display: block;
  font-size: .8125rem;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.need-form input {
  width: 100%;
  background: rgba(0, 0, 0, .42);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  margin-bottom: 18px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.need-form input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.need-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 160, 99, .14);
}

.form-note {
  margin-top: 14px;
  font-size: .75rem;
  color: rgba(242, 237, 228, .5);
}

.form-success {
  display: none;
  margin-top: 14px;
  font-size: .875rem;
  color: var(--gold-light);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-deep);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 370px;
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.75;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .03em;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: .875rem;
  transition: color .3s ease, padding-left .3s ease;
}

.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-mail {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: .9rem;
}

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  color: rgba(242, 237, 228, .5);
  font-size: .8125rem;
  line-height: 1.7;
}

.footer-bottom .footer-legal {
  border-left: 1px solid var(--line);
  padding-left: 20px;
  color: rgba(242, 237, 228, .38);
  max-width: 760px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

::selection {
  background: rgba(201, 160, 99, .35);
  color: #fff;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    padding: 0 34px;
  }

  .desktop-nav ul {
    gap: 24px;
  }

  .desktop-nav a {
    font-size: .875rem;
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav.is-open .desktop-nav {
    display: flex;
  }

  .site-nav {
    flex-wrap: wrap;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-nav.is-open .desktop-nav.mobile-open {
    display: block;
    flex-basis: 100%;
  }

  .desktop-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 0;
  }

  .desktop-nav a {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .desktop-nav a::after {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-item:nth-child(2) {
    border-right: none;
  }

  .metric-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .update-wrap {
    grid-template-columns: 1fr;
  }

  .guide-aside {
    display: none;
  }

  .compare-wrap {
    gap: 24px;
  }

  .compare-divider {
    display: none;
  }

  .compare-wrap {
    grid-template-columns: 1fr;
  }

  .compare-head {
    margin-bottom: 24px;
  }

  .compare-head .side-type {
    margin-bottom: 10px;
    margin-top: 28px;
  }

  .compare-wrap > div:last-child .compare-head {
    margin-top: 26px;
  }

  .request-panel {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 38px;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 60px;
  }

  .top-ticker {
    font-size: .75rem;
    padding: 4px 10px;
  }

  .site-nav {
    position: relative;
  }

  .logo {
    font-size: .98rem;
    gap: 8px;
    white-space: normal;
    line-height: 1.45;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .hero h1 {
    font-size: clamp(1.62rem, 6.4vw, 2.2rem);
  }

  .hero-desc {
    font-size: .9375rem;
  }

  .hero-scroll-hint {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }

  .metric-item {
    padding: 18px 14px 4px;
  }

  .metric-item:nth-child(2n) {
    border-right: none;
  }

  .metric-item:nth-child(odd) {
    border-right: 1px solid var(--line-soft);
  }

  .metric-num {
    font-size: 2.2rem;
  }

  .matrix-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rail-card {
    flex: 0 0 170px;
    max-width: 170px;
  }

  .update-item {
    flex-wrap: wrap;
    gap: 10px;
  }

  .update-item .up-date {
    flex-basis: auto;
    margin-left: auto;
  }

  .up-cat {
    flex-basis: auto;
    padding: 2px 10px;
  }

  .up-cat + .up-title {
    flex-basis: 100%;
  }

  .update-item .up-title {
    flex-basis: calc(100% - 92px);
  }

  .faq-summary {
    padding: 17px 18px;
  }

  .faq-answer {
    padding: 0 18px 20px 18px;
  }

  .request-panel {
    border-radius: 16px;
    padding: 34px 20px;
  }

  .form-success {
    font-size: .8125rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom .footer-legal {
    border-left: none;
    padding-left: 0;
    font-size: .75rem;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .need-form {
    padding: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn {
    justify-content: center;
  }
}

/* roulang page: category1 */
:root {
  --bg: #0B0A09;
  --bg-deep: #080706;
  --bg-soft: #14110E;
  --bg-card: #1B1814;
  --gold: #C9A063;
  --gold-light: #E0BD85;
  --gold-muted: rgba(201, 160, 99, .18);
  --text: #F2EDE4;
  --text-soft: #D7CEC0;
  --text-muted: #978E82;
  --line: rgba(201, 160, 99, .16);
  --line-soft: rgba(255, 255, 255, .07);
  --green: #7A9B76;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow: 0 22px 46px rgba(0, 0, 0, .35);
  --transition: .35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: rgba(201, 160, 99, .28);
  color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.hidden-mobile {
  display: inline-flex;
}

/* Header */
.top-ticker {
  background: #060505;
  border-bottom: 1px solid rgba(201, 160, 99, .16);
  color: rgba(242, 237, 228, .7);
  font-size: .75rem;
  letter-spacing: .18em;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}

.top-ticker strong {
  color: var(--gold-light);
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header.scrolled .site-nav {
  background: rgba(11, 10, 9, .76);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(201, 160, 99, .12);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
}

.logo-dot {
  display: block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 0 0 4px rgba(201, 160, 99, .14);
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(242, 237, 228, .78);
  transition: color .25s ease;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform .3s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: translateX(-50%) scale(1);
}

.desktop-nav a.active {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .9375rem;
  font-weight: 500;
  border-radius: 3px;
  transition: all .3s ease;
}

.btn-gold {
  background: var(--gold);
  color: #17130B;
  font-weight: 600;
  padding: 11px 28px;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 160, 99, .16);
}

.btn-gold:active {
  transform: translateY(0) scale(.98);
}

.btn-outline {
  border: 1px solid rgba(201, 160, 99, .38);
  background: transparent;
  color: var(--text);
  padding: 10px 26px;
  font-weight: 500;
}

.btn-outline:hover {
  background: rgba(201, 160, 99, .1);
  border-color: rgba(201, 160, 99, .7);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: scale(.98);
}

.btn-sm {
  font-size: .85rem;
  padding: 8px 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .9375rem;
  font-weight: 500;
  transition: gap .3s ease;
}

.text-link .arrow {
  font-style: normal;
  transition: transform .3s ease;
}

.text-link:hover {
  color: var(--gold-light);
}

.text-link:hover .arrow {
  transform: translateX(5px);
}

/* Category Hero */
.category-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
  border-bottom: 1px solid rgba(201, 160, 99, .1);
}

.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 7, .96) 0%, rgba(12, 10, 9, .86) 52%, rgba(12, 10, 9, .56) 100%),
    url('/assets/images/backpic/back-2.jpg') center top / cover no-repeat;
  z-index: -2;
}

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 9, .1) 0%, rgba(11, 10, 9, .8) 100%);
  z-index: -1;
}

.category-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 64px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color .25s ease;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb i {
  font-style: normal;
  color: rgba(242, 237, 228, .34);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--gold-light);
  letter-spacing: .18em;
  margin-bottom: 18px;
}

.hero-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.category-hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: .01em;
  margin-bottom: 18px;
  color: #fff;
}

.category-hero-desc {
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 620px;
  line-height: 1.9;
  margin-bottom: 34px;
}

.category-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* Update card */
.update-card {
  background: rgba(20, 17, 14, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, .28);
}

.update-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8125rem;
  letter-spacing: .16em;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(122, 155, 118, .4);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(.4);
    opacity: 1;
  }
  80%,
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.update-list {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 22px;
}

.update-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: .875rem;
  color: var(--text-soft);
}

.update-list li:last-child {
  border-bottom: none;
}

.update-list li span {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .04em;
  min-width: 52px;
}

.countdown-label {
  color: var(--text-muted);
  font-size: .8125rem;
  margin-bottom: 14px;
}

.countdown-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.countdown-cell {
  flex: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  text-align: center;
  padding: 12px 6px;
}

.countdown-cell b {
  display: block;
  font-size: 1.7rem;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: #fff;
  line-height: 1.2;
}

.countdown-cell span {
  display: block;
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .16em;
  margin-top: 4px;
}

.update-note-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(201, 160, 99, .3);
  padding-bottom: 2px;
  transition: color .25s ease, border-color .25s ease;
}

.update-note-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

/* Wall section */
.catalog-section {
  padding: 96px 0 72px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.section-head.left-only {
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.35;
}

.section-sub {
  max-width: 680px;
  color: var(--text-muted);
  font-size: .9375rem;
  margin-top: 8px;
}

/* Toolbar */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  padding: 18px 22px;
  margin-bottom: 42px;
}

.toolbar-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.toolbar-label {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-right: 8px;
  letter-spacing: .08em;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: var(--text-soft);
  font-size: .8125rem;
  padding: 6px 16px;
  border-radius: 100px;
  line-height: 1.5;
  transition: all .28s ease;
  min-height: 36px;
}

.chip:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #17130B;
  font-weight: 500;
}

.chip.active:hover {
  color: #17130B;
  background: var(--gold-light);
}

/* Drama cards */
.drama-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.drama-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .38s ease, border-color .38s ease, box-shadow .38s ease;
}

.drama-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 160, 99, .5);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .32);
}

.drama-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: #100E0B;
  aspect-ratio: 4 / 4.6;
}

.drama-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease, opacity .3s ease;
}

.drama-card:hover .drama-cover img {
  transform: scale(1.05);
}

.drama-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(8, 7, 6, .78) 100%);
}

.cover-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  line-height: 1;
  padding: 4px 9px;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: .04em;
}

.badge-free {
  background: var(--gold);
  color: #17130B;
}

.badge-hd {
  background: transparent;
  border: 1px solid rgba(242, 237, 228, .45);
  color: var(--text);
}

.badge-new {
  background: transparent;
  border: 1px solid rgba(122, 155, 118, .45);
  color: var(--green);
}

.badge-new::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(242, 237, 228, .5);
  border-radius: 50%;
  background: rgba(9, 8, 7, .42);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: translate(-50%, calc(-50% + 8px));
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease, border-color .3s ease, background .3s ease;
}

.play-hover::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #F2EDE4;
  transform: translateX(2px);
}

.drama-card:hover .play-hover,
.drama-cover:focus-visible .play-hover {
  opacity: 1;
  transform: translate(-50%, -50%);
  border-color: rgba(201, 160, 99, .9);
}

.drama-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 18px 18px 20px;
}

.drama-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
}

.drama-sub {
  font-size: .8125rem;
  color: rgba(242, 237, 228, .86);
  margin-top: 2px;
}

.drama-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: .75rem;
  color: rgba(215, 206, 192, .7);
  margin-top: 9px;
}

/* Pagination */
.pagination-wrap {
  display: flex;
  justify-content: center;
  margin: 66px 0 0;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--text-soft);
  font-size: .875rem;
  transition: all .25s ease;
}

.pagination a:hover {
  border-color: rgba(201, 160, 99, .5);
  color: var(--gold-light);
}

.pagination .page-current {
  border-color: rgba(201, 160, 99, .5);
  box-shadow: inset 0 -2px 0 var(--gold);
  color: #fff;
  font-weight: 600;
}

.pagination .page-arrow {
  border-color: transparent;
}

.pagination .page-arrow.disabled {
  color: rgba(242, 237, 228, .28);
  cursor: not-allowed;
}

.pagination .page-arrow.disabled:hover {
  border-color: transparent;
  color: rgba(242, 237, 228, .28);
}

.pagination .page-count {
  border: none;
  min-width: auto;
  color: var(--text-muted);
  font-size: .8125rem;
  margin-left: 12px;
}

/* Reading guide */
.reading-section {
  padding: 88px 0;
  border-top: 1px solid rgba(201, 160, 99, .1);
  border-bottom: 1px solid rgba(201, 160, 99, .1);
  background: linear-gradient(180deg, rgba(20, 17, 14, .4), rgba(8, 7, 6, .5));
}

.reading-block {
  display: grid;
  grid-template-columns: .9fr 1.35fr;
  gap: 64px;
}

.reading-lead .eyebrow {
  margin-bottom: 16px;
}

.reading-lead h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.4;
  margin-bottom: 26px;
}

.reading-quote {
  padding: 8px 0 8px 18px;
  border-left: 2px solid var(--gold);
  color: var(--gold-light);
  font-size: .9375rem;
  line-height: 1.9;
  margin-top: 8px;
}

.reading-body p {
  color: var(--text-soft);
  font-size: .9375rem;
  line-height: 1.95;
  margin-bottom: 20px;
}

.reading-body p:last-child {
  margin-bottom: 0;
}

/* CTA */
.cta-strip {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(201, 160, 99, .12), rgba(11, 10, 9, .94) 45%),
    url('/assets/images/backpic/back-3.jpg') center / cover no-repeat;
  opacity: .38;
  z-index: -1;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  border-top: 1px solid rgba(201, 160, 99, .35);
  border-bottom: 1px solid rgba(201, 160, 99, .35);
  padding: 30px 0;
}

.cta-inner p {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--text);
  font-weight: 500;
}

.cta-inner p span {
  color: var(--gold-light);
}

/* Footer */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(201, 160, 99, .14);
  padding: 84px 0 40px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.9;
  max-width: 360px;
}

.footer-col h4 {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: .05em;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a,
.footer-col li {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.6;
  list-style: none;
  transition: color .25s ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  font-size: .75rem;
  color: rgba(151, 142, 130, .7);
}

.footer-legal {
  max-width: 720px;
  text-align: right;
  line-height: 1.7;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1180px) {
  .container {
    padding: 0 36px;
  }

  .drama-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }

  .desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 10, 9, .98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 90;
  }

  .site-header.menu-open .desktop-nav {
    opacity: 1;
    visibility: visible;
  }

  .desktop-nav ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .desktop-nav a {
    font-size: 1.2rem;
    color: var(--text);
  }

  .desktop-nav a::after {
    bottom: -10px;
  }

  .category-hero .container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .update-card {
    max-width: 620px;
  }

  .reading-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .site-nav {
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 12px;
  }

  .logo {
    font-size: .98rem;
  }

  .logo-dot {
    width: 8px;
    height: 8px;
  }

  .hidden-mobile {
    display: none !important;
  }

  .category-hero {
    padding: 60px 0 68px;
  }

  .breadcrumb {
    margin-bottom: 18px;
  }

  .category-hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .category-hero-desc {
    font-size: .9375rem;
  }

  .category-hero-actions {
    gap: 14px;
  }

  .category-hero-actions .btn {
    width: 100%;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .toolbar-group {
    justify-content: flex-start;
  }

  .drama-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .drama-info {
    padding: 12px 12px 14px;
  }

  .drama-title {
    font-size: .98rem;
  }

  .drama-sub {
    font-size: .75rem;
  }

  .drama-meta {
    font-size: .6875rem;
    gap: 4px 10px;
    margin-top: 6px;
  }

  .play-hover {
    width: 40px;
    height: 40px;
  }

  .pagination-wrap {
    margin-top: 46px;
  }

  .pagination .page-count {
    width: 100%;
    justify-content: center;
    margin: 10px 0 0;
  }

  .reading-section,
  .catalog-section {
    padding: 64px 0;
  }

  .cta-strip {
    padding: 54px 0;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .drama-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .drama-cover {
    aspect-ratio: 4 / 3.8;
  }

  .catalog-toolbar {
    padding: 14px;
  }

  .toolbar-group {
    display: grid;
    grid-template-columns: repeat(4, auto);
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .toolbar-group .chip {
    white-space: nowrap;
  }

  .toolbar-label {
    grid-column: 1 / -1;
  }

  .update-card {
    padding: 20px;
  }

  .countdown-cell b {
    font-size: 1.3rem;
  }
}
