/* roulang page: index */
:root {
            --paper: #F6F1EB;
            --surface: #FFFFFF;
            --ink: #23203A;
            --muted: #6D667F;
            --line: #E7DFD5;
            --brand: #E93B7A;
            --brand-dark: #C82B68;
            --teal: #0E9C92;
            --amber: #F6BD43;
            --deep: #241F38;
            --radius-card: 1rem;
            --radius-lg: 1.5rem;
            --shadow-soft: 0 12px 40px rgba(35, 32, 58, 0.08);
            --shadow-lift: 0 20px 44px rgba(35, 32, 58, 0.12);
        }
        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            background: var(--paper);
            color: var(--ink);
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            vertical-align: middle;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button {
            font-family: inherit;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .container-sm {
            max-width: 860px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .card-hover {
            transition: transform .35s ease, box-shadow .35s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lift);
        }
        .img-zoom {
            overflow: hidden;
        }
        .img-zoom img {
            transition: transform .6s ease;
        }
        .img-zoom:hover img {
            transform: scale(1.03);
        }
        .nav-top-link {
            transition: color .2s ease;
        }
        .nav-top-link:hover {
            color: var(--brand) !important;
        }
        .sec-title {
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -0.01em;
            margin: 0 0 12px 0;
        }
        .btn-primary {
            background: var(--brand);
            color: #fff;
            border-radius: 999px;
            padding: 14px 32px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 0;
            transition: all .25s ease;
            box-shadow: 0 6px 20px rgba(233, 59, 122, 0.25);
        }
        .btn-primary:hover {
            background: var(--brand-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(233, 59, 122, 0.3);
        }
        .btn-primary:active {
            transform: translateY(1px);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid var(--line);
            color: var(--ink);
            border-radius: 999px;
            padding: 13px 30px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all .25s ease;
        }
        .btn-outline:hover {
            border-color: var(--brand);
            color: var(--brand);
        }
        .btn-white {
            background: #fff;
            color: var(--ink);
            border-radius: 999px;
            padding: 14px 32px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 0;
            transition: all .25s ease;
        }
        .btn-white:hover {
            background: var(--amber);
            color: var(--ink);
            transform: translateY(-2px);
        }
        .btn-focus:focus-visible {
            outline: 3px solid rgba(233, 59, 122, 0.5);
            outline-offset: 3px;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            letter-spacing: 0.02em;
        }
        .badge-teal {
            background: rgba(14, 156, 146, 0.1);
            color: var(--teal);
        }
        .badge-brand {
            background: rgba(233, 59, 122, 0.1);
            color: var(--brand);
        }
        .badge-amber {
            background: rgba(246, 189, 67, 0.15);
            color: #a16500;
        }
        .input-search {
            background: #fff;
            border-radius: 999px;
            padding: 12px 20px 12px 46px;
            width: 100%;
            border: 1px solid var(--line);
            outline: none;
            transition: border .2s, box-shadow .2s;
        }
        .input-search:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(233, 59, 122, 0.12);
        }
        .list-card-gray {
            background: #fff;
            border-radius: 12px;
            padding: 6px 14px;
            transition: background .2s;
        }
        .list-card-gray:hover {
            background: rgba(233, 59, 122, 0.05);
        }
        .faq-item {
            background: #fff;
            border-radius: 16px;
            border: 1px solid var(--line);
            overflow: hidden;
        }
        .faq-item summary {
            list-style: none;
            padding: 20px 24px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            transition: color .2s;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary .icon-plus {
            color: var(--brand);
            flex-shrink: 0;
            transition: transform .3s ease;
            font-size: 20px;
        }
        .faq-item[open] summary .icon-plus {
            transform: rotate(45deg);
        }
        .faq-item .faq-answer {
            padding: 0 24px 22px 24px;
            color: var(--muted);
            font-size: 15px;
            border-top: 1px solid var(--line);
            padding-top: 16px;
            margin-top: -4px;
            line-height: 1.85;
        }
        .footer-link {
            display: block;
            color: rgba(255, 255, 255, 0.65);
            padding: 4px 0;
            font-size: 14px;
            transition: color .2s, padding-left .2s;
        }
        .footer-link:hover {
            color: #fff;
            padding-left: 6px;
        }
        .nav-links-wrap {
            scrollbar-width: none;
        }
        .nav-links-wrap::-webkit-scrollbar {
            display: none;
        }
        .pill-active {
            background: var(--brand);
            color: #fff;
            border-radius: 999px;
            box-shadow: 0 4px 14px rgba(233, 59, 122, 0.3);
        }
        .pill-active a {
            color: #fff !important;
        }
        .placeholder-bg {
            background: linear-gradient(135deg, #f6d8e5, #e9e4f5);
        }
        .hero-back {
            position: relative;
            background: var(--deep);
            overflow: hidden;
        }
        .hero-back::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: url('/assets/images/backpic/back-1.png') no-repeat center/cover;
            opacity: 0.9;
        }
        .hero-back::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(110deg, rgba(36, 31, 56, 0.92) 0%, rgba(36, 31, 56, 0.75) 50%, rgba(36, 31, 56, 0.35) 100%);
        }
        .hero-back>* {
            position: relative;
            z-index: 1;
        }
        .about-block {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-soft);
        }
        .stat-number {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }
        .tick-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(14, 156, 146, 0.12);
            color: var(--teal);
            border-radius: 999px;
            width: 28px;
            height: 28px;
            font-size: 13px;
            flex-shrink: 0;
        }
        
        @media (max-width: 768px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .desktop-second-row {
                display: none;
            }
        }
        @media (min-width: 769px) {
            .mobile-nav-btn {
                display: none;
            }
            .mobile-set {
                display: none;
            }
        }

/* roulang page: article */
:root {
  --paper: #F6F1EB;
  --surface: #FFFFFF;
  --ink: #23203A;
  --muted: #6D667F;
  --line: #E7DFD5;
  --brand: #E93B7A;
  --brand-dark: #C82B68;
  --teal: #0E9C92;
  --amber: #F6BD43;
  --deep: #241F38;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button, input {
  font: inherit;
}
.container {
  width: 100%;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
@media (min-width: 768px) {
  .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* Header / Nav */
.site-header {
  background: rgba(246, 241, 235, 0.94);
  backdrop-filter: blur(10px);
}
.nav-links-wrap {
  scrollbar-width: none;
}
.nav-links-wrap::-webkit-scrollbar {
  display: none;
}
.pill-active {
  background: var(--brand) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(233, 59, 122, 0.28);
  transition: all .2s ease;
}
.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: all .2s ease;
}
.nav-item:hover {
  color: var(--brand);
  background: rgba(233, 59, 122, 0.06);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff !important;
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(233, 59, 122, 0.26);
  transition: all .22s ease;
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(200, 43, 104, 0.28);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink) !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all .22s ease;
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand) !important;
  transform: translateY(-1px);
}
.btn-outline:active {
  transform: translateY(0);
}
.btn-focus:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(233, 59, 122, 0.3);
  outline-offset: 2px;
}

/* Inputs */
.input-search {
  appearance: none;
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 16px 9px 38px;
  font-size: 14px;
  color: var(--ink);
  transition: all .2s ease;
}
.input-search:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(233, 59, 122, 0.1);
}

/* Tag / Badge */
.badge-cat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(14, 156, 146, 0.12);
  color: #0b7f78;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.tag {
  display: inline-flex;
  align-items: center;
  background: rgba(233, 59, 122, 0.1);
  color: #b3225d;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s ease;
}
.tag:hover {
  background: var(--brand);
  color: #fff;
}

/* Cards */
.card-lift {
  border: none;
  box-shadow: 0 12px 40px rgba(35, 32, 58, 0.08);
  transition: all .25s ease;
}
.card-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(35, 32, 58, 0.12);
}
.thumb-zoom {
  overflow: hidden;
}
.thumb-zoom img {
  transition: transform .5s ease;
}
.thumb-zoom:hover img {
  transform: scale(1.03);
}
.related-card-title {
  transition: color .2s ease;
}
.related-card:hover .related-card-title {
  color: var(--brand);
}

/* Article Typography */
.article-shell {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(35, 32, 58, 0.08);
}
.prose-article {
  max-width: 100%;
  font-size: 16.5px;
  line-height: 1.85;
  color: #3C3652;
  word-break: break-word;
}
.prose-article h1,
.prose-article h2,
.prose-article h3,
.prose-article h4 {
  color: var(--ink);
  line-height: 1.3;
}
.prose-article h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin: 2.2em 0 0.85em;
  padding-left: 18px;
  border-left: 4px solid var(--brand);
}
.prose-article h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 1.8em 0 0.6em;
}
.prose-article h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 1.5em 0 0.5em;
}
.prose-article p {
  margin: 0 0 1.6em;
}
.prose-article a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose-article blockquote {
  margin: 2rem 0;
  padding: 18px 22px;
  background: #F1E6DE;
  border-left: 4px solid var(--brand);
  border-radius: 0 14px 14px 0;
  color: #514B66;
}
.prose-article blockquote p {
  margin-bottom: 0;
}
.prose-article img {
  border-radius: 16px;
  margin: 1.8rem auto;
  box-shadow: 0 12px 30px rgba(35, 32, 58, 0.1);
}
.prose-article figcaption {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: -1.2rem;
  margin-bottom: 1.6rem;
}
.prose-article ul,
.prose-article ol {
  margin: 0 0 1.6em;
  padding-left: 1.5em;
}
.prose-article li {
  margin-bottom: 0.5em;
}
.prose-article strong {
  font-weight: 700;
  color: var(--ink);
}
.prose-article code {
  background: rgba(35, 32, 58, 0.06);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.9em;
}
.prose-article pre {
  background: var(--deep);
  color: #F1E6DE;
  border-radius: 16px;
  padding: 20px;
  overflow-x: auto;
  margin: 2rem 0;
}

/* Hero pattern */
.hero-pattern {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 8% 10%, rgba(233, 59, 122, 0.08) 0, transparent 34%),
    radial-gradient(circle at 92% 20%, rgba(14, 156, 146, 0.08) 0, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(246, 189, 67, 0.1) 0, transparent 36%);
}
.dot-grid {
  background-image: radial-gradient(rgba(35, 32, 58, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Footer */
.footer-link {
  display: flex;
  align-items: center;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: all .2s ease;
}
.footer-link i {
  margin-right: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: margin .2s ease;
}
.footer-link:hover {
  color: #fff;
}
.footer-link:hover i {
  margin-right: 10px;
  color: var(--brand);
}

/* Mobile menu */
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: all .2s ease;
}
.mobile-menu-nav a:hover {
  background: rgba(233, 59, 122, 0.08);
  color: var(--brand);
}

/* roulang page: category1 */
:root {
    --paper: #F6F1EB;
    --surface: #FFFFFF;
    --ink: #23203A;
    --muted: #6D667F;
    --line: #E7DFD5;
    --brand: #E93B7A;
    --brand-dark: #C82B68;
    --teal: #0E9C92;
    --amber: #F6BD43;
    --deep: #241F38;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  img {
    max-width: 100%;
    display: block;
  }
  button,
  input {
    font: inherit;
  }
  ::selection {
    background: rgba(233, 59, 122, 0.18);
  }

  .wrap {
    margin-inline: auto;
    width: min(100% - 2rem, 1200px);
  }
  @media (min-width: 768px) {
    .wrap {
      width: min(100% - 3rem, 1200px);
    }
  }

  .btn-primary,
  .btn-outline,
  .btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 999px;
    font-weight: 600;
    padding: .78rem 1.5rem;
    font-size: .95rem;
    line-height: 1.2;
    transition: all .22s ease;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--brand);
    color: #fff;
    border: 1px solid var(--brand);
    box-shadow: 0 10px 25px rgba(233, 59, 122, 0.16);
  }
  .btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(200, 43, 104, 0.18);
  }
  .btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: var(--ink);
    border: 1px solid var(--line);
  }
  .btn-outline:hover {
    color: var(--brand);
    border-color: var(--brand);
    background: #fff;
    transform: translateY(-2px);
  }
  .btn-white {
    background: #fff;
    color: var(--ink);
    border: 1px solid #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  }
  .btn-white:hover {
    background: var(--amber);
    border-color: var(--amber);
    transform: translateY(-2px);
  }
  .btn-sm {
    padding: .56rem 1.05rem;
    font-size: .85rem;
  }
  .btn-primary:active,
  .btn-outline:active,
  .btn-white:active {
    transform: translateY(1px);
    box-shadow: none;
  }
  .btn-focus:focus-visible {
    outline: 3px solid rgba(14, 156, 146, 0.45);
    outline-offset: 3px;
  }

  .pill-active {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 20px rgba(233, 59, 122, 0.18);
  }
  .pill-active:hover {
    color: #fff;
  }

  .badge-brand,
  .badge-teal,
  .badge-amber,
  .badge-ghost {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .76rem;
    letter-spacing: .02em;
    padding: .28rem .78rem;
    white-space: nowrap;
  }
  .badge-brand {
    background: var(--brand);
    color: #fff;
  }
  .badge-teal {
    background: rgba(14, 156, 146, 0.12);
    color: var(--teal);
  }
  .badge-amber {
    background: var(--amber);
    color: #5a3f00;
  }
  .badge-ghost {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--brand);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .6rem;
  }
  .section-kicker::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 4px;
    background: var(--brand);
  }

  .card-lift {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .card-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow, 0 16px 38px rgba(35, 32, 58, 0.1));
  }

  .hero-cat1 {
    position: relative;
    background:
      linear-gradient(180deg, rgba(36, 31, 56, 0.68), rgba(36, 31, 56, 0.86)),
      url('/assets/images/backpic/back-2.webp') center center / cover no-repeat;
    color: #fff;
  }
  .hero-decor {
    position: absolute;
    right: -5vw;
    top: -4vh;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(14, 156, 146, 0.28), transparent 70%);
    pointer-events: none;
  }
  .hero-decor2 {
    position: absolute;
    left: -80px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(233, 59, 122, 0.28), transparent 70%);
    pointer-events: none;
  }

  .nav-links-wrap::-webkit-scrollbar {
    display: none;
  }
  .nav-links-wrap {
    scrollbar-width: none;
  }

  .input-search {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    padding: .65rem 1.1rem .65rem 2.5rem;
    font-size: .88rem;
    transition: all .2s ease;
    outline: none;
  }
  .input-search:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(233, 59, 122, 0.1);
  }
  .input-search::placeholder {
    color: #a8a0b3;
  }

  .list-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.05rem 1.25rem;
    transition: all .22s ease;
  }
  .list-row:hover {
    background: #fff7fa;
  }
  .list-row:hover .row-arrow {
    color: var(--brand);
    transform: translateX(4px);
  }
  .row-date {
    min-width: 5.4rem;
    color: var(--teal);
    font-weight: 700;
    font-size: .88rem;
  }
  .row-arrow {
    color: #c9c1cf;
    transition: all .2s ease;
  }

  .faq-item {
    background: #fff;
    border: 1px solid rgba(231, 223, 213, 0.8);
    border-radius: 1.25rem;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 6px 18px rgba(35, 32, 58, 0.03);
    transition: border-color .25s ease, box-shadow .25s ease;
  }
  .faq-item:hover {
    border-color: rgba(233, 59, 122, 0.35);
  }
  .faq-item[open] {
    box-shadow: 0 10px 30px rgba(35, 32, 58, 0.07);
  }
  .faq-item summary {
    list-style: none;
    position: relative;
    padding-right: 2.6rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .7rem;
  }
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  .faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--paper);
    color: var(--brand);
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform .3s ease, background .3s ease, color .3s ease;
  }
  .faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    background: var(--brand);
    color: #fff;
  }

  .footer-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: .88rem;
    padding: .28rem 0;
    transition: all .2s ease;
  }
  .footer-link:hover {
    color: #fff;
    transform: translateX(3px);
  }

  .nav-link-base {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .52rem 1rem;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    transition: all .18s ease;
  }
  .nav-link-base:hover {
    color: var(--brand);
    background: rgba(233, 59, 122, 0.06);
  }
  .nav-link-lg {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: .95rem;
    font-weight: 500;
    padding: .8rem 1rem;
    border-radius: 1rem;
    transition: all .18s ease;
  }
  .nav-link-lg:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }

  .timeline-panel {
    position: relative;
  }
  .timeline-panel::after {
    content: "";
    position: absolute;
    left: 2.2rem;
    right: 2.2rem;
    top: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    z-index: 0;
  }
  @media (max-width: 767px) {
    .timeline-panel::after {
      display: none;
    }
  }

  .dot-node {
    position: relative;
    z-index: 1;
  }
  .dot-node::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--teal);
    transform: translateX(-50%);
  }

  .placeholder-gradient {
    background: linear-gradient(135deg, #e8e0d8 0%, #f7efe8 100%);
  }

  @media (max-width: 640px) {
    .list-row {
      flex-wrap: wrap;
    }
    .row-date {
      min-width: 4.8rem;
    }
  }

/* roulang page: category2 */
:root {
  --paper: #F6F1EB;
  --surface: #FFFFFF;
  --ink: #23203A;
  --muted: #6D667F;
  --line: #E7DFD5;
  --brand: #E93B7A;
  --brand-dark: #C82B68;
  --teal: #0E9C92;
  --amber: #F6BD43;
  --deep: #241F38;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.75;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

::selection {
  background: var(--brand);
  color: #fff;
}

a, button, input, summary {
  -webkit-tap-highlight-color: transparent;
}

button, input, summary {
  outline: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(233, 59, 122, 0.4);
  outline-offset: 2px;
}

.desktop-second-row {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-second-row {
    display: block;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(35, 32, 58, 0.04);
  }
}

.pill-active {
  background: var(--brand);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(200, 43, 104, 0.25);
}

.pill-active i {
  color: rgba(255, 255, 255, 0.92);
}

.input-search {
  width: 100%;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(35, 32, 58, 0.06);
  padding: 0.7rem 1rem 0.7rem 2.6rem;
  color: var(--ink);
  font-size: 0.875rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.input-search:hover {
  border-color: rgba(233, 59, 122, 0.35);
}

.input-search:focus {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(233, 59, 122, 0.12);
}

.input-search::placeholder {
  color: var(--muted);
}

.btn-primary,
.btn-outline,
.btn-paper,
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s, color .2s;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  box-shadow: 0 12px 26px rgba(200, 43, 104, 0.22);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(200, 43, 104, 0.26);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(35, 32, 58, 0.08);
}

.btn-paper {
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
}

.btn-paper:hover {
  background: var(--amber);
  color: var(--deep);
  border-color: var(--amber);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transform: translateY(-2px);
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(233, 59, 122, 0.1);
  color: var(--brand);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.badge-brand {
  background: var(--brand);
  color: #fff;
}

.badge-teal {
  background: #DCEEEC;
  color: var(--teal);
}

.badge-amber {
  background: #FFF0C2;
  color: #9A6B00;
}

.badge-line {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-surface {
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(35, 32, 58, 0.08);
  border-radius: 1.5rem;
  transition: transform .25s, box-shadow .25s;
}

.card-surface:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(35, 32, 58, 0.14);
}

.footer-link {
  display: block;
  padding: 0.44rem 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.87rem;
  text-decoration: none;
  transition: color .2s, transform .2s;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(3px);
}

.media-cover {
  object-fit: cover;
  width: 100%;
  display: block;
}

.page-hero {
  background-image: linear-gradient(120deg, rgba(36, 31, 56, 0.96) 0%, rgba(36, 31, 56, 0.82) 45%, rgba(233, 59, 122, 0.35) 100%), url('/assets/images/backpic/back-1.png');
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.21) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.4;
}

.notice-strip {
  background: #FFF4D6;
  border: 1px solid #F7D98B;
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
}

.gift-visual {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}

.status-line li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(246, 241, 235, 0.82);
  margin-bottom: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #fff;
  padding: 0.9rem 1.2rem;
  transition: border-color .25s, box-shadow .25s;
}

details[open] {
  border-color: rgba(233, 59, 122, 0.35);
  box-shadow: 0 12px 30px rgba(35, 32, 58, 0.06);
}

details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
}

details summary::-webkit-details-marker {
  display: none;
}

.plus {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(233, 59, 122, 0.1);
  color: var(--brand);
  font-style: normal;
  flex-shrink: 0;
  transition: transform .3s ease;
  margin-top: 2px;
}

.plus::before {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
}

details[open] .plus {
  transform: rotate(45deg);
}

details p {
  margin: 0.75rem 0 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.gift-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(35, 32, 58, 0.08);
  transition: transform .25s, box-shadow .3s;
}

.gift-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(35, 32, 58, 0.15);
}

.gift-thumb {
  height: 130px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.gift-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  font-size: 0.83rem;
}

.gift-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
}

.gift-action {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.small-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  background: rgba(233, 59, 122, 0.1);
  color: var(--brand);
  font-size: 1rem;
}

.stat-unit {
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(35, 32, 58, 0.08);
}

.stat-unit .stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: rgba(14, 156, 146, 0.14);
  color: var(--teal);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.vertical-list-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: 1px dashed var(--line);
  padding: 1.1rem 0;
}

.vertical-list-item:last-child {
  border-bottom: none;
}

@media (max-width: 640px) {
  .btn-primary,
  .btn-outline,
  .btn-paper,
  .btn-ghost-light {
    padding: 0.72rem 1.2rem;
    font-size: 0.9rem;
  }
}
