:root {
    --bg: #16040c;
    --surface: #2b0a17;
    --accent: #f0b429;
    --accent2: #f43f5e;
    --text: #fff0f5;
    --muted: #c08d9d;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --article-width: 800px;
    --header-height: 70px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
  }

  a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 44px;
  }
  .btn-primary {
    background-color: var(--accent);
    color: var(--bg);
    border: 1px solid var(--accent);
  }
  .btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
  }
  .btn-secondary {
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--muted);
  }
  .btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  /* HEADER (Strict Copy Area Styling) */
  header {
    background-color: rgba(22, 4, 12, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 141, 157, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
  }
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
  }
  .nav-links {
    display: flex;
    gap: 24px;
  }
  .nav-links a {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-actions {
    display: flex;
    gap: 12px;
  }
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    min-width: 44px;
    min-height: 44px;
  }

  /* EDITORIAL BANNER / HERO */
  .article-hero {
    padding: 60px 0 40px;
    background: linear-gradient(to bottom, var(--surface) 0%, var(--bg) 100%);
    position: relative;
    border-bottom: 1px solid rgba(240, 180, 41, 0.1);
  }
  /* Subtle Temple Motif Decoration in Hero */
  .article-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
  }
  .hero-content {
    max-width: var(--article-width);
    margin: 0 auto;
    text-align: center;
  }
  .breadcrumb {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
  }
  .article-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 24px;
    font-weight: 700;
  }
  .meta-chips {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .chip {
    background-color: rgba(192, 141, 157, 0.1);
    color: var(--muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(192, 141, 157, 0.2);
    display: inline-flex;
    align-items: center;
  }
  .chip::before {
    content: '✦';
    color: var(--accent);
    margin-right: 6px;
    font-size: 0.7rem;
  }

  /* MAIN ARTICLE CONTENT */
  .article-main {
    padding: 40px 0 80px;
  }
  .article-body {
    max-width: var(--article-width);
    margin: 0 auto;
  }
  .article-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 40px;
    font-weight: 400;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
  }

  .article-body h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(240, 180, 41, 0.2);
    position: relative;
  }
  /* Stepped Candi Motif on H2 */
  .article-body h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
  }

  .article-body p {
    margin-bottom: 24px;
    font-size: 1.05rem;
    color: #e0d5d9;
    line-height: 1.7;
  }

  .article-body a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(240, 180, 41, 0.4);
    text-underline-offset: 4px;
  }
  .article-body a:hover {
    text-decoration-color: var(--accent);
    color: var(--text);
  }

  .article-body ul {
    margin: 0 0 32px 0;
    padding: 24px;
    background-color: var(--surface);
    border-radius: 8px;
    list-style: none;
    border: 1px solid rgba(192, 141, 157, 0.1);
  }
  .article-body li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
    color: #e0d5d9;
  }
  .article-body li:last-child { margin-bottom: 0; }
  .article-body li::before {
    content: '❖';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent2);
    font-size: 1rem;
  }

  /* FAQ SECTION */
  .faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed rgba(192, 141, 157, 0.3);
  }
  .faq-section h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text);
  }
  details {
    background-color: var(--surface);
    border: 1px solid rgba(192, 141, 157, 0.2);
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
  }
  details:hover {
    border-color: var(--accent);
  }
  summary {
    padding: 20px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent);
  }
  summary::-webkit-details-marker { display: none; }
  summary::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--muted);
    transition: transform 0.3s ease;
  }
  details[open] summary::after {
    content: '−';
    color: var(--accent2);
  }
  details p {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 1rem;
    color: #e0d5d9;
  }

  /* RELATED LINKS (Creative Nav Block) */
  .related-links-block {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(240, 180, 41, 0.15);
    text-align: center;
  }
  .related-links-block h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text);
  }
  .related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .related-card {
    background: rgba(22, 4, 12, 0.6);
    border: 1px solid rgba(192, 141, 157, 0.2);
    padding: 16px 24px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--accent);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .related-card::before {
    content: '›';
    color: var(--accent2);
    font-size: 1.5rem;
    line-height: 1;
  }
  .related-card:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    transform: translateY(-3px);
  }
  .related-card:hover::before {
    color: var(--bg);
  }

  /* CTA BLOCK */
  .cta-block {
    margin-top: 60px;
    padding: 50px 30px;
    background-color: var(--surface);
    border: 2px solid var(--accent);
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  /* Decorative corners for Candi motif */
  .cta-block::before, .cta-block::after {
    content: '';
    position: absolute;
    width: 30px; height: 30px;
    border: 2px solid var(--accent2);
  }
  .cta-block::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
  .cta-block::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }

  .cta-block h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .cta-block p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-actions .btn {
    min-width: 160px;
    font-size: 1.05rem;
    padding: 12px 24px;
  }

  /* FOOTER (Strict Copy Area Styling) */
  footer {
    background-color: #0b0206;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(240, 180, 41, 0.2);
    margin-top: 60px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .footer-tagline {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }
  .footer-links a {
    color: var(--text);
    font-size: 0.9rem;
  }
  .footer-links a:hover { color: var(--accent); }
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(192, 141, 157, 0.1);
    color: var(--muted);
    font-size: 0.85rem;
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-tagline { max-width: 100%; }
  }

  @media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .menu-toggle { display: block; }

    /* Mobile Menu Active State */
    .nav-links.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: var(--header-height);
      left: 0;
      width: 100%;
      background-color: var(--bg);
      padding: 20px;
      border-bottom: 1px solid rgba(192, 141, 157, 0.2);
    }
    .nav-actions.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: calc(var(--header-height) + 240px); /* rough estimate below links */
      left: 0;
      width: 100%;
      background-color: var(--bg);
      padding: 0 20px 20px;
      border-bottom: 1px solid rgba(192, 141, 157, 0.2);
    }

    .article-hero { padding: 40px 0 30px; }
    .article-main { padding: 30px 0 60px; }
    .article-body h2 { font-size: 1.5rem; margin-top: 40px; }

    .related-links-block { padding: 30px 20px; }
    .related-card { width: 100%; justify-content: center; }

    .cta-block { padding: 40px 20px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }
  }

  @media (max-width: 390px) {
    .article-hero h1 { font-size: 1.75rem; }
    .article-intro { font-size: 1.05rem; padding-left: 15px; }
    .article-body p { font-size: 1rem; }
    .chip { font-size: 0.75rem; padding: 4px 10px; }
  }


/* pipeline image & layout guards */
html, body { overflow-x: clip; }
img { max-width: 100%; height: auto; }
img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
/* 合规声明块（zb-disclaimer，全站 footer） */
.zb-disclaimer { margin-top: 18px !important; padding: 14px 0 0 0 !important; border-top: 1px solid rgba(128,128,128,.25) !important; font-size: .72rem !important; line-height: 1.7 !important; opacity: .85 !important; display: block !important; text-align: left !important; width: 100% !important; clear: both !important; }
.zb-disclaimer .zb-18 { display: inline-block !important; padding: 2px 10px !important; border: 1.5px solid currentColor !important; border-radius: 6px !important; font-weight: 800 !important; letter-spacing: 1px !important; margin: 0 0 10px 0 !important; font-size: .78rem !important; }
.zb-disclaimer p { display: block !important; margin: 5px 0 !important; padding: 0 !important; color: inherit !important; font-size: .72rem !important; line-height: 1.7 !important; }
.zb-disclaimer p:last-child { margin-bottom: 0 !important; }
