/* roulang page: index */
/* ===== 设计变量 ===== */
:root {
  --bg-body: #0B0C10;
  --bg-card: #151720;
  --bg-elev: #1C1E28;
  --bg-footer: #08090D;
  --gold: #C9A86A;
  --gold-bright: #D9BC82;
  --gold-dim: rgba(201, 168, 106, 0.3);
  --red: #E03E2D;
  --text-main: #F2F0EB;
  --text-sub: #8F93A0;
  --border: rgba(255, 255, 255, 0.08);
  --success: #3DD68C;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.55);
  --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --font-num: "Inter", "DIN Alternate", sans-serif;
  --container: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-dur: 0.25s;
}

/* ===== Reset / 基础 ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-cn);
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-dur) var(--ease);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 按钮系统 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all var(--t-dur) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 106, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
  filter: brightness(0.9);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-main);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: translateY(0);
}

.btn-link {
  background: none;
  padding: 6px 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  min-height: 40px;
  border-radius: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-link .arrow {
  transition: transform var(--t-dur) var(--ease);
}

.btn-link:hover .arrow {
  transform: translateX(4px);
}

.btn-link:focus-visible {
  outline: 2px solid rgba(201, 168, 106, 0.5);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid rgba(201, 168, 106, 0.5);
  outline-offset: 2px;
}

/* ===== 徽章 / 标签 ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
  white-space: nowrap;
}

.badge-hot {
  background: var(--red);
  color: #fff;
}

.badge-gold {
  background: var(--gold);
  color: #111;
}

.badge-gray {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-sub);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex: 0 0 8px;
}

.badge-countdown {
  background: #0B0C10;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  padding: 6px 14px;
  font-family: var(--font-num);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  border-radius: 999px;
}

/* ===== 顶部导航 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 12, 16, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
}

.logo-mark {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--gold);
  font-family: var(--font-num);
  line-height: 1;
}

.logo-badge {
  background: var(--gold);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 1px;
  line-height: 1.6;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sub);
  padding: 6px 2px;
  display: inline-block;
  transition: color var(--t-dur) var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--t-dur) var(--ease);
}

.main-nav a:hover {
  color: var(--text-main);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 12px 24px;
  min-height: 44px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--t-dur) var(--ease);
}

.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);
}

/* ===== 移动端抽屉 ===== */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(11, 12, 16, 0.98);
  backdrop-filter: blur(12px);
  padding: 40px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer a.mobile-link {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-sub);
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer a.mobile-link.active {
  color: var(--gold);
}

.mobile-drawer .mobile-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== Hero 首屏 ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: url("/assets/images/backpic/back-1.webp") center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 12, 16, 0.92) 0%, rgba(11, 12, 16, 0.45) 60%, rgba(11, 12, 16, 0.2) 100%);
  z-index: 1;
}

.hero-glow {
  content: "";
  position: absolute;
  top: 50%;
  left: 40%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  transform: translate(-50%, -50%);
  animation: glow-drift 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes glow-drift {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-40%, -45%) scale(1.1);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero h1 .hth-highlight {
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-status {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(11, 12, 16, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  backdrop-filter: blur(8px);
}

.hero-status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-sub);
}

.hero-status-item .status-dot {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(61, 214, 140, 0);
  }
}

/* ===== 横滑片库 ===== */
.hscroll-section {
  padding: 96px 0 40px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
  position: relative;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 42px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.section-head .btn-link {
  font-size: 15px;
}

.hscroll-wrap {
  position: relative;
}

.hscroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 12px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.hscroll-track::-webkit-scrollbar {
  display: none;
}

.hscroll-card {
  flex: 0 0 170px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: all var(--t-dur) var(--ease);
}

.hscroll-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover), 0 0 0 1px var(--gold-dim);
  border-color: var(--gold-dim);
}

.hscroll-card .cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hscroll-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.hscroll-card:hover .cover img {
  transform: scale(1.06);
}

.hscroll-card .play-btn {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(11, 12, 16, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--t-dur) var(--ease);
}

.hscroll-card .play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid var(--gold);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.hscroll-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -40%);
}

.hscroll-card .info {
  padding: 14px 14px 16px;
}

.hscroll-card .info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hscroll-card .info .tag-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hscroll-card .badge {
  font-size: 10px;
}

/* ===== 热播推荐 ===== */
.hot-section {
  padding: 60px 0 40px;
}

.hot-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
}

.hot-card-large {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: all var(--t-dur) var(--ease);
}

.hot-card-large:hover {
  box-shadow: var(--shadow-hover), 0 0 0 1px var(--gold-dim);
  transform: translateY(-4px);
}

.hot-card-large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hot-card-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 12, 16, 0.9) 100%);
  z-index: 2;
}

.hot-card-body {
  position: relative;
  z-index: 3;
  padding: 28px;
}

.hot-card-body .badge {
  margin-bottom: 12px;
}

.hot-card-body h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hot-card-body p {
  color: var(--text-sub);
  font-size: 14px;
  max-width: 320px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
}

.hot-card-body .tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hot-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hot-card-small {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 20px;
  cursor: pointer;
  transition: all var(--t-dur) var(--ease);
}

.hot-card-small:hover {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-hover), 0 0 0 1px var(--gold-dim);
  transform: translateY(-2px);
}

.hot-card-small img {
  width: 120px;
  height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.hot-card-small:hover img {
  transform: scale(1.04);
}

.hot-card-small h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}

.hot-card-small p {
  font-size: 13px;
  color: var(--text-sub);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.6;
}

/* ===== 片单分区（分类导读） ===== */
.category-section {
  padding: 40px 0 40px;
}

.category-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.category-card-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 40px 48px;
  gap: 40px;
  transition: all var(--t-dur) var(--ease);
  position: relative;
}

.category-card-wide:hover {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-hover), 0 0 0 1px var(--gold-dim);
  transform: translateY(-4px);
}

.category-card-wide .cat-text {
  flex: 1;
}

.category-card-wide h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.category-card-wide p {
  color: var(--text-sub);
  margin-bottom: 20px;
  max-width: 420px;
  line-height: 1.7;
}

.category-card-wide .cat-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.category-card-wide .cat-img {
  width: 260px;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  object-fit: cover;
  flex-shrink: 0;
}

.category-card-half {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all var(--t-dur) var(--ease);
}

.category-card-half:hover {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-hover), 0 0 0 1px var(--gold-dim);
  transform: translateY(-4px);
}

.category-card-half .cat-img {
  width: 140px;
  height: 100px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.category-card-half h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.category-card-half p {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.category-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ===== 追剧 CTA ===== */
.cta-section {
  padding: 96px 0;
  position: relative;
  background: var(--bg-card);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-inner p {
  color: var(--text-sub);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.cta-inner .btn {
  font-size: 16px;
  padding: 16px 42px;
}

.cta-meta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== 最新资讯（CMS） ===== */
.news-section {
  padding: 96px 0 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.news-featured {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--t-dur) var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.news-featured:hover {
  box-shadow: var(--shadow-hover), 0 0 0 1px var(--gold-dim);
  transform: translateY(-4px);
}

.news-featured .news-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-featured .news-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-featured .news-cat {
  margin-bottom: 12px;
}

.news-featured h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-featured p {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-featured .meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  color: var(--text-sub);
  font-size: 13px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 18px;
  cursor: pointer;
  transition: all var(--t-dur) var(--ease);
}

.news-list-item:hover {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-hover), 0 0 0 1px var(--gold-dim);
  transform: translateX(4px);
}

.news-list-item img {
  width: 128px;
  height: 84px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.news-list-item:hover img {
  transform: scale(1.04);
}

.news-list-item .news-info {
  flex: 1;
  min-width: 0;
}

.news-list-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list-item p {
  font-size: 13px;
  color: var(--text-sub);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}

.news-list-item .meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-sub);
}

.news-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  color: var(--text-sub);
  font-size: 15px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 60px 0 96px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-section .section-head {
  text-align: center;
  justify-content: center;
}

.faq-section .section-head h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: all var(--t-dur) var(--ease);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t-dur) var(--ease);
}

.faq-item.active::before {
  opacity: 1;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 8px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--t-dur) var(--ease);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-dur) var(--ease);
  color: var(--text-sub);
}

.faq-icon::after {
  content: "+";
  font-size: 16px;
  font-weight: 400;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s var(--ease), opacity 0.3s var(--ease), padding 0.3s var(--ease);
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.7;
  padding: 0 8px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 8px 24px;
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(201, 168, 106, 0.2);
  padding: 56px 0 32px;
  margin-top: 0;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.footer-links a {
  color: var(--text-sub);
  font-size: 14px;
  transition: color var(--t-dur) var(--ease);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-sub);
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-bottom .text {
  color: var(--text-sub);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom #icp-placeholder,
.footer-bottom #gov-placeholder {
  display: inline-block;
  padding: 0 4px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
  min-height: 18px;
  min-width: 60px;
  cursor: default;
}

/* ===== 通用响应式断点 ===== */
@media (max-width: 1024px) {
  .heading h1 {
    font-size: 46px;
  }
  .hot-grid {
    grid-template-columns: 1fr;
  }
  .hot-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .category-card-half {
    flex-direction: column;
    text-align: center;
  }
  .category-card-half .cat-tags {
    justify-content: center;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .category-card-wide {
    padding: 32px;
  }
  .category-card-wide .cat-img {
    width: 200px;
    height: 130px;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-actions .btn-ghost {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .btn-primary {
    padding: 10px 20px;
    font-size: 13px;
  }
  .mobile-drawer {
    display: none;
  }
  .mobile-drawer.open {
    display: flex;
  }
  .hero {
    min-height: 480px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-status {
    right: 24px;
    bottom: 24px;
  }
  .section-head h2 {
    font-size: 26px;
  }
  .hot-side {
    grid-template-columns: 1fr;
  }
  .category-row-split {
    grid-template-columns: 1fr;
  }
  .category-card-wide {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 24px;
  }
  .category-card-wide .cat-img {
    width: 100%;
    height: 160px;
  }
  .category-card-wide p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-inner h2 {
    font-size: 28px;
  }
  .cta-inner p {
    font-size: 15px;
  }
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    min-height: 440px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .hero-status {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 32px;
    justify-content: center;
  }
  .hscroll-track {
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .hscroll-card {
    flex-basis: 140px;
  }
  .hot-card-large {
    min-height: 260px;
  }
  .hot-card-body h3 {
    font-size: 20px;
  }
  .news-list-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-list-item img {
    width: 100%;
    height: 140px;
  }
  .cta-inner .btn {
    width: 100%;
    max-width: 320px;
  }
  .faq-question {
    font-size: 15px;
    padding: 20px 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* roulang page: category1 */
:root {
  --bg-primary: #0B0C10;
  --bg-secondary: #151720;
  --bg-card: #1C1E28;
  --bg-footer: #08090D;
  --accent-gold: #C9A86A;
  --accent-gold-light: #D9BC82;
  --accent-red: #E03E2D;
  --accent-green: #3DD68C;
  --text-primary: #F2F0EB;
  --text-secondary: #8F93A0;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 168, 106, 0.3);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-default: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.55);
  --transition-base: 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --font-number: Inter, "DIN Alternate", sans-serif;
  --container-width: 1280px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 12, 16, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.logo-mark {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--accent-gold);
  line-height: 1;
  font-family: var(--font-number);
}

.logo-badge {
  font-size: 11px;
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  letter-spacing: 1px;
  background: rgba(201, 168, 106, 0.08);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 0;
  font-weight: 500;
  transition: color var(--transition-base);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.main-nav a:hover {
  color: var(--text-primary);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--accent-gold);
}

.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 22px;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: pointer;
  min-height: 44px;
}

.btn:focus-visible {
  outline: 2px solid rgba(201, 168, 106, 0.5);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent-gold);
  color: #0B0C10;
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
  transform: translateX(2px);
}

.btn-primary:active {
  background: color-mix(in srgb, var(--accent-gold) 85%, #000);
  transform: translateY(1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-ghost:active {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  font-size: 16px;
  padding: 14px 36px;
}

.badge-countdown {
  font-family: var(--font-number);
  font-variant-numeric: tabular-nums;
  background: #0B0C10;
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.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);
}

/* Hero */
.category-hero {
  position: relative;
  background: linear-gradient(90deg, rgba(11, 12, 16, 0.94) 0%, rgba(11, 12, 16, 0.7) 55%, rgba(11, 12, 16, 0.35) 100%), url('/assets/images/backpic/back-1.webp') center center / cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.category-hero .breadcrumb {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-hero .breadcrumb a {
  color: var(--text-secondary);
}

.category-hero .breadcrumb a:hover {
  color: var(--accent-gold);
}

.category-hero .breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

.category-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.category-hero h1 .highlight {
  color: var(--accent-gold);
}

.category-hero .hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.badge-red {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.badge-gold {
  display: inline-block;
  background: var(--accent-gold);
  color: #0B0C10;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

/* Section */
.section-block {
  padding: 80px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-header h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.section-tip {
  font-size: 13px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Rank List */
.rank-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.rank-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  transition: all var(--transition-base);
}

.rank-item:hover {
  border-color: var(--border-gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}

.rank-num {
  font-family: var(--font-number);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  width: 40px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.85;
}

.rank-item:first-child .rank-num {
  color: var(--accent-red);
  font-size: 30px;
  opacity: 1;
}

.rank-thumb {
  width: 72px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rank-item:hover .rank-thumb img {
  transform: scale(1.08);
}

.rank-info {
  flex: 1;
  min-width: 0;
}

.rank-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.rank-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.rank-tag {
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.rank-heat {
  font-family: var(--font-number);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.rank-heat small {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-left: 4px;
}

/* Card Wall */
.card-wall {
  padding: 80px 0;
  background: var(--bg-primary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-hover);
}

.card-item:hover .card-img img {
  transform: scale(1.05);
}

.card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-secondary);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.card-body {
  padding: 18px 20px 20px;
}

.card-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}

.card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 600;
  transition: gap 0.25s ease;
}

.card-link:hover {
  gap: 10px;
}

/* Feature Banner */
.feature-banner {
  padding: 0 0 80px;
}

.feature-inner {
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.08) 0%, rgba(11, 12, 16, 0.4) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: var(--accent-gold);
}

.feature-text {
  flex: 1;
  min-width: 280px;
}

.feature-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.feature-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA */
.cta-section {
  background: var(--bg-secondary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 106, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-content h2 span {
  color: var(--accent-gold);
}

.cta-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 260px;
}

.footer-links h4 {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 4px 0;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 13px;
}

.footer-bottom .text {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 99;
  padding: 100px 24px 40px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 12px 8px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu a.active {
  color: var(--accent-gold);
}

.mobile-menu-bottom {
  padding-top: 24px;
}

.mobile-menu-bottom .btn {
  width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav ul {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .category-hero {
    min-height: 360px;
    padding: 60px 0;
  }

  .category-hero h1 {
    font-size: 36px;
  }

  .section-block {
    padding: 56px 0;
  }

  .rank-section {
    padding: 56px 0;
  }

  .rank-item {
    flex-wrap: wrap;
    padding: 12px 14px;
  }

  .rank-thumb {
    width: 56px;
    height: 42px;
  }

  .rank-num {
    width: 30px;
    font-size: 20px;
  }

  .rank-heat {
    width: 100%;
    margin-left: 50px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-inner {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section {
    padding: 56px 0;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .category-hero h1 {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .card-grid {
    gap: 12px;
  }

  .card-body {
    padding: 14px 16px 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* roulang page: article */
:root {
  --bg-primary: #0B0C10;
  --bg-secondary: #151720;
  --bg-card: #1C1E28;
  --accent-gold: #C9A86A;
  --accent-gold-light: #D9BC82;
  --accent-gold-dark: #A8894F;
  --accent-red: #E03E2D;
  --text-primary: #F2F0EB;
  --text-secondary: #8F93A0;
  --border-light: rgba(255,255,255,0.08);
  --success: #3DD68C;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-default: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.55);
  --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --font-num: Inter, "DIN Alternate", sans-serif;
  --transition: 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  --container-max: 1280px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-cn);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  min-height: 44px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid rgba(201,168,106,0.5);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent-gold);
  color: #0B0C10;
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateX(2px);
}

.btn-primary:active {
  background: var(--accent-gold-dark);
  transform: translateY(1px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: var(--text-primary);
}

.btn-ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-ghost:active {
  background: rgba(201,168,106,0.1);
}

.badge-countdown {
  background: #050608;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--font-num);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,12,16,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.85;
}

.logo-mark {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-gold);
  line-height: 1;
}

.logo-badge {
  font-size: 12px;
  color: var(--text-primary);
  background: rgba(201,168,106,0.15);
  border: 1px solid rgba(201,168,106,0.4);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 0;
  transition: color var(--transition);
  display: inline-block;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  padding: 0;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle:hover span {
  background: var(--accent-gold);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
  display: none;
}

/* ===== Article Hero ===== */
.article-hero {
  position: relative;
  padding: 72px 0 56px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-secondary);
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,12,16,0.95) 0%, rgba(11,12,16,0.68) 65%, rgba(11,12,16,0.25) 100%);
}

.article-hero .container {
  position: relative;
  z-index: 1;
}

.article-hero h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  max-width: 760px;
  margin: 20px 0 16px;
  letter-spacing: -0.5px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary);
}

.post-meta .dot {
  opacity: 0.4;
}

.post-meta i {
  color: var(--accent-gold);
  margin-right: 4px;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  max-width: 100%;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb .sep {
  opacity: 0.4;
}

.breadcrumb .current {
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 320px;
  display: inline-block;
}

/* ===== Article Body ===== */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 42px 0 20px;
  padding-left: 16px;
  border-left: 4px solid var(--accent-gold);
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 16px;
  color: var(--text-primary);
}

.article-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text-primary);
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px 24px;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content blockquote {
  padding: 18px 24px;
  border-left: 3px solid var(--accent-gold);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  font-size: 15px;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 28px 0;
  border: 1px solid var(--border-light);
}

.article-content iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius-md);
  margin: 28px 0;
}

.article-content a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.article-content a:hover {
  color: var(--accent-gold-light);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
}

.article-content table th,
.article-content table td {
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  text-align: left;
}

.article-content table th {
  background: var(--bg-secondary);
  color: var(--accent-gold);
  font-weight: 600;
}

.article-content code {
  background: var(--bg-secondary);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: "SFMono-Regular", Consolas, monospace;
}

.article-content pre {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  overflow-x: auto;
  margin: 28px 0;
}

.article-content pre code {
  background: none;
  padding: 0;
}

/* ===== Post Tags ===== */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.tag {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.tag:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.tag-gold {
  border-color: rgba(201,168,106,0.5);
  color: var(--accent-gold);
  background: rgba(201,168,106,0.08);
}

/* ===== Pagination ===== */
.post-pagination {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  transition: all var(--transition);
  min-height: 44px;
}

.pagination-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: var(--bg-secondary);
}

.pagination-link:focus-visible {
  outline: 2px solid rgba(201,168,106,0.5);
  outline-offset: 2px;
}

/* ===== Related ===== */
.related-section {
  margin-top: 56px;
  border-top: 1px solid var(--border-light);
  padding-top: 48px;
}

.related-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
}

.related-section h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
  margin: 12px auto 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover), 0 0 0 1px rgba(201,168,106,0.3);
}

.related-card:focus-visible {
  outline: 2px solid rgba(201,168,106,0.5);
  outline-offset: 2px;
}

.related-cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
}

.related-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.related-card:hover .related-cover img {
  transform: scale(1.05);
}

.related-info {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.related-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.related-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== Return Actions ===== */
.return-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 56px 0 0;
  flex-wrap: wrap;
}

/* ===== Not Found ===== */
.not-found {
  text-align: center;
  padding: 80px 24px;
}

.not-found i {
  font-size: 48px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  display: block;
}

.not-found h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.not-found p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 15px;
}

/* ===== Footer ===== */
.site-footer {
  background: #08090D;
  position: relative;
  padding: 0 0 24px;
}

.site-footer::before {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: rgba(201,168,106,0.5);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 48px 0 36px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 20px;
  }
  .footer-top {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .header-inner {
    height: 64px;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11,12,16,0.98);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(201,168,106,0.2);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s, visibility 0.3s;
    z-index: 99;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }

  .main-nav a {
    font-size: 17px;
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a.active {
    color: var(--accent-gold);
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .header-actions .btn-primary {
    padding: 8px 14px;
    font-size: 14px;
    min-height: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 36px 0 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .article-hero {
    padding: 48px 0 40px;
  }

  .article-hero h1 {
    font-size: 28px;
  }

  .article-body {
    padding: 32px 16px 48px;
  }

  .related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .post-pagination {
    flex-direction: column;
  }

  .pagination-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .logo-mark {
    font-size: 24px;
  }

  .logo-badge {
    font-size: 11px;
    padding: 2px 6px;
  }

  .header-actions .btn-primary {
    padding: 8px 12px;
    font-size: 13px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-content {
    font-size: 15px;
  }

  .article-content h2 {
    font-size: 21px;
  }

  .article-content h3 {
    font-size: 18px;
  }

  .breadcrumb .current {
    max-width: 200px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* roulang page: category2 */
/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  background: #0B0C10;
  color: #F2F0EB;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; border: none; }
a { text-decoration: none; color: inherit; outline: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; background: none; border: none; outline: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; }
a:focus-visible, button:focus-visible {
  outline: 2px solid rgba(201, 168, 106, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}
::selection { background: rgba(201, 168, 106, 0.3); color: #F2F0EB; }

/* ===== Design Variables ===== */
:root {
  --bg-primary: #0B0C10;
  --bg-secondary: #151720;
  --bg-card: #1C1E28;
  --bg-footer: #08090D;
  --accent-gold: #C9A86A;
  --accent-gold-light: #D9BC82;
  --accent-gold-dark: #A88A52;
  --accent-red: #E03E2D;
  --success-green: #3DD68C;
  --text-primary: #F2F0EB;
  --text-secondary: #8F93A0;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 168, 106, 0.3);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-default: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.55);
  --font-number: Inter, "DIN Alternate", sans-serif;
  --transition: 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  --content-max: 1280px;
  --gap: 24px;
}

/* ===== Container ===== */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 575px) {
  .container { padding: 0 16px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
  min-height: 46px;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: #C9A86A;
  color: #0B0C10;
  font-weight: 700;
}
.btn-primary:hover {
  background: #D9BC82;
  box-shadow: 0 4px 20px rgba(201, 168, 106, 0.35);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  background: #A88A52;
}
.btn-ghost {
  background: transparent;
  color: #F2F0EB;
  border-color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
}
.btn-ghost:hover {
  border-color: #C9A86A;
  color: #C9A86A;
}
.btn-ghost:active {
  transform: translateY(1px);
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C9A86A;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-arrow:hover { gap: 10px; }
.btn-arrow .icon { transition: transform 0.2s; }
.btn-arrow:hover .icon { transform: translateX(4px); }

@media (max-width: 575px) {
  .btn { padding: 12px 24px; font-size: 14px; }
}

/* ===== Badges & Tags ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.badge-red {
  background: #E03E2D;
  color: #fff;
}
.badge-gold {
  background: #C9A86A;
  color: #0B0C10;
}
.badge-outline {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: #C9A86A;
}
.badge-countdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 168, 106, 0.4);
  color: #C9A86A;
  font-family: var(--font-number);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 4px;
}
.badge-countdown::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3DD68C;
  box-shadow: 0 0 6px rgba(61, 214, 140, 0.6);
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  white-space: nowrap;
}
.tag:hover {
  color: #C9A86A;
  border-color: rgba(201, 168, 106, 0.3);
  background: rgba(201, 168, 106, 0.06);
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.tag-list .tag {
  padding: 6px 14px;
  font-size: 12px;
}

/* ===== Section spinners ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #C9A86A;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-tag::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #C9A86A;
  border-radius: 2px;
}
.section-head {
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.section-head p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.8;
}
.section-head .link-more {
  float: right;
  margin-top: -32px;
}
@media (max-width: 767px) {
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 24px; }
  .section-head .link-more { float: none; margin-top: 8px; display: inline-block; }
}

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 12, 16, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  line-height: 1;
}
.logo-mark {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #F2F0EB;
  font-family: var(--font-number);
  text-transform: lowercase;
}
.logo-mark span {
  color: #C9A86A;
}
.logo-badge {
  font-size: 12px;
  color: #C9A86A;
  border: 1px solid rgba(201, 168, 106, 0.5);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  font-weight: 500;
  background: rgba(201, 168, 106, 0.08);
}
.main-nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
}
.main-nav a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
  border-radius: 4px;
  line-height: 1.2;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: #C9A86A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.main-nav a:hover {
  color: #F2F0EB;
}
.main-nav a:hover::after {
  transform: scaleX(1);
}
.main-nav a.active {
  color: #C9A86A;
}
.main-nav a.active::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-actions .btn {
  padding: 10px 20px;
  min-height: 40px;
  font-size: 14px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px 8px;
  cursor: pointer;
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #F2F0EB;
  border-radius: 2px;
  transition: 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); }

@media (max-width: 768px) {
  .site-header.scrolled .header-inner { height: 64px; }
  .header-inner { height: 64px; }
  .logo-mark { font-size: 26px; }
  .logo-badge { display: none; }
  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11, 12, 16, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul {
    flex-direction: column;
    padding: 20px 24px 30px;
    gap: 4px;
  }
  .main-nav a {
    font-size: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    color: #F2F0EB;
  }
  .main-nav a::after {
    display: none;
  }
  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(201, 168, 106, 0.1);
    color: #C9A86A;
  }
  .header-actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
}

/* ===== Category Hero ===== */
.category-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: stretch;
  background-size: cover;
  background-position: center;
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border-color);
}
.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 12, 16, 0.95) 0%, rgba(11, 12, 16, 0.65) 60%, rgba(11, 12, 16, 0.25) 100%);
}
.category-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.12) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: fadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: #C9A86A; }
.breadcrumb span.sep { color: rgba(255, 255, 255, 0.3); }
.breadcrumb .current { color: #C9A86A; }
.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #F2F0EB;
  margin-bottom: 16px;
}
.hero-content h1 .gold {
  color: #C9A86A;
}
.hero-content .hero-desc {
  font-size: 17px;
  color: rgba(242, 240, 235, 0.85);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(242, 240, 235, 0.75);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}
.hero-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3DD68C;
  box-shadow: 0 0 8px rgba(61, 214, 140, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat .num {
  font-family: var(--font-number);
  font-size: 30px;
  font-weight: 700;
  color: #F2F0EB;
  line-height: 1;
}
.hero-stat .label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .category-hero { min-height: 400px; padding: 120px 0 48px; }
  .hero-content h1 { font-size: 44px; }
}
@media (max-width: 767px) {
  .category-hero { min-height: auto; padding: 100px 0 40px; }
  .hero-content h1 { font-size: 32px; }
  .hero-content .hero-desc { font-size: 15px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; margin-top: 24px; }
  .hero-stat .num { font-size: 24px; }
}

/* ===== Interleaved Section ===== */
.interleaved-section {
  padding: 96px 0;
  background: var(--bg-primary);
}
.interleave-row {
  display: flex;
  align-items: stretch;
  gap: 64px;
  margin-bottom: 88px;
  position: relative;
}
.interleave-row:last-child { margin-bottom: 0; }
.interleave-media {
  flex: 0 0 48%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  background: var(--bg-card);
  box-shadow: var(--shadow-default);
}
.interleave-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.interleave-row:hover .interleave-media img {
  transform: scale(1.04);
}
.interleave-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 12, 16, 0.6));
  pointer-events: none;
}
.interleave-media .media-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.interleave-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}
.row-num {
  font-family: var(--font-number);
  font-size: 14px;
  font-weight: 600;
  color: #C9A86A;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.row-num::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(201, 168, 106, 0.4);
}
.interleave-body h3 {
  font-size: 26px;
  font-weight: 700;
  color: #F2F0EB;
  margin-bottom: 14px;
  line-height: 1.4;
}
.interleave-body > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 8px;
}
.interleave-body .btn {
  margin-top: 28px;
  align-self: flex-start;
  padding: 12px 28px;
  min-height: 44px;
}
.interleave-row.reverse .interleave-body {
  order: -1;
}

@media (max-width: 1024px) {
  .interleaved-section { padding: 72px 0; }
  .interleave-row { gap: 40px; margin-bottom: 64px; }
  .interleave-media { flex-basis: 50%; min-height: 280px; }
}
@media (max-width: 767px) {
  .interleaved-section { padding: 56px 0; }
  .interleave-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }
  .interleave-media {
    flex-basis: auto;
    min-height: 220px;
    width: 100%;
    position: relative;
  }
  .interleave-media img {
    position: absolute;
  }
  .interleave-body { padding: 8px 0; }
  .interleave-body h3 { font-size: 22px; }
  .interleave-body > p { font-size: 15px; }
  .interleave-row.reverse .interleave-body { order: 0; }
}

/* ===== Feature Banner ===== */
.feature-banner {
  padding: 56px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.feature-banner-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 48px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.04) 0%, transparent 60%);
}
.feature-banner-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 106, 0.12);
  border: 1px solid rgba(201, 168, 106, 0.3);
  color: #C9A86A;
  font-size: 24px;
}
.feature-banner-text {
  flex: 1;
}
.feature-banner-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #F2F0EB;
  margin-bottom: 6px;
}
.feature-banner-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 640px;
}
@media (max-width: 767px) {
  .feature-banner { padding: 40px 0; }
  .feature-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .feature-banner-text p { font-size: 14px; }
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 96px 0 48px;
  background: var(--bg-primary);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-color);
}
.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #F2F0EB;
  min-height: 48px;
  transition: color var(--transition);
}
.faq-question:hover {
  color: #C9A86A;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), border-color var(--transition);
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq-icon::before {
  width: 10px;
  height: 1.5px;
}
.faq-icon::after {
  width: 1.5px;
  height: 10px;
  transition: opacity 0.2s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-item.active .faq-question {
  color: #C9A86A;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s, padding 0.3s;
  padding-left: 2px;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 720px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}
@media (max-width: 767px) {
  .faq-section { padding: 64px 0 32px; }
  .faq-question { font-size: 15px; padding: 20px 0; }
  .faq-answer-inner { font-size: 14px; }
}

/* ===== Horizontal Scroll ===== */
.scroll-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}
.scroll-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.scroll-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #F2F0EB;
}
.scroll-header .link-more {
  color: #C9A86A;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.scroll-header .link-more:hover { gap: 10px; }
.scroll-track-wrap {
  position: relative;
}
.scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-track::-webkit-scrollbar {
  display: none;
}
.scroll-item {
  flex: 0 0 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  scroll-snap-align: start;
}
.scroll-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-hover), 0 0 0 1px rgba(201, 168, 106, 0.25);
}
.scroll-item .item-cover {
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.scroll-item .item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.scroll-item:hover .item-cover img {
  transform: scale(1.05);
}
.scroll-item .item-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(11, 12, 16, 0.6));
}
.scroll-item .item-play {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 12, 16, 0.55);
  border: 1px solid rgba(201, 168, 106, 0.6);
  color: #C9A86A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.scroll-item:hover .item-play {
  opacity: 1;
}
.scroll-item .item-play:hover {
  background: #C9A86A;
  color: #0B0C10;
}
.scroll-item .item-body {
  padding: 16px;
}
.scroll-item .item-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: #F2F0EB;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scroll-item .item-body .item-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.scroll-item .item-body .tag {
  font-size: 11px;
  padding: 3px 10px;
}
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 12, 16, 0.8);
  border: 1px solid rgba(201, 168, 106, 0.4);
  color: #C9A86A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.scroll-arrow:hover {
  background: #C9A86A;
  color: #0B0C10;
  border-color: #C9A86A;
}
.scroll-arrow.prev {
  left: 8px;
}
.scroll-arrow.next {
  right: 8px;
}
@media (max-width: 767px) {
  .scroll-section { padding: 56px 0; }
  .scroll-header h2 { font-size: 24px; }
  .scroll-item { flex-basis: 160px; }
  .scroll-arrow { display: none; }
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--bg-primary);
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 168, 106, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: 36px;
  font-weight: 800;
  color: #F2F0EB;
  margin-bottom: 16px;
  line-height: 1.3;
}
.cta-inner h2 .gold {
  color: #C9A86A;
}
.cta-inner p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cta-status .badge {
  padding: 6px 14px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .cta-section { padding: 64px 0; }
  .cta-inner h2 { font-size: 28px; }
  .cta-inner p { font-size: 15px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
}

/* ===== Footer ===== */
.site-footer {
  background: #08090D;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 0 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: rgba(201, 168, 106, 0.5);
}
.footer-top {
  display: flex;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand {
  flex: 1;
  max-width: 320px;
}
.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand .logo-badge {
  font-size: 11px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(143, 147, 160, 0.85);
  line-height: 1.7;
  margin-top: 12px;
}
.footer-links {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  color: #F2F0EB;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition), padding-left var(--transition);
  line-height: 1.6;
}
.footer-links a:hover {
  color: #C9A86A;
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0 32px;
  font-size: 13px;
  color: rgba(143, 147, 160, 0.7);
}
@media (max-width: 767px) {
  .site-footer { padding: 48px 0 0; }
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-brand { max-width: 100%; }
  .footer-links { flex-basis: auto; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Back to Top ===== */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(28, 30, 40, 0.9);
  border: 1px solid rgba(201, 168, 106, 0.5);
  color: #C9A86A;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover {
  background: #C9A86A;
  color: #0B0C10;
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
