/* roulang page: index */
/* ===== Design Tokens ===== */
:root {
  --bg-paper: #F5F2EB;
  --bg-white: #FFFFFF;
  --ink: #1E1B16;
  --ink-soft: #3A352D;
  --muted: #7A7264;
  --line: #E4DFD3;
  --accent: #B9975B;
  --accent-strong: #9A7A3F;
  --accent-soft: rgba(185,151,91,.12);
  --night: #17150F;
  --night-text: #F2EEE2;
  --live: #D04A2A;
  --success: #3E7A4B;
  --error: #B23A3A;
  --radius-card: 12px;
  --radius-sm: 8px;
  --radius-hero: 20px;
  --shadow-card: 0 8px 30px rgba(30,27,22,.08);
  --shadow-hover: 0 16px 40px rgba(30,27,22,.12);
  --transition: 200ms cubic-bezier(.2,0,0,1);
  --font-serif: "Noto Serif SC","Songti SC","SimSun",serif;
  --font-sans: "HarmonyOS Sans SC","PingFang SC","Microsoft YaHei",sans-serif;
  --font-num: "DIN Alternate","SF Mono",monospace;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg-paper);
  color: var(--ink);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input { font: inherit; border: none; background: none; outline: none; }
ul, ol { list-style: none; }

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  letter-spacing: .01em;
}
.section-desc {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  margin-bottom: 40px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.btn-primary:hover { background: var(--accent-strong); }
.btn-primary:active { background: var(--accent-strong); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.7);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-header {
  height: 40px;
  padding: 0 20px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 14px;
}
.btn-header:hover { background: var(--accent-soft); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0 20px;
  font-size: 14px;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(245,242,235,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(30,27,22,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 0;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--ink); font-weight: 600; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile Drawer ===== */
.mobile-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-paper);
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 24px;
  z-index: 99;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 16px 40px rgba(30,27,22,.1);
}
.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.drawer-link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color var(--transition), padding-left var(--transition);
}
.drawer-link:hover { color: var(--accent); padding-left: 6px; }
.drawer-link:last-child { border-bottom: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 640px;
  background-image: url('/assets/images/backpic/back-1.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 72px;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(23,21,15,.1) 0%, rgba(23,21,15,.35) 55%, rgba(23,21,15,.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  animation: fadeUp .6s cubic-bezier(.2,0,0,1) both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(23,21,15,.55);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  animation: breathe 1.6s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .01em;
  max-width: 640px;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Countdown ===== */
.countdown-section {
  position: relative;
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
}
.countdown-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--accent), var(--accent) 60%, transparent 100%);
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.countdown-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
  position: relative;
}
.cd-item + .cd-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}
.cd-num {
  font-family: var(--font-num);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  transition: opacity .3s;
}
.cd-unit {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .05em;
}
.cd-item.seconds .cd-num { color: var(--accent); }
.cd-item.seconds .cd-unit { color: var(--accent); }

/* ===== Highlights ===== */
.highlights {
  padding: 96px 0 64px;
}
.highlight-list {
  border-top: 1px solid var(--line);
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
  border-radius: 0;
}
.highlight-item:hover { background: var(--accent-soft); padding-left: 12px; }
.hl-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: #C9C1B2;
  line-height: 1;
  min-width: 80px;
  transition: color var(--transition);
}
.highlight-item:hover .hl-num { color: var(--accent); }
.hl-body { flex: 1; min-width: 0; }
.hl-body h3 {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}
.hl-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.hl-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.hl-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.hl-link:hover { gap: 10px; }

/* ===== Tags ===== */
.tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 999px;
}

/* ===== Subscribe ===== */
.subscribe {
  background: var(--night);
  color: var(--night-text);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.subscribe::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(185,151,91,.06);
}
.subscribe-inner { position: relative; z-index: 1; }
.subscribe-title {
  font-size: clamp(30px, 3.5vw, 40px);
  margin-bottom: 8px;
}
.subscribe-note {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}
.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  flex-wrap: wrap;
}
.form-input {
  flex: 1;
  min-width: 240px;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input::placeholder { color: #9E988C; }
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(185,151,91,.2);
}
.form-input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(178,58,58,.15);
}
.form-input.success {
  border-color: var(--success);
  box-shadow: 0 0 0 4px rgba(62,122,75,.15);
}
.form-error-msg {
  width: 100%;
  color: #E07060;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}
.form-error-msg.show { display: block; }
.privacy-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
}
.subscribe-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
}
.subscribe-success.show { display: flex; }
.success-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.success-text {
  font-size: 15px;
  color: var(--night-text);
}
.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none !important;
}
.subscribe .btn-primary { width: auto; }

/* ===== Replays ===== */
.replays {
  padding: 96px 0 64px;
}
.replay-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
}
.replay-card-main {
  position: relative;
  border-radius: var(--radius-hero);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.replay-card-main:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.replay-card-main .replay-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.replay-card-main .replay-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s cubic-bezier(.2,0,0,1);
}
.replay-card-main:hover .replay-img-wrap img { transform: scale(1.03); }
.duration-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(23,21,15,.78);
  color: #fff;
  font-size: 12px;
  font-family: var(--font-num);
  padding: 3px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.replay-info {
  padding: 20px 24px 24px;
}
.replay-info h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.replay-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.replay-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.replay-card-small {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.replay-card-small:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.replay-card-small .replay-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/8;
}
.replay-card-small .replay-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s cubic-bezier(.2,0,0,1);
}
.replay-card-small:hover .replay-img-wrap img { transform: scale(1.03); }
.replay-card-small .replay-info { padding: 14px 16px 16px; }
.replay-card-small .replay-info h3 { font-size: 15px; }
.replay-card-small .replay-meta { font-size: 12px; margin-bottom: 8px; }

/* ===== News / CMS ===== */
.news-section {
  padding: 96px 0 64px;
  background: var(--bg-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 16px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: background var(--transition), padding-left var(--transition);
}
.news-card:hover { background: var(--accent-soft); padding-left: 24px; }
.news-tag {
  flex-shrink: 0;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.news-body { flex: 1; min-width: 0; }
.news-body h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
  transition: color var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-card:hover .news-body h3 { color: var(--accent-strong); }
.news-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-time {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-num);
}
.news-arrow {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 18px;
  transition: transform var(--transition);
}
.news-card:hover .news-arrow { transform: translateX(4px); }
.news-empty {
  border: 2px dashed var(--line);
  border-radius: var(--radius-card);
  padding: 60px 32px;
  text-align: center;
  color: var(--muted);
}
.empty-icon {
  font-size: 44px;
  display: block;
  margin-bottom: 12px;
  color: #C9C1B2;
}
.news-empty p { font-size: 15px; }

/* ===== FAQ ===== */
.faq-section {
  padding: 96px 0 64px;
}
.faq-list {
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent-strong); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  transition: all var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(.2,0,0,1);
}
.faq-a p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ===== CTA Band ===== */
.cta-band {
  background: var(--night);
  color: var(--night-text);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  margin-bottom: 32px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--night);
  color: var(--night-text);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  max-width: 300px;
}
.footer-links h3,
.footer-meta h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgba(255,255,255,.85);
}
.footer-links a,
.footer-meta a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 4px 0;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover,
.footer-meta a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s cubic-bezier(.2,0,0,1), transform .4s cubic-bezier(.2,0,0,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Media Queries ===== */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .main-nav { gap: 20px; }
  .replay-grid { grid-template-columns: 1fr; }
  .countdown-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .btn-header { display: none; }
  .hero { min-height: 520px; padding: 90px 0 56px; }
  .hero h1 { font-size: 30px; }
  .highlight-item { flex-wrap: wrap; gap: 12px; padding: 24px 0; }
  .hl-num { min-width: 48px; font-size: 32px; }
  .hl-link { margin-left: auto; }
  .replay-side { flex-direction: row; gap: 16px; }
  .replay-card-small .replay-img-wrap { aspect-ratio: 16/7; }
  .news-card { flex-wrap: wrap; gap: 12px; padding: 18px 12px; }
  .news-tag { order: 1; }
  .news-time { order: 3; margin-left: auto; }
  .news-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cd-num { font-size: 34px; }
  .cd-item { padding: 0 12px; }
  .cd-item:first-child { padding-left: 0; }
  .section-title { font-size: 28px; }
  .faq-q { font-size: 15px; }
  .countdown-inner { padding-top: 32px; padding-bottom: 32px; }
  .subscribe-form { flex-direction: column; }
  .form-input { width: 100%; flex: none; }
  .subscribe .btn-primary { width: 100%; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .hero { min-height: 480px; }
  .hero h1 { font-size: 26px; }
  .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .countdown-grid { gap: 0; }
  .cd-num { font-size: 28px; }
  .cd-unit { font-size: 11px; }
  .cd-item { padding: 0 8px; }
  .replay-side { flex-direction: column; }
  .replay-info { padding: 14px; }
  .replay-info h3 { font-size: 16px; }
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-content { animation: none; }
  .live-dot { animation: none; }
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* roulang page: category1 */
:root {
  --bg-paper: #F5F2EB;
  --bg-white: #FFFFFF;
  --ink: #1E1B16;
  --ink-soft: #3A352D;
  --muted: #7A7264;
  --line: #E4DFD3;
  --accent: #B9975B;
  --accent-strong: #9A7A3F;
  --accent-soft: rgba(185, 151, 91, .12);
  --night: #17150F;
  --night-text: #F2EEE2;
  --live: #D04A2A;
  --success: #3E7A4B;
  --error: #B23A3A;
  --radius-card: 12px;
  --radius-small: 8px;
  --shadow-card: 0 8px 30px rgba(30, 27, 22, .08);
  --shadow-hover: 0 16px 40px rgba(30, 27, 22, .12);
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  --font-sans: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "DIN Alternate", "SF Mono", "Menlo", Consolas, "Courier New", monospace;
  --ease: cubic-bezier(.2, 0, 0, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--ink);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 640px) {
  .container { padding-left: 16px; padding-right: 16px; }
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-small);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .28s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent-strong);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(185, 151, 91, .3);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(30, 27, 22, .28);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(30, 27, 22, .04);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-header {
  height: 40px;
  padding: 0 20px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--accent);
  font-size: 14px;
  border-radius: 6px;
}
.btn-header:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(245, 242, 235, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(30, 27, 22, .05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .01em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 6px;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}
.nav-link:hover {
  color: var(--ink);
}
.nav-link:hover::after {
  width: 20px;
}
.nav-link.active {
  color: var(--ink);
  font-weight: 600;
}
.nav-link.active::after {
  width: 20px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 28px 0 12px;
}
.breadcrumb a {
  color: var(--muted);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--line); }
.breadcrumb .current { color: var(--ink); font-weight: 500; }
/* ---------- Page Hero ---------- */
.page-hero {
  padding: 60px 0 44px;
  background: linear-gradient(180deg, rgba(245,242,235,0) 0%, var(--bg-paper) 100%);
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.page-hero .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  margin-bottom: 20px;
}
.page-hero .lead {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta-item .label {
  font-size: 12px;
  color: var(--muted);
}
.hero-meta-item .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
/* ---------- Split Section ---------- */
.split-section {
  padding: 80px 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}
.split-text .section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-strong);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.split-text h2 {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.25;
  margin-bottom: 18px;
}
.split-text p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.split-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 32px;
}
.split-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
}
.split-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.split-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.split-image:hover img { transform: scale(1.02); }
.live-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(23, 21, 15, .82);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--night-text);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--live);
}
.live-card .live-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(242, 238, 226, .75);
}
.live-card .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  animation: pulse 1.6s ease-in-out infinite;
}
.live-card strong {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-serif);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.85); }
}
/* ---------- Highlights List ---------- */
.highlights-section {
  padding: 88px 0 96px;
  background: var(--bg-white);
}
.section-head {
  margin-bottom: 44px;
}
.section-kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-strong);
  letter-spacing: .06em;
  display: block;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background .25s;
}
.highlight-item:first-of-type {
  border-top: 1px solid var(--line);
}
.highlight-item:hover {
  background: linear-gradient(90deg, var(--accent-soft), transparent 60%);
}
.hl-thumb {
  width: 120px;
  height: 76px;
  border-radius: var(--radius-small);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(30,27,22,.08);
}
.hl-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--line);
  width: 56px;
  flex-shrink: 0;
  transition: color .3s;
}
.highlight-item:hover .hl-num { color: var(--accent); }
.hl-body {
  flex: 1;
}
.hl-body .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-strong);
  background: var(--accent-soft);
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.hl-body h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  transition: color .25s;
}
.highlight-item:hover .hl-body h3 { color: var(--accent-strong); }
.hl-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.hl-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
}
.hl-meta .time {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-soft);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: color .25s;
}
.text-link .arrow {
  transition: transform .28s var(--ease);
}
.text-link:hover { color: var(--accent-strong); }
.text-link:hover .arrow { transform: translateX(4px); }
/* ---------- Stats Band ---------- */
.stats-band {
  background: var(--night);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  color: var(--night-text);
  line-height: 1.1;
  display: block;
  margin-bottom: 8px;
}
.stat-num em {
  font-style: normal;
  color: var(--accent);
}
.stat-label {
  font-size: 14px;
  color: rgba(242, 238, 226, .55);
}
/* ---------- Coverage ---------- */
.coverage-section {
  padding: 88px 0 96px;
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.coverage-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  border: 1px solid transparent;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--line);
}
.coverage-card .num {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  margin-bottom: 14px;
  display: block;
}
.coverage-card h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.coverage-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
/* ---------- FAQ ---------- */
.faq-section {
  background: var(--night);
  padding: 88px 0 96px;
}
.faq-section .section-head h2 {
  color: var(--night-text);
}
.faq-section .section-head p {
  color: rgba(242, 238, 226, .55);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(242, 238, 226, .1);
}
.faq-item:first-child {
  border-top: 1px solid rgba(242, 238, 226, .1);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--night-text);
  text-align: left;
  transition: color .25s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(242, 238, 226, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  transition: transform .35s var(--ease), border-color .3s, background .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer-inner {
  padding: 0 4px 28px;
  color: rgba(242, 238, 226, .62);
  font-size: 15px;
  line-height: 1.8;
  max-width: 680px;
}
.faq-answer-inner a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.faq-answer-inner a:hover { border-bottom-color: var(--accent); }
.faq-item.open .faq-answer {
  max-height: 360px;
}
/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--night);
  padding: 80px 0 88px;
  border-top: 1px solid rgba(242, 238, 226, .06);
}
.cta-inner {
  text-align: center;
  max-width: 720px;
}
.cta-inner .kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 14px;
}
.cta-inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--night-text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-inner p {
  color: rgba(242, 238, 226, .55);
  font-size: 15px;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-actions .btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.cta-actions .btn-primary:hover {
  background: var(--accent-strong);
  color: #fff;
}
.cta-actions .btn-ghost {
  border-color: rgba(242, 238, 226, .35);
  color: var(--night-text);
}
.cta-actions .btn-ghost:hover {
  border-color: var(--night-text);
  background: rgba(242, 238, 226, .06);
}
/* ---------- Footer ---------- */
.site-footer {
  background: var(--night);
  color: rgba(242, 238, 226, .6);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .brand-name {
  color: var(--night-text);
}
.footer-brand p {
  margin-top: 16px;
  max-width: 300px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242, 238, 226, .5);
}
.footer-links h3,
.footer-meta h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--night-text);
  margin-bottom: 20px;
}
.footer-links a,
.footer-meta a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(242, 238, 226, .55);
  transition: color .25s, padding-left .25s;
}
.footer-links a:hover,
.footer-meta a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(242, 238, 226, .08);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(242, 238, 226, .35);
}
.footer-bottom a {
  color: rgba(242, 238, 226, .45);
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--accent); }
/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .split-grid { gap: 40px; }
  .split-image img { height: 360px; }
  .highlight-item { gap: 16px; }
  .hl-thumb { width: 100px; height: 68px; }
}
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(30,27,22,.08);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 8px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link::after { display: none; }
  .btn-header { display: none; }
  .nav-toggle { display: flex; }
  .split-grid { grid-template-columns: 1fr; }
  .split-image img { height: 300px; }
  .split-features { grid-template-columns: 1fr; }
  .stats-grid { gap: 24px; }
  .stat-num { font-size: 40px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .highlight-item { flex-wrap: wrap; }
  .hl-num { width: 40px; font-size: 26px; }
  .hl-thumb { width: 88px; height: 60px; }
  .hl-meta { width: 100%; padding-left: 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .page-hero { padding: 40px 0 32px; }
  .page-hero h1 { font-size: 34px; }
  .split-section { padding: 56px 0; }
  .highlights-section { padding: 64px 0 72px; }
  .coverage-section { padding: 64px 0 72px; }
  .faq-section { padding: 64px 0 72px; }
  .cta-band { padding: 60px 0 64px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid .stat:last-child { grid-column: 1 / -1; }
  .highlight-item { gap: 12px; }
  .hl-thumb { width: 76px; height: 56px; }
  .hl-body h3 { font-size: 16px; }
  .hl-meta { padding-left: 0; flex-wrap: wrap; }
  .hl-num { display: none; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .footer-bottom { justify-content: center; }
}

/* roulang page: category2 */
:root {
  --bg-paper: #F5F2EB;
  --bg-white: #FFFFFF;
  --ink: #1E1B16;
  --ink-soft: #3A352D;
  --muted: #7A7264;
  --line: #E4DFD3;
  --accent: #B9975B;
  --accent-strong: #9A7A3F;
  --accent-soft: rgba(185,151,91,.12);
  --night: #17150F;
  --night-text: #F2EEE2;
  --live: #D04A2A;
  --success: #3E7A4B;
  --error: #B23A3A;
  --serif: "Noto Serif SC","Songti SC","SimSun",serif;
  --sans: "HarmonyOS Sans SC","PingFang SC","Microsoft YaHei",sans-serif;
  --mono: "DIN Alternate","SF Mono",Menlo,monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 8px 30px rgba(30,27,22,.08);
  --shadow-hover: 0 16px 40px rgba(30,27,22,.14);
  --ease: 200ms cubic-bezier(.2,0,0,1);
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);
  font-size:16px;
  line-height:1.75;
  color:var(--ink);
  background:var(--bg-paper);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
ul,ol{list-style:none}
input{font-family:inherit}

.container{
  max-width:1280px;
  margin:0 auto;
  padding:0 24px;
}

/* 按钮 */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:48px;
  padding:0 28px;
  border-radius:var(--radius-sm);
  font-size:15px;
  font-weight:600;
  transition:var(--ease);
  line-height:1;
  white-space:nowrap;
}
.btn-primary{
  background:var(--accent);
  color:var(--ink);
}
.btn-primary:hover{background:var(--accent-strong);color:var(--bg-white);transform:translateY(-2px)}
.btn-primary:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.btn-primary:active{transform:translateY(0)}
.btn-primary:disabled{opacity:.5;cursor:not-allowed;transform:none}

.btn-ghost{
  background:transparent;
  color:var(--night-text);
  border:1px solid rgba(255,255,255,.6);
}
.btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.08);transform:translateY(-2px)}
.btn-ghost:focus-visible{outline:2px solid #fff;outline-offset:2px}
.btn-ghost:active{transform:translateY(0)}

.btn-outline{
  background:transparent;
  color:var(--accent-strong);
  border:1px solid var(--accent);
}
.btn-outline:hover{background:var(--accent-soft);transform:translateY(-2px)}
.btn-outline:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.btn-outline:active{transform:translateY(0)}

.btn-header{
  height:40px;
  padding:0 20px;
  font-size:14px;
  background:transparent;
  color:var(--ink);
  border:1px solid var(--accent);
  border-radius:999px;
}
.btn-header:hover{background:var(--accent-soft);border-color:var(--accent-strong)}

/* 页头导航 */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  height:72px;
  background:rgba(245,242,235,.88);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  transition:box-shadow var(--ease), border-color var(--ease);
  border-bottom:1px solid transparent;
}
.site-header.scrolled{
  box-shadow:0 4px 20px rgba(30,27,22,.06);
  border-bottom:1px solid var(--line);
}
.header-inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.brand-dot{
  width:14px;height:14px;
  border-radius:50%;
  background:var(--accent);
  position:relative;
}
.brand-dot::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:50%;
  border:1px solid var(--accent);
  opacity:.4;
}
.brand-name{
  font-family:var(--serif);
  font-size:22px;
  font-weight:700;
  color:var(--ink);
  letter-spacing:.01em;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:32px;
}
.nav-link{
  position:relative;
  font-size:15px;
  font-weight:500;
  color:var(--ink-soft);
  padding:8px 2px;
  transition:color var(--ease);
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-2px;
  height:2px;
  border-radius:2px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform var(--ease);
}
.nav-link:hover{color:var(--ink)}
.nav-link.active{color:var(--ink);font-weight:600}
.nav-link.active::after{transform:scaleX(1)}
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  width:40px;height:40px;
  align-items:center;
  justify-content:center;
  border-radius:var(--radius-sm);
}
.nav-toggle span{
  width:20px;height:2px;
  background:var(--ink);
  border-radius:2px;
  transition:var(--ease);
}
.nav-toggle:hover span{background:var(--accent-strong)}
.nav-toggle:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* 面包屑 */
.breadcrumb{
  padding:24px 0 8px;
  font-size:13px;
  color:var(--muted);
}
.breadcrumb a{color:var(--muted);transition:color var(--ease)}
.breadcrumb a:hover{color:var(--accent-strong)}
.breadcrumb .sep{margin:0 8px;color:var(--line)}
.breadcrumb .current{color:var(--ink);font-weight:600}

/* 页头 */
.page-head{
  padding:32px 0 48px;
}
.page-head .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  color:var(--accent-strong);
  letter-spacing:.06em;
  margin-bottom:16px;
}
.page-head .eyebrow::before{
  content:"";
  width:24px;height:2px;
  background:var(--accent);
  border-radius:2px;
}
.page-head h1{
  font-family:var(--serif);
  font-size:clamp(36px,5vw,52px);
  font-weight:700;
  line-height:1.2;
  color:var(--ink);
  margin-bottom:16px;
  max-width:680px;
}
.page-head .lead{
  font-size:16px;
  line-height:1.8;
  color:var(--muted);
  max-width:640px;
}

/* 通栏大图 + 下方文字条 */
.fullband{
  padding:8px 0 64px;
}
.fullband-image{
  height:460px;
  border-radius:var(--radius-lg);
  background:url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
  position:relative;
  overflow:hidden;
}
.fullband-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(23,21,15,.6) 0%, transparent 45%);
}
.fullband-tag{
  position:absolute;
  left:32px;bottom:24px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(23,21,15,.5);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.25);
  color:var(--night-text);
  border-radius:999px;
  padding:10px 20px;
  font-size:14px;
  font-weight:500;
}
.fullband-tag .dot{
  width:8px;height:8px;
  border-radius:50%;
  background:var(--accent);
  animation:pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(185,151,91,.4)}
  50%{opacity:.7;box-shadow:0 0 0 6px rgba(185,151,91,0)}
}
.fullband-bar{
  position:relative;
  z-index:3;
  max-width:920px;
  margin:-48px auto 0;
  background:var(--bg-white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:36px 44px;
}
.fullband-bar h2{
  font-family:var(--serif);
  font-size:26px;
  font-weight:700;
  color:var(--ink);
  margin-bottom:12px;
}
.fullband-bar p{
  font-size:15px;
  line-height:1.8;
  color:var(--muted);
}

/* 精选回放 */
.section{
  padding:64px 0;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:40px;
}
.section-title{
  font-family:var(--serif);
  font-size:32px;
  font-weight:700;
  line-height:1.25;
  color:var(--ink);
  position:relative;
  padding-bottom:14px;
}
.section-title::after{
  content:"";
  position:absolute;
  left:0;bottom:0;
  width:40px;height:3px;
  border-radius:3px;
  background:var(--accent);
}
.section-sub{
  font-size:14px;
  color:var(--muted);
  max-width:520px;
}

.replay-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.replay-card{
  background:var(--bg-white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform var(--ease), box-shadow var(--ease);
}
.replay-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}
.replay-card .thumb{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
}
.replay-card .thumb img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform 300ms cubic-bezier(.2,0,0,1);
}
.replay-card:hover .thumb img{transform:scale(1.03)}
.replay-card .duration{
  position:absolute;
  left:12px;bottom:12px;
  background:rgba(23,21,15,.85);
  color:var(--night-text);
  font-family:var(--mono);
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  letter-spacing:.03em;
}
.replay-card .body{
  padding:20px;
}
.replay-card .title{
  font-size:17px;
  font-weight:600;
  line-height:1.5;
  color:var(--ink);
  margin-bottom:8px;
  transition:color var(--ease);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.replay-card:hover .title{color:var(--accent-strong)}
.replay-card .meta{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:13px;
  color:var(--muted);
}
.replay-card .meta .views{font-family:var(--mono)}

/* 热门回放列表 */
.hot-list-section{
  background:var(--bg-white);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.hot-list{
  border-top:1px solid var(--line);
}
.hot-item{
  display:flex;
  align-items:center;
  gap:24px;
  padding:20px 8px;
  border-bottom:1px solid var(--line);
  transition:background var(--ease);
}
.hot-item:hover{background:var(--accent-soft)}
.hot-item .index{
  font-family:var(--serif);
  font-size:26px;
  font-weight:700;
  color:var(--line);
  width:48px;
  flex-shrink:0;
  transition:color var(--ease);
}
.hot-item:hover .index{color:var(--accent)}
.hot-item .info{
  flex:1;
  min-width:0;
}
.hot-item .info .title{
  font-size:16px;
  font-weight:600;
  color:var(--ink);
  margin-bottom:4px;
  transition:color var(--ease);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.hot-item:hover .info .title{color:var(--accent-strong)}
.hot-item .info .desc{
  font-size:13px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.hot-item .date{
  font-family:var(--mono);
  font-size:13px;
  color:var(--muted);
  flex-shrink:0;
  background:var(--bg-paper);
  padding:4px 12px;
  border-radius:999px;
}

/* CTA 跳转 */
.cta-jump{
  background:var(--night);
  color:var(--night-text);
  padding:72px 0;
  position:relative;
  overflow:hidden;
}
.cta-jump::before{
  content:"";
  position:absolute;
  top:0;right:0;
  width:300px;height:300px;
  background:radial-gradient(circle, rgba(185,151,91,.18) 0%, transparent 70%);
}
.cta-jump .container{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}
.cta-jump h2{
  font-family:var(--serif);
  font-size:28px;
  font-weight:700;
  line-height:1.3;
}
.cta-jump p{
  font-size:15px;
  color:rgba(242,238,226,.7);
  margin-top:8px;
  max-width:480px;
}

/* FAQ */
.faq-section{
  padding:72px 0;
}
.faq-list{
  max-width:840px;
  margin:0 auto;
}
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item:first-child{border-top:1px solid var(--line)}
.faq-q{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 4px;
  cursor:pointer;
  font-size:17px;
  font-weight:600;
  color:var(--ink);
  text-align:left;
  width:100%;
  transition:color var(--ease);
}
.faq-q:hover{color:var(--accent-strong)}
.faq-q .icon{
  width:28px;height:28px;
  border-radius:50%;
  border:1px solid var(--line);
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  color:var(--muted);
  transition:transform var(--ease), border-color var(--ease), color var(--ease);
}
.faq-item.open .faq-q .icon{
  transform:rotate(45deg);
  border-color:var(--accent);
  color:var(--accent-strong);
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height 300ms ease, padding 300ms ease;
  padding:0 4px;
}
.faq-item.open .faq-a{
  max-height:200px;
  padding:0 4px 24px;
}
.faq-a p{
  font-size:15px;
  color:var(--muted);
  line-height:1.75;
}

/* 订阅提醒 */
.subscribe-band{
  background:var(--night);
  color:var(--night-text);
  padding:64px 0;
}
.subscribe-inner{
  max-width:720px;
  margin:0 auto;
  text-align:center;
}
.subscribe-inner h2{
  font-family:var(--serif);
  font-size:30px;
  font-weight:700;
  line-height:1.3;
}
.subscribe-inner .desc{
  font-size:14px;
  color:rgba(242,238,226,.66);
  margin-top:10px;
}
.subscribe-inner .gold-line{
  width:32px;height:2px;
  background:var(--accent);
  margin:18px auto 24px;
  border-radius:2px;
}
.subscribe-form{
  display:flex;
  gap:12px;
  max-width:480px;
  margin:0 auto;
}
.subscribe-form input{
  flex:1;
  height:48px;
  border-radius:var(--radius-sm);
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
  color:var(--night-text);
  padding:0 16px;
  font-size:15px;
  transition:var(--ease);
}
.subscribe-form input::placeholder{color:rgba(242,238,226,.5)}
.subscribe-form input:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(185,151,91,.25);
  background:rgba(255,255,255,.12);
}
.subscribe-form input.error{
  border-color:var(--error);
  box-shadow:0 0 0 3px rgba(178,58,58,.2);
}
.subscribe-form .btn{flex-shrink:0}
.subscribe-form .btn:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.form-status{
  font-size:13px;
  color:var(--success);
  margin-top:12px;
  display:none;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.form-status.error{color:var(--error)}
.form-status.show{display:flex}
.privacy-note{
  font-size:12px;
  color:rgba(242,238,226,.5);
  margin-top:14px;
}

/* 页脚 */
.site-footer{
  background:var(--night);
  color:rgba(242,238,226,.6);
  padding:64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr 1fr;
  gap:48px;
  padding-bottom:48px;
}
.footer-brand .brand-name{
  color:var(--night-text);
}
.footer-brand p{
  font-size:14px;
  line-height:1.8;
  color:rgba(242,238,226,.55);
  margin-top:16px;
  max-width:300px;
}
.footer-links h3,
.footer-meta h3{
  font-size:15px;
  font-weight:600;
  color:var(--night-text);
  margin-bottom:16px;
}
.footer-links a,
.footer-meta a{
  display:block;
  font-size:14px;
  color:rgba(242,238,226,.55);
  padding:6px 0;
  transition:color var(--ease);
}
.footer-links a:hover,
.footer-meta a:hover{
  color:var(--accent);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:20px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:13px;
  color:rgba(242,238,226,.4);
}
.footer-bottom a{
  color:rgba(242,238,226,.4);
  transition:color var(--ease);
}
.footer-bottom a:hover{color:var(--accent)}

/* 动画 */
.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .45s ease, transform .45s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* 响应式 */
@media (max-width:1024px){
  .replay-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .fullband-image{height:380px}
}

@media (max-width:768px){
  .container{padding:0 16px}
  .header-inner{gap:12px}
  .main-nav{
    position:fixed;
    top:72px;left:0;right:0;
    background:var(--bg-paper);
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:8px 24px 24px;
    border-bottom:1px solid var(--line);
    box-shadow:0 20px 40px rgba(30,27,22,.1);
    transform:translateY(-12px);
    opacity:0;
    pointer-events:none;
    transition:var(--ease);
    max-height:calc(100vh - 72px);
    overflow-y:auto;
  }
  .main-nav.open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
  .nav-link{
    display:block;
    padding:16px 4px;
    font-size:17px;
    border-bottom:1px solid var(--line);
  }
  .nav-link.active{color:var(--accent-strong)}
  .nav-toggle{
    display:flex;
    order:3;
  }
  .btn-header{
    display:none;
  }
  .fullband-image{height:300px}
  .fullband-bar{
    margin:-28px 12px 0;
    padding:28px 24px;
  }
  .fullband-bar h2{font-size:22px}
  .page-head{padding:24px 0 36px}
  .page-head h1{font-size:34px}
  .section{padding:48px 0}
  .section-title{font-size:26px}
  .section-head{flex-direction:column;align-items:flex-start;gap:12px}
  .cta-jump{padding:48px 0}
  .cta-jump h2{font-size:24px}
  .subscribe-form{flex-direction:column}
  .subscribe-form .btn{width:100%}
  .hot-item{flex-wrap:wrap;gap:12px}
  .hot-item .info{flex-basis:100%}
  .hot-item .info .title,.hot-item .info .desc{white-space:normal}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  .footer-bottom{flex-direction:column;gap:8px;align-items:flex-start}
  .faq-q{font-size:16px}
}

@media (max-width:520px){
  .replay-grid{grid-template-columns:1fr}
  .fullband-image{height:240px}
  .fullband-tag{left:16px;bottom:16px;padding:8px 16px;font-size:13px}
  .section-title{font-size:24px}
  .hot-item .index{font-size:22px;width:36px}
  .btn-header{display:none}
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    transition-duration:.01ms !important;
  }
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none}
}

/* roulang page: article */
:root {
  --bg-paper: #F5F2EB;
  --bg-white: #FFFFFF;
  --ink: #1E1B16;
  --ink-soft: #3A352D;
  --muted: #7A7264;
  --line: #E4DFD3;
  --accent: #B9975B;
  --accent-strong: #9A7A3F;
  --accent-soft: rgba(185,151,91,.12);
  --night: #17150F;
  --night-text: #F2EEE2;
  --live: #D04A2A;
  --success: #3E7A4B;
  --error: #B23A3A;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 8px 30px rgba(30,27,22,.08);
  --shadow-lg: 0 16px 40px rgba(30,27,22,.12);
  --font-serif: "Noto Serif SC","Songti SC","SimSun",serif;
  --font-sans: "HarmonyOS Sans SC","PingFang SC","Microsoft YaHei",sans-serif;
  --font-mono: "DIN Alternate","SF Mono",Menlo,Consolas,monospace;
  --ease: cubic-bezier(.2,0,0,1);
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.75; color: var(--ink); background: var(--bg-paper); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .22s var(--ease); }
ul, ol { list-style-position: inside; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(245,242,235,.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px rgba(30,27,22,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.brand-name { font-family: var(--font-serif); font-size: 20px; font-weight: 700; letter-spacing: .01em; color: var(--ink); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.nav-link { position: relative; display: inline-flex; align-items: center; font-size: 15px; font-weight: 500; color: var(--ink-soft); padding: 8px 0; }
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); font-weight: 600; }
.nav-link.active::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -4px; width: 20px; height: 2px; border-radius: 2px; background: var(--accent); }
.btn-header { flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px 6px; cursor: pointer; z-index: 61; position: relative; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 22px; border-radius: var(--radius-sm); border: 1px solid transparent; font-size: 15px; font-weight: 600; line-height: 1.2; transition: all .25s var(--ease); }
.btn:active { transform: translateY(1px); }
.btn-header { background: transparent; border-color: var(--accent); color: var(--accent-strong); }
.btn-header:hover { background: var(--accent); color: #fff; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(185,151,91,.28); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg-paper); }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 24px 0 8px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-strong); }
.breadcrumb .sep { color: #C9C2B4; }
.breadcrumb .current { color: var(--ink); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60vw; }

.article-page { max-width: 860px; margin: 0 auto; padding: 32px 0 48px; }
.article-category-line { margin-bottom: 14px; }
.article-category-chip { display: inline-flex; align-items: center; background: var(--accent-soft); color: var(--accent-strong); font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 6px; }
.article-head h1 { font-family: var(--font-serif); font-size: clamp(30px, 4.6vw, 42px); line-height: 1.24; font-weight: 700; color: var(--ink); margin-bottom: 18px; letter-spacing: .01em; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; column-gap: 20px; row-gap: 8px; font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.article-meta .meta-item { display: inline-flex; align-items: center; gap: 6px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.tag { display: inline-flex; align-items: center; background: var(--accent-soft); color: var(--accent-strong); font-size: 13px; font-weight: 500; padding: 4px 12px; border-radius: 999px; transition: background .2s, color .2s; }
.tag:hover { background: var(--accent); color: #fff; }
.tag-static { display: inline-flex; align-items: center; background: var(--accent-soft); color: var(--accent-strong); font-size: 13px; font-weight: 500; padding: 4px 12px; border-radius: 999px; }
.article-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 6px; }
.article-hero-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.article-body { max-width: 720px; margin: 52px auto 0; font-size: 16px; line-height: 1.78; color: var(--ink-soft); }
.article-body > * + * { margin-top: 26px; }
.article-body h2 { font-family: var(--font-serif); font-size: 28px; line-height: 1.3; font-weight: 700; color: var(--ink); margin-top: 44px; }
.article-body h2::before { content: ""; display: block; width: 28px; height: 3px; background: var(--accent); border-radius: 3px; margin-bottom: 14px; }
.article-body h3 { font-family: var(--font-serif); font-size: 22px; line-height: 1.35; font-weight: 600; color: var(--ink); margin-top: 36px; }
.article-body h4 { font-size: 18px; font-weight: 600; color: var(--ink); margin-top: 28px; }
.article-body p { margin: 0; }
.article-body a { color: var(--accent-strong); text-decoration: underline; text-decoration-color: rgba(185,151,91,.4); text-underline-offset: 3px; }
.article-body a:hover { color: var(--accent-strong); text-decoration-color: var(--accent-strong); }
.article-body ul, .article-body ol { padding-left: 1.5em; }
.article-body ul { list-style-type: disc; }
.article-body ol { list-style-type: decimal; }
.article-body li { margin: 0; }
.article-body li + li { margin-top: 8px; }
.article-body li::marker { color: var(--accent-strong); font-weight: 600; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body blockquote { border-left: 2px solid var(--accent); background: var(--bg-white); padding: 18px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-soft); }
.article-body blockquote p { margin: 0; }
.article-body blockquote p + p { margin-top: 12px; }
.article-body img { border-radius: var(--radius); margin: 28px auto; }
.article-body figure { margin: 32px 0; }
.article-body figure img { margin: 0; }
.article-body figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 10px; }
.article-body table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; font-size: 14px; line-height: 1.6; }
.article-body th { background: var(--bg-paper); color: var(--ink); font-weight: 600; padding: 12px 14px; border: 1px solid var(--line); text-align: left; white-space: nowrap; }
.article-body td { padding: 12px 14px; border: 1px solid var(--line); color: var(--ink-soft); }
.article-body pre { background: var(--night); color: var(--night-text); padding: 20px; border-radius: var(--radius-sm); overflow-x: auto; font-size: 14px; line-height: 1.6; }
.article-body code { font-family: var(--font-mono); font-size: .92em; background: var(--accent-soft); padding: 2px 6px; border-radius: 4px; }
.article-body pre code { background: none; padding: 0; }
.article-body hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }

.article-footer { max-width: 720px; margin: 56px auto 0; }
.article-pager { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 28px; font-size: 14px; }
.pager-link { color: var(--muted); display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.pager-link:hover { color: var(--accent-strong); }
.pager-link.prev::before { content: "←"; }
.pager-link.next::after { content: "→"; }
.related-title { font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--ink); margin: 16px 0 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { display: block; background: var(--bg-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.related-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .35s var(--ease); }
.related-card:hover img { transform: scale(1.04); }
.related-card-body { padding: 16px 18px; }
.related-card-body h3 { font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.related-card-body p { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.article-actions { display: flex; justify-content: center; margin-top: 40px; }

.not-found { max-width: 720px; margin: 72px auto; text-align: center; background: var(--bg-white); border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 64px 40px; }
.not-found h1 { font-family: var(--font-serif); font-size: 30px; color: var(--ink); margin-bottom: 14px; }
.not-found p { color: var(--muted); margin-bottom: 28px; }

.cta-band { background: var(--night); color: var(--night-text); padding: 64px 0; margin-top: 64px; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-title { font-family: var(--font-serif); font-size: 30px; font-weight: 600; }
.cta-text p { color: rgba(242,238,226,.65); margin-top: 10px; font-size: 15px; }
.subscribe-form { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.subscribe-form input[type="tel"] { width: 280px; height: 48px; padding: 0 16px; border: 1px solid rgba(255,255,255,.32); border-radius: var(--radius-sm); background: #fff; font-size: 15px; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.subscribe-form input[type="tel"]::placeholder { color: #A8A092; }
.subscribe-form input[type="tel"]:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(185,151,91,.25); }
.subscribe-form .btn { height: 48px; padding: 0 26px; }
.subscribe-form .btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-feedback { flex-basis: 100%; font-size: 14px; min-height: 20px; }
.form-feedback.success { color: #7BC08A; }
.form-feedback.error { color: #E68484; }
.subscribe-note { margin-top: 18px; font-size: 12px; color: rgba(242,238,226,.5); text-align: center; }

.faq-section { max-width: 860px; margin: 0 auto; padding: 56px 24px 72px; }
.faq-section .section-title { font-family: var(--font-serif); font-size: 28px; font-weight: 600; color: var(--ink); margin-bottom: 24px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; cursor: pointer; padding: 22px 0; font-size: 17px; font-weight: 600; color: var(--ink); transition: color .2s; }
.faq-item summary:hover { color: var(--accent-strong); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; font-size: 18px; color: var(--accent-strong); flex-shrink: 0; transition: transform .3s var(--ease), background .2s, color .2s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-answer { padding: 0 0 22px; font-size: 15px; color: var(--ink-soft); line-height: 1.75; max-width: 720px; display: none; }
.faq-item[open] .faq-answer { display: block; animation: faqFade .3s var(--ease); }
@keyframes faqFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.site-footer { background: var(--night); color: rgba(242,238,226,.7); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand .brand-name { color: var(--night-text); }
.footer-brand p { font-size: 14px; color: rgba(242,238,226,.55); line-height: 1.7; max-width: 320px; margin-top: 12px; }
.footer-links h3, .footer-meta h3 { color: var(--night-text); font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.footer-links a, .footer-meta a { display: block; font-size: 14px; color: rgba(242,238,226,.65); padding: 5px 0; transition: color .2s var(--ease); }
.footer-links a:hover, .footer-meta a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(242,238,226,.12); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13px; color: rgba(242,238,226,.45); }
.footer-bottom a { color: rgba(242,238,226,.6); }
.footer-bottom a:hover { color: var(--accent); }

#subscribe, #replays { scroll-margin-top: 90px; }

@media (max-width: 1024px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { position: fixed; top: 0; right: -100%; width: min(320px, 84vw); height: 100vh; background: var(--bg-paper); display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 96px 32px 40px; box-shadow: -20px 0 60px rgba(30,27,22,.15); transition: right .32s var(--ease); z-index: 60; }
  .main-nav.open { right: 0; }
  .nav-toggle { display: inline-flex; }
  .btn-header { display: none; }
  .nav-link { font-size: 17px; width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-link.active::after { display: none; }
  .nav-link.active { color: var(--accent-strong); }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .subscribe-form input[type="tel"] { width: 100%; }
  .subscribe-form { width: 100%; }
  .subscribe-form .btn { width: 100%; }
  .cta-inner { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .faq-section { padding: 40px 16px 56px; }
}
@media (max-width: 640px) {
  .header-inner { height: 64px; }
  .brand-name { font-size: 18px; }
  .article-page { padding-top: 16px; padding-bottom: 32px; }
  .article-head h1 { font-size: 27px; }
  .article-body { margin-top: 36px; }
  .related-grid { grid-template-columns: 1fr; }
  .article-pager { flex-direction: column; align-items: flex-start; }
  .pager-link.next { margin-top: 12px; }
  .cta-band { padding: 48px 0; }
  .cta-title { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* roulang page: category3 */
:root {
  --bg-paper: #F5F2EB;
  --bg-white: #FFFFFF;
  --ink: #1E1B16;
  --ink-soft: #3A352D;
  --muted: #7A7264;
  --line: #E4DFD3;
  --accent: #B9975B;
  --accent-strong: #9A7A3F;
  --accent-soft: rgba(185,151,91,.12);
  --night: #17150F;
  --night-text: #F2EEE2;
  --live: #D04A2A;
  --success: #3E7A4B;
  --error: #B23A3A;
  --radius-card: 12px;
  --radius-small: 8px;
  --radius-hero: 20px;
  --shadow-card: 0 8px 30px rgba(30,27,22,.08);
  --shadow-hover: 0 16px 40px rgba(30,27,22,.12);
  --transition: 200ms cubic-bezier(.2,0,0,1);
  --font-serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --font-sans: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "DIN Alternate", "SF Mono", "Menlo", monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg-paper);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .01em;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,242,235,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 72px;
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(30,27,22,.06);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .01em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  flex: 1;
}
.nav-link {
  position: relative;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-small);
  transition: color var(--transition), background var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(.2,0,0,1);
}
.nav-link:hover {
  color: var(--ink);
  background: rgba(245,242,235,.6);
}
.nav-link.active {
  color: var(--ink);
  font-weight: 600;
}
.nav-link.active::after {
  transform: scaleX(1);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-small);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,0,0,1);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-header {
  padding: 9px 20px;
  font-size: 14px;
  border-color: var(--accent);
  color: var(--accent-strong);
  background: transparent;
  flex-shrink: 0;
}
.btn-header:hover {
  background: var(--accent);
  color: var(--ink);
}
.btn-header:active {
  background: var(--accent-strong);
  color: var(--bg-white);
  transform: translateY(1px);
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent-strong);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(185,151,91,.3);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn-ghost {
  border-color: rgba(242,238,226,.6);
  color: var(--night-text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--night-text);
  background: rgba(242,238,226,.08);
}
.btn-ghost:active {
  background: rgba(242,238,226,.16);
  transform: translateY(1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.breadcrumb {
  padding-top: 32px;
  padding-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--muted);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--accent-strong); }
.breadcrumb span { color: var(--line); }
.breadcrumb .current { color: var(--ink); font-weight: 500; }
.page-head {
  padding: 56px 0 48px;
}
.page-head-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 780px;
}
.page-head h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.15;
  color: var(--ink);
}
.page-head p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
}
.page-head-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}
.night-panel {
  background: var(--night);
  color: var(--night-text);
  padding: 100px 0;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.night-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 60%);
}
.night-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.night-media {
  border-radius: var(--radius-hero);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  position: relative;
}
.night-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(185,151,91,.06), transparent 60%);
  pointer-events: none;
}
.night-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform .4s ease;
}
.night-panel:hover .night-media img {
  transform: scale(1.02);
}
.night-content h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--night-text);
  margin-bottom: 12px;
}
.night-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin-bottom: 40px;
}
.night-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.night-list li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(242,238,226,.12);
  transition: padding-left .3s ease, background .3s ease;
}
.night-list li:first-child { padding-top: 0; }
.night-list li:last-child { border-bottom: none; padding-bottom: 0; }
.night-list li:hover {
  padding-left: 12px;
}
.night-index {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.4;
  min-width: 48px;
  opacity: .8;
}
.night-list h3 {
  font-size: 19px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--night-text);
  margin-bottom: 8px;
}
.night-list p {
  font-size: 15px;
  color: rgba(242,238,226,.62);
  line-height: 1.7;
  max-width: 460px;
}
.news-section {
  padding: 96px 0 64px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--ink);
}
.section-head p {
  font-size: 15px;
  color: var(--muted);
  max-width: 420px;
}
.section-head-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin-top: 16px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.news-thumb {
  position: relative;
  min-height: 150px;
  overflow: hidden;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.2,0,0,1);
}
.news-card:hover .news-thumb img {
  transform: scale(1.04);
}
.news-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(23,21,15,.82);
  color: var(--night-text);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.news-info {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-info .tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-radius: 6px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.news-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: var(--font-sans);
  transition: color var(--transition);
}
.news-card:hover .news-info h3 {
  color: var(--accent-strong);
}
.news-info p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.news-meta i {
  font-style: normal;
  margin-right: 4px;
}
.faq-section {
  padding: 64px 0 96px;
}
.faq-container {
  max-width: 860px;
}
.faq-container > h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--ink);
  margin-bottom: 16px;
}
.faq-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin-bottom: 48px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-of-type {
  border-top: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent-strong); }
.faq-q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .3s, border-color .3s, background .3s;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
  transition: background .3s;
}
.faq-icon::before {
  top: 50%; left: 8px; right: 8px; height: 1.5px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 8px; bottom: 8px; width: 1.5px;
  transform: translateX(-50%);
  transition: transform .3s, opacity .3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent-soft);
}
.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: var(--accent-strong);
}
.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) scaleY(0);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.2,0,0,1);
}
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
}
.faq-item.active .faq-a {
  max-height: 400px;
}
.cta-band {
  background: var(--night);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--night-text);
  margin-bottom: 12px;
}
.cta-text p {
  font-size: 15px;
  color: rgba(242,238,226,.6);
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer {
  background: var(--night);
  color: rgba(242,238,226,.6);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand .brand-name {
  color: var(--night-text);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242,238,226,.5);
  margin-top: 16px;
  max-width: 320px;
}
.footer-links h3,
.footer-meta h3 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--night-text);
  margin-bottom: 20px;
}
.footer-links a,
.footer-meta a {
  display: block;
  font-size: 14px;
  color: rgba(242,238,226,.55);
  padding: 6px 0;
  transition: color .25s, padding-left .25s;
}
.footer-links a:hover,
.footer-meta a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(242,238,226,.4);
}
.footer-bottom a {
  color: rgba(242,238,226,.4);
  transition: color .25s;
}
.footer-bottom a:hover {
  color: var(--accent);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
@media (max-width: 1024px) {
  .night-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .night-media img { min-height: 280px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-inner { gap: 16px; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 32px 24px;
    margin: 0;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,0,0,1);
    z-index: 99;
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .nav-link {
    width: 100%;
    font-size: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-family: var(--font-serif);
  }
  .nav-link::after {
    display: none;
  }
  .nav-link.active {
    color: var(--accent-strong);
    padding-left: 12px;
  }
  .btn-header {
    margin-left: auto;
  }
  .nav-toggle {
    display: flex;
  }
  .page-head {
    padding: 40px 0 32px;
  }
  .page-head h1 {
    font-size: 34px;
  }
  .page-head p {
    font-size: 16px;
  }
  .night-panel {
    padding: 64px 0;
  }
  .night-grid {
    gap: 40px;
  }
  .night-media img { min-height: 220px; }
  .night-list li {
    gap: 16px;
    padding: 20px 0;
  }
  .night-index {
    font-size: 22px;
    min-width: 40px;
  }
  .news-section {
    padding: 64px 0 48px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }
  .news-card {
    grid-template-columns: 1fr;
  }
  .news-thumb {
    min-height: 180px;
    position: relative;
  }
  .news-info {
    padding: 24px;
  }
  .news-info h3 {
    font-size: 18px;
  }
  .faq-section {
    padding: 48px 0 64px;
  }
  .faq-q {
    font-size: 16px;
    padding: 22px 0;
  }
  .cta-band {
    padding: 56px 0;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cta-actions {
    width: 100%;
  }
  .cta-actions .btn {
    flex: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 520px) {
  .btn-header {
    display: none;
  }
  .nav-toggle {
    margin-left: auto;
  }
  .news-info p {
    -webkit-line-clamp: 3;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .night-list p {
    font-size: 14px;
  }
}
