/* roulang page: index */
:root {
  --ink: #0C1512;
  --ink-deep: #08100D;
  --card: #141F1B;
  --gold: #D3AF67;
  --gold-bright: #E2C68B;
  --teal: #5FA8A0;
  --meteor: #E07A5F;
  --cloud: #EAEFEC;
  --mist: #8FA19A;
  --border-soft: rgba(255, 255, 255, 0.08);
  --radius-card: 10px;
  --radius-btn: 6px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--ink);
  color: var(--cloud);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', serif;
  font-weight: 600;
  color: var(--cloud);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input {
  font-family: inherit;
}

.container-x {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-title {
  font-size: 30px;
  font-weight: 600;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  margin-bottom: 36px;
  line-height: 1.4;
}

.section-sub {
  font-size: 14px;
  color: var(--mist);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 22px;
    padding-left: 12px;
  }
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--radius-btn);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.btn-gold:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 20px rgba(211, 175, 103, 0.35);
  transform: translateY(-1px);
}

.btn-gold:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-gold:active {
  transform: translateY(1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--cloud);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  font-size: 15px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(211, 175, 103, 0.15);
}

.btn-outline:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-outline:active {
  transform: translateY(1px);
}

.nav-link {
  position: relative;
  padding: 8px 4px;
  font-size: 14px;
  color: var(--cloud);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold);
}

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--cloud);
  padding: 8px 12px;
  font-size: 13px;
  transition: all 0.4s ease;
  outline: none;
}

.search-input::placeholder {
  color: var(--mist);
}

.search-input.show {
  width: 180px;
  opacity: 1;
  margin-right: 8px;
}

.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(211, 175, 103, 0.25);
}

.btn-login {
  font-size: 14px;
  color: var(--mist);
  padding: 8px 16px;
  transition: color 0.3s;
}

.btn-login:hover {
  color: var(--cloud);
}

.hero-bg {
  background-image: url('/assets/images/backpic/back-1.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 21, 18, 0.88) 0%, rgba(12, 21, 18, 0.72) 50%, rgba(8, 16, 13, 0.92) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 75% 20%, rgba(211, 175, 103, 0.08), transparent 40%),
    radial-gradient(circle at 25% 75%, rgba(95, 168, 160, 0.06), transparent 40%);
}

.star-bg {
  background-image:
    radial-gradient(1px 1px at 15% 18%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 32% 42%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 48% 68%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 63% 26%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 78% 56%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 91% 22%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 10% 72%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(2px 2px at 42% 12%, rgba(211, 175, 103, 0.5), transparent),
    radial-gradient(1px 1px at 68% 84%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 85% 72%, rgba(211, 175, 103, 0.4), transparent);
}

.card {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  border: 1px solid var(--border-soft);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(211, 175, 103, 0.4);
}

.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(211, 175, 103, 0.25);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 3px rgba(211, 175, 103, 0.2);
}

.timeline-dot::after {
  content: '';
  position: absolute;
  left: -4px;
  top: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(211, 175, 103, 0.3);
  z-index: -1;
}

@media (max-width: 767px) {
  .timeline {
    padding-left: 24px;
  }
  .timeline-dot {
    width: 10px;
    height: 10px;
    left: -28px;
  }
}

.ticket-card {
  position: relative;
}

.ticket-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--meteor);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.4);
}

.ticket-vip {
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 30px rgba(211, 175, 103, 0.15);
}

.icon-check {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--card);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}

.news-card:hover {
  border-color: rgba(211, 175, 103, 0.35);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 14px;
  border-radius: 999px;
  background: rgba(95, 168, 160, 0.15);
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.badge-gold {
  background: rgba(211, 175, 103, 0.15);
  color: var(--gold);
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.3s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 20px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--cloud);
  transition: color 0.3s;
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  color: var(--gold);
  transition: all 0.4s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  padding: 0 16px;
  font-size: 14px;
  color: var(--mist);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 16px 20px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  background: rgba(211, 175, 103, 0.1);
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(143, 161, 154, 0.7);
}

.footer-link {
  color: var(--mist);
  transition: color 0.3s;
  font-size: 14px;
}

.footer-link:hover {
  color: var(--gold);
}

.guest-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(211, 175, 103, 0.3);
  padding: 3px;
  background: var(--ink);
}

.cover-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--ink-deep);
}

.text-gold {
  color: var(--gold);
}

.text-mist {
  color: var(--mist);
}

.hover-lift {
  transition: all 0.35s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.gold-line {
  border-color: rgba(211, 175, 103, 0.2);
}

.section-pad {
  padding: 80px 0;
}

@media (max-width: 767px) {
  .section-pad {
    padding: 48px 0;
  }
}

/* roulang page: category1 */
:root {
      --ink: #0C1512;
      --ink-deep: #08100D;
      --card: #141F1B;
      --gold: #D3AF67;
      --gold-light: #E2C68B;
      --teal: #5FA8A0;
      --orange: #E07A5F;
      --cloud: #EAEFEC;
      --mist: #8FA19A;
      --border: rgba(255,255,255,0.08);
      --radius: 10px;
      --shadow-sm: 0 2px 12px rgba(0,0,0,0.2);
      --shadow: 0 8px 30px rgba(0,0,0,0.45);
      --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
      --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      background: var(--ink);
      color: var(--cloud);
      font-family: var(--font-sans);
      font-size: 15px;
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    img {
      max-width: 100%;
      display: block;
      object-fit: cover;
    }
    button,
    input {
      font-family: inherit;
      outline: none;
    }
    .container-x {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== 导航 ===== */
    .nav-link {
      position: relative;
      font-size: 14px;
      color: var(--mist);
      padding: 6px 2px;
      transition: color 0.3s;
      white-space: nowrap;
    }
    .nav-link:hover {
      color: var(--gold);
    }
    .nav-link.active {
      color: var(--gold);
    }
    .nav-link.active::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -2px;
      height: 2px;
      background: var(--gold);
      border-radius: 999px;
    }
    .translate-x-full {
      transform: translateX(100%);
    }
    .mobile-nav-link {
      display: block;
      padding: 12px 8px;
      font-size: 15px;
      color: var(--mist);
      border-radius: 8px;
      transition: all 0.3s;
    }
    .mobile-nav-link:hover,
    .mobile-nav-link.active {
      color: var(--gold);
      background: rgba(211,175,103,0.06);
    }

    /* ===== 按钮 ===== */
    .btn-gold {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--gold);
      color: #0C1512;
      font-weight: 600;
      border-radius: 6px;
      padding: 10px 24px;
      transition: all 0.3s;
      border: 1px solid transparent;
    }
    .btn-gold:hover {
      background: var(--gold-light);
      box-shadow: 0 0 20px rgba(211,175,103,0.35);
      transform: translateY(-1px);
      color: #0C1512;
    }
    .btn-gold:active {
      transform: translateY(1px);
    }
    .btn-gold:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid rgba(211,175,103,0.5);
      color: var(--gold);
      background: transparent;
      border-radius: 6px;
      padding: 10px 24px;
      font-weight: 500;
      transition: all 0.3s;
    }
    .btn-outline:hover {
      background: rgba(211,175,103,0.08);
      border-color: var(--gold);
      color: var(--gold-light);
    }
    .btn-outline:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    /* ===== 搜索框 ===== */
    .search-wrap {
      display: flex;
      align-items: center;
      gap: 4px;
      background: rgba(255,255,255,0.06);
      border-radius: 999px;
      padding: 4px 6px 4px 16px;
      transition: box-shadow 0.3s, border-color 0.3s;
      border: 1px solid transparent;
    }
    .search-wrap:focus-within {
      border-color: rgba(211,175,103,0.6);
      box-shadow: 0 0 0 3px rgba(211,175,103,0.12);
    }
    .search-wrap .search-input {
      background: transparent;
      border: none;
      color: var(--cloud);
      font-size: 13px;
      width: 0;
      opacity: 0;
      transition: width 0.4s, opacity 0.3s;
    }
    .search-wrap .search-input.search-open {
      width: 150px;
      opacity: 1;
    }
    .search-wrap .search-input::placeholder {
      color: var(--mist);
    }
    .search-wrap .search-input:focus {
      outline: none;
    }

    /* ===== 区块与标题 ===== */
    .section {
      padding: 80px 0;
    }
    .section-title {
      font-family: var(--font-serif);
      font-size: 30px;
      font-weight: 600;
      margin-bottom: 32px;
      padding-left: 16px;
      position: relative;
      letter-spacing: 0.02em;
    }
    .section-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 6px;
      bottom: 6px;
      width: 4px;
      background: var(--gold);
      border-radius: 999px;
    }
    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      transition: all 0.3s;
    }
    .card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
      border-color: rgba(211,175,103,0.25);
    }

    /* ===== 徽章 ===== */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(211,175,103,0.12);
      color: var(--gold);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding: 4px 14px;
      border-radius: 999px;
      border: 1px solid rgba(211,175,103,0.3);
    }
    .badge-teal {
      background: rgba(95,168,160,0.1);
      color: var(--teal);
      border-color: rgba(95,168,160,0.3);
    }

    /* ===== 时间线 ===== */
    .timeline {
      position: relative;
      padding-left: 36px;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 11px;
      top: 6px;
      bottom: 6px;
      width: 2px;
      background: rgba(211,175,103,0.25);
    }
    .timeline-item {
      position: relative;
      padding-bottom: 40px;
    }
    .timeline-item:last-child {
      padding-bottom: 0;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -31px;
      top: 6px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--gold);
      border: 2px solid var(--ink);
      box-shadow: 0 0 0 2px rgba(211,175,103,0.25);
    }
    .timeline-time {
      font-family: "JetBrains Mono", "Courier New", monospace;
      font-size: 13px;
      color: var(--gold);
      letter-spacing: 0.04em;
      margin-bottom: 6px;
    }

    /* ===== FAQ ===== */
    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .faq-item:first-child {
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 20px 8px;
      width: 100%;
      background: transparent;
      border: none;
      text-align: left;
      color: var(--cloud);
      font-size: 15px;
      font-weight: 500;
      transition: color 0.3s;
      cursor: pointer;
    }
    .faq-q:hover {
      color: var(--gold);
    }
    .faq-q .faq-icon {
      flex-shrink: 0;
      color: var(--gold);
      transition: transform 0.3s;
      font-size: 16px;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.3s ease;
      padding: 0 8px;
      color: var(--mist);
      font-size: 14px;
      line-height: 1.8;
    }
    .faq-item.open .faq-a {
      max-height: 500px;
      padding: 0 8px 20px;
    }

    /* ===== 星点装饰 ===== */
    .star {
      position: absolute;
      width: 4px;
      height: 4px;
      background: var(--cloud);
      border-radius: 50%;
      opacity: 0.25;
      animation: twinkle 4s ease-in-out infinite;
    }
    .star-lg {
      width: 6px;
      height: 6px;
    }
    .star-sm {
      width: 2px;
      height: 2px;
    }
    @keyframes twinkle {
      0%, 100% {
        opacity: 0.2;
        transform: scale(0.8);
      }
      50% {
        opacity: 0.7;
        transform: scale(1.15);
      }
    }

    /* ===== Hero ===== */
    .hero-overlay {
      background: linear-gradient(180deg, rgba(12,21,18,0.75) 0%, rgba(12,21,18,0.92) 100%);
    }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 28px;
      font-size: 13px;
      color: var(--mist);
      letter-spacing: 0.03em;
    }
    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .hero-meta i {
      color: var(--gold);
      font-size: 14px;
    }

    /* ===== 图片 ===== */
    .img-placeholder {
      background: var(--card);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .img-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ===== CTA ===== */
    .cta-section {
      background: var(--ink-deep);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(211,175,103,0.5), transparent);
    }

    /* ===== 页脚 ===== */
    .footer-link {
      color: var(--mist);
      font-size: 14px;
      transition: color 0.3s, padding-left 0.3s;
    }
    .footer-link:hover {
      color: var(--gold);
      padding-left: 4px;
    }
    .footer-subscribe {
      display: flex;
      gap: 10px;
    }
    .footer-subscribe input {
      flex: 1;
      background: #0F1916;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 10px 14px;
      color: var(--cloud);
      font-size: 13px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .footer-subscribe input::placeholder {
      color: var(--mist);
    }
    .footer-subscribe input:focus {
      outline: none;
      border-color: rgba(211,175,103,0.7);
      box-shadow: 0 0 0 3px rgba(211,175,103,0.12);
    }

    /* ===== 响应式 ===== */
    @media (max-width: 1023px) {
      .section {
        padding: 60px 0;
      }
      .section-title {
        font-size: 26px;
      }
    }
    @media (max-width: 767px) {
      .section {
        padding: 48px 0;
      }
      .section-title {
        font-size: 22px;
        margin-bottom: 24px;
      }
      .container-x {
        padding: 0 16px;
      }
      .timeline {
        padding-left: 28px;
      }
      .timeline-item::before {
        left: -24px;
        width: 10px;
        height: 10px;
      }
      .timeline-time {
        font-size: 12px;
      }
      .btn-gold,
      .btn-outline {
        width: 100%;
      }
      .hero-meta {
        gap: 12px 20px;
        font-size: 12px;
      }
      .card {
        padding: 20px;
      }
    }
    @media (max-width: 480px) {
      .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }

/* roulang page: article */
:root {
  --ink: #0C1512;
  --ink-deep: #08100D;
  --card: #141F1B;
  --gold: #D3AF67;
  --gold-light: #E2C68B;
  --teal: #5FA8A0;
  --orange: #E07A5F;
  --cloud: #EAEFEC;
  --mist: #8FA19A;
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(211,175,103,0.3);
  --radius: 10px;
  --radius-sm: 8px;
  --radius-full: 999px;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.45);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #0C1512;
  color: #EAEFEC;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
input {
  font: inherit;
}
.container-x {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .container-x {
    padding: 0 16px;
  }
}
.h-18 {
  height: 72px;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #D3AF67;
  color: #0C1512;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  transition: all 0.25s ease;
  white-space: nowrap;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.btn-gold:hover {
  background: #E2C68B;
  box-shadow: 0 0 20px rgba(211,175,103,0.35);
  transform: translateY(-1px);
}
.btn-gold:active {
  transform: translateY(1px);
}
.btn-gold:focus-visible {
  outline: 2px solid #D3AF67;
  outline-offset: 2px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #EAEFEC;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 11px 26px;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-size: 14px;
}
.btn-outline:hover {
  border-color: #D3AF67;
  color: #D3AF67;
  background: rgba(211,175,103,0.06);
}
.btn-lg {
  padding: 16px 44px;
  font-size: 16px;
}
.btn-login {
  color: #8FA19A;
  font-size: 14px;
  padding: 8px 12px;
  transition: color 0.2s ease;
}
.btn-login:hover {
  color: #D3AF67;
}
.nav-link {
  position: relative;
  color: #8FA19A;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 2px;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D3AF67;
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: #D3AF67;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: #D3AF67;
}
.search-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 0 4px 0 16px;
  height: 38px;
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-wrap:focus-within {
  border-color: #D3AF67;
  box-shadow: 0 0 0 3px rgba(211,175,103,0.15);
}
.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #EAEFEC;
  font-size: 13px;
  width: 120px;
  transition: width 0.3s ease;
}
.search-input::placeholder {
  color: #8FA19A;
}
.search-input:focus,
.search-input.search-expanded {
  width: 180px;
}
.mobile-nav-link {
  display: block;
  padding: 12px 8px;
  color: #8FA19A;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #D3AF67;
  background: rgba(211,175,103,0.06);
}
.breadcrumb-bar {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #0C1512;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8FA19A;
}
.breadcrumb a {
  color: #8FA19A;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #D3AF67;
}
.breadcrumb i {
  font-size: 8px;
  color: rgba(255,255,255,0.3);
}
.breadcrumb span {
  color: #D3AF67;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-hero {
  position: relative;
  padding: 72px 0 80px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(211,175,103,0.15);
  overflow: hidden;
}
.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(234,239,236,0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 80% 20%, rgba(211,175,103,0.3) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 60% 70%, rgba(234,239,236,0.2) 50%, transparent 50%),
    radial-gradient(1px 1px at 40% 80%, rgba(95,168,160,0.35) 50%, transparent 50%),
    radial-gradient(0.5px 0.5px at 10% 60%, rgba(234,239,236,0.5) 50%, transparent 50%),
    radial-gradient(0.5px 0.5px at 90% 80%, rgba(234,239,236,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 70% 15%, rgba(211,175,103,0.25) 50%, transparent 50%);
  background-size: 80px 80px;
}
.article-badge {
  display: inline-block;
  background: rgba(211,175,103,0.15);
  color: #D3AF67;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(211,175,103,0.25);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.article-hero h1 {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  color: #EAEFEC;
  max-width: 860px;
  margin: 0 auto 20px;
  letter-spacing: 0.02em;
}
.article-hero .article-desc {
  color: #8FA19A;
  font-size: 15px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 24px;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #8FA19A;
  font-size: 13px;
  flex-wrap: wrap;
}
.article-meta .dot {
  color: rgba(255,255,255,0.2);
}
.article-meta i {
  color: #D3AF67;
  margin-right: 4px;
  font-size: 12px;
}
.article-section {
  padding: 64px 0 24px;
  background: #0C1512;
}
.article-container {
  max-width: 780px;
}
.article-body {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(234,239,236,0.92);
}
.article-body h2 {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  font-size: 26px;
  font-weight: 600;
  color: #EAEFEC;
  margin: 48px 0 20px;
  padding-left: 14px;
  border-left: 3px solid #D3AF67;
  line-height: 1.4;
}
.article-body h3 {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  font-size: 20px;
  font-weight: 600;
  color: #EAEFEC;
  margin: 36px 0 16px;
  line-height: 1.45;
}
.article-body h4 {
  font-size: 17px;
  font-weight: 600;
  color: #EAEFEC;
  margin: 28px 0 12px;
}
.article-body p {
  margin-bottom: 22px;
}
.article-body a {
  color: #D3AF67;
  border-bottom: 1px solid rgba(211,175,103,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.article-body a:hover {
  color: #E2C68B;
  border-color: #E2C68B;
}
.article-body ul,
.article-body ol {
  margin: 0 0 22px;
  padding-left: 24px;
}
.article-body ul li,
.article-body ol li {
  margin-bottom: 10px;
  padding-left: 4px;
}
.article-body ul li::marker {
  color: #D3AF67;
}
.article-body ol li::marker {
  color: #D3AF67;
  font-weight: 600;
}
.article-body blockquote {
  border-left: 3px solid #D3AF67;
  background: rgba(211,175,103,0.06);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #8FA19A;
  font-size: 15px;
}
.article-body blockquote p {
  margin-bottom: 0;
}
.article-body img {
  border-radius: 12px;
  margin: 32px auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.article-body figure {
  margin: 32px 0;
}
.article-body figcaption {
  text-align: center;
  font-size: 13px;
  color: #8FA19A;
  margin-top: 12px;
}
.article-body hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 40px 0;
}
.article-body code {
  background: rgba(255,255,255,0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-family: "SF Mono", "Fira Code", monospace;
  color: #5FA8A0;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.article-body th,
.article-body td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 14px;
  text-align: left;
}
.article-body th {
  background: rgba(211,175,103,0.08);
  color: #D3AF67;
  font-weight: 600;
}
.article-footer-nav {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  display: inline-block;
  background: rgba(211,175,103,0.12);
  color: #D3AF67;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.related-section {
  padding: 72px 0 40px;
  background: #08100D;
  border-top: 1px solid rgba(211,175,103,0.15);
}
.section-title {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  font-size: 28px;
  font-weight: 600;
  color: #EAEFEC;
  margin-bottom: 32px;
  position: relative;
  padding-left: 16px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #D3AF67;
  border-radius: 999px;
}
.related-card {
  background: #141F1B;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(211,175,103,0.35);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.related-card .thumb {
  height: 170px;
  overflow: hidden;
  position: relative;
  display: block;
}
.related-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.related-card:hover .thumb img {
  transform: scale(1.05);
}
.related-card .card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-card .card-body h3 {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  font-size: 17px;
  font-weight: 600;
  color: #EAEFEC;
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-card:hover .card-body h3 {
  color: #D3AF67;
}
.related-card .card-body p {
  font-size: 13px;
  color: #8FA19A;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-link {
  color: #D3AF67;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover {
  color: #E2C68B;
}
.cta-section {
  background: #08100D;
  padding: 96px 0;
  border-top: 1px solid rgba(211,175,103,0.2);
  position: relative;
  overflow: hidden;
}
.cta-section h2 {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  font-size: 34px;
  font-weight: 700;
  color: #EAEFEC;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.cta-section p {
  color: #8FA19A;
  font-size: 16px;
  margin-bottom: 32px;
}
.footer-link {
  color: #8FA19A;
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
  padding-left: 0;
}
.footer-link:hover {
  color: #D3AF67;
  padding-left: 4px;
}
.footer-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #EAEFEC;
  outline: none;
  flex: 1;
  min-width: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.footer-input::placeholder {
  color: #8FA19A;
}
.footer-input:focus {
  border-color: #D3AF67;
  box-shadow: 0 0 0 3px rgba(211,175,103,0.15);
}
.footer-social {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  color: #8FA19A;
  font-size: 14px;
  transition: all 0.25s ease;
}
.footer-social:hover {
  background: rgba(211,175,103,0.15);
  color: #D3AF67;
}
@media (max-width: 1023px) {
  .article-hero h1 {
    font-size: 30px;
  }
  .cta-section h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .article-hero {
    padding: 48px 0 56px;
  }
  .article-hero h1 {
    font-size: 24px;
  }
  .article-hero .article-desc {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .article-section {
    padding: 40px 0 16px;
  }
  .article-body {
    font-size: 15px;
  }
  .article-body h2 {
    font-size: 22px;
  }
  .article-body blockquote {
    padding: 16px 18px;
    font-size: 14px;
  }
  .related-section {
    padding: 48px 0 24px;
  }
  .section-title {
    font-size: 24px;
  }
  .cta-section {
    padding: 64px 0;
  }
  .cta-section h2 {
    font-size: 26px;
  }
  .cta-section p {
    font-size: 14px;
  }
  .btn-gold {
    width: auto;
  }
}

/* roulang page: category2 */
:root {
            --ink: #0C1512;
            --ink-deep: #08100D;
            --ink-card: #141F1B;
            --gold: #D3AF67;
            --gold-bright: #E2C68B;
            --teal: #5FA8A0;
            --orange: #E07A5F;
            --cloud: #EAEFEC;
            --mist: #8FA19A;
            --border: rgba(255, 255, 255, 0.08);
            --radius: 10px;
            --radius-lg: 14px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.45);
            --gold-glow: 0 0 20px rgba(211, 175, 103, 0.35);
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
            background: var(--ink);
            color: var(--cloud);
            line-height: 1.8;
            font-size: 15px;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
            color: inherit;
        }
        input {
            font-family: inherit;
            outline: none;
            border: none;
            background: none;
            color: var(--cloud);
        }
        .container-x {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .h-18 {
            height: 72px;
        }
        .font-serif {
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
        }
        .text-gold {
            color: var(--gold);
        }
        .text-mist {
            color: var(--mist);
        }
        .text-cloud {
            color: var(--cloud);
        }
        .bg-ink-deep {
            background: var(--ink-deep);
        }
        .bg-ink-card {
            background: var(--ink-card);
        }
        .nav-link {
            position: relative;
            font-size: 14px;
            font-weight: 500;
            color: var(--mist);
            padding: 6px 2px;
            transition: color 0.25s ease;
        }
        .nav-link:hover {
            color: var(--gold);
        }
        .nav-link.active {
            color: var(--cloud);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }
        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--gold);
            color: #0C1512;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            padding: 12px 28px;
            transition: all 0.25s ease;
            border: 1px solid transparent;
            line-height: 1.2;
            min-height: 44px;
        }
        .btn-gold:hover {
            background: var(--gold-bright);
            box-shadow: var(--gold-glow);
            transform: translateY(-1px);
        }
        .btn-gold:active {
            transform: translateY(1px);
        }
        .btn-gold:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 1px solid rgba(211, 175, 103, 0.5);
            color: var(--gold);
            font-weight: 500;
            font-size: 14px;
            border-radius: 8px;
            padding: 12px 28px;
            transition: all 0.25s ease;
            min-height: 44px;
            background: transparent;
        }
        .btn-outline:hover {
            border-color: var(--gold);
            background: rgba(211, 175, 103, 0.08);
        }
        .btn-login {
            font-size: 14px;
            color: var(--mist);
            padding: 8px 12px;
            transition: color 0.25s ease;
            border-radius: 6px;
        }
        .btn-login:hover {
            color: var(--cloud);
        }
        .search-wrap {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 999px;
            padding: 4px 8px 4px 16px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
            width: 180px;
        }
        .search-wrap:focus-within {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(211, 175, 103, 0.15);
        }
        .search-input {
            width: 100%;
            font-size: 13px;
            color: var(--cloud);
            background: transparent;
            padding: 5px 0;
        }
        .search-input::placeholder {
            color: var(--mist);
        }
        .mobile-nav-link {
            display: block;
            padding: 12px 8px;
            color: var(--mist);
            font-size: 15px;
            border-radius: 6px;
            transition: all 0.2s ease;
        }
        .mobile-nav-link:hover {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.04);
        }
        .mobile-nav-link.active {
            color: var(--gold);
        }
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(211, 175, 103, 0.12);
            color: var(--gold);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.04em;
            padding: 5px 14px;
            border-radius: 999px;
            border: 1px solid rgba(211, 175, 103, 0.25);
        }
        .section {
            padding: 80px 0;
        }
        .section-title {
            font-family: "Noto Serif SC", "Source Han Serif SC", serif;
            font-size: 30px;
            font-weight: 600;
            color: var(--cloud);
            margin-bottom: 12px;
            position: relative;
            padding-left: 18px;
            line-height: 1.4;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 4px;
            height: 70%;
            background: var(--gold);
            border-radius: 4px;
        }
        .section-sub {
            font-size: 15px;
            color: var(--mist);
            margin-bottom: 40px;
            max-width: 640px;
            line-height: 1.8;
        }
        .category-hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            background: linear-gradient(180deg, rgba(8, 16, 13, 0.6) 0%, rgba(12, 21, 18, 0.92) 100%), url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            padding-top: 120px;
            padding-bottom: 80px;
        }
        .category-hero h1 {
            font-family: "Noto Serif SC", "Source Han Serif SC", serif;
            font-size: 44px;
            font-weight: 700;
            color: var(--cloud);
            line-height: 1.25;
            letter-spacing: 0.02em;
            margin-bottom: 16px;
        }
        .category-hero .hero-lead {
            font-size: 18px;
            color: var(--cloud);
            opacity: 0.85;
            max-width: 520px;
            margin-bottom: 24px;
            line-height: 1.8;
        }
        .category-hero .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            color: var(--mist);
            margin-top: 8px;
        }
        .category-hero .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .category-hero .hero-meta i {
            color: var(--gold);
        }
        .card-base {
            background: var(--ink-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            padding: 28px 24px;
        }
        .card-base:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(211, 175, 103, 0.3);
        }
        .icon-circle {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            background: rgba(211, 175, 103, 0.12);
            color: var(--gold);
            border: 1px solid rgba(211, 175, 103, 0.2);
            margin-bottom: 18px;
            transition: all 0.3s ease;
        }
        .card-base:hover .icon-circle {
            background: var(--gold);
            color: #0C1512;
            box-shadow: var(--gold-glow);
        }
        .speaker-card {
            background: var(--ink-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .speaker-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(211, 175, 103, 0.4);
        }
        .speaker-card .speaker-avatar {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid transparent;
            transition: border-color 0.3s ease;
        }
        .speaker-card:hover .speaker-avatar {
            border-color: rgba(211, 175, 103, 0.5);
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-item {
            text-align: center;
            padding: 32px 20px;
            background: var(--ink-card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }
        .stat-item .num {
            font-size: 38px;
            font-weight: 700;
            color: var(--gold);
            font-feature-settings: "tnum";
            line-height: 1.2;
        }
        .stat-item .label {
            font-size: 13px;
            color: var(--mist);
            margin-top: 8px;
            letter-spacing: 0.04em;
        }
        .cta-band {
            background: var(--ink-deep);
            border-top: 1px solid rgba(211, 175, 103, 0.15);
            border-bottom: 1px solid rgba(211, 175, 103, 0.15);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-band .stars-layer {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(2px 2px at 20% 30%, rgba(211, 175, 103, 0.4), transparent),
                radial-gradient(2px 2px at 80% 20%, rgba(95, 168, 160, 0.3), transparent),
                radial-gradient(1px 1px at 40% 70%, rgba(234, 239, 236, 0.3), transparent),
                radial-gradient(1px 1px at 70% 60%, rgba(211, 175, 103, 0.3), transparent),
                radial-gradient(2px 2px at 10% 80%, rgba(95, 168, 160, 0.2), transparent);
            pointer-events: none;
        }
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 22px 16px;
            text-align: left;
            font-size: 16px;
            font-weight: 500;
            color: var(--cloud);
            transition: all 0.25s ease;
            min-height: 56px;
            background: transparent;
        }
        .faq-question:hover {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.02);
        }
        .faq-question .fa-plus {
            color: var(--gold);
            transition: transform 0.35s ease;
            flex-shrink: 0;
            font-size: 14px;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(211, 175, 103, 0.3);
            border-radius: 50%;
        }
        .faq-question.active .fa-plus {
            transform: rotate(45deg);
            background: var(--gold);
            color: #0C1512;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 16px;
        }
        .faq-answer.open {
            max-height: 300px;
            padding-bottom: 20px;
        }
        .faq-answer p {
            font-size: 14px;
            color: var(--mist);
            line-height: 1.9;
            border-left: 2px solid rgba(211, 175, 103, 0.25);
            padding-left: 16px;
            margin-left: 4px;
        }
        .footer-link {
            color: var(--mist);
            font-size: 14px;
            transition: color 0.25s ease;
        }
        .footer-link:hover {
            color: var(--gold);
        }
        .divider-line {
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
            border: none;
        }
        @media (max-width: 1023px) {
            .search-wrap {
                display: none;
            }
            .category-hero h1 {
                font-size: 36px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 767px) {
            .section {
                padding: 48px 0;
            }
            .section-title {
                font-size: 22px;
            }
            .category-hero {
                min-height: 75vh;
                padding-top: 100px;
                padding-bottom: 48px;
            }
            .category-hero h1 {
                font-size: 28px;
            }
            .category-hero .hero-lead {
                font-size: 16px;
            }
            .category-hero .hero-meta {
                flex-direction: column;
                gap: 10px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-item {
                padding: 24px 12px;
            }
            .stat-item .num {
                font-size: 28px;
            }
            .card-base {
                padding: 20px 16px;
            }
            .btn-gold,
            .btn-outline {
                width: 100%;
            }
            .faq-question {
                font-size: 15px;
                padding: 18px 12px;
            }
            .faq-answer {
                padding: 0 12px;
            }
        }
        @media (max-width: 520px) {
            .container-x {
                padding-left: 16px;
                padding-right: 16px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
