/* roulang page: index */
:root {
      --bg: #FAF6EF;
      --bg-soft: #FFFDF8;
      --surface: #FFFFFF;
      --surface-warm: #FFF4E6;
      --surface-muted: #F7EFE4;
      --text: #15110D;
      --text-soft: rgba(21, 17, 13, .68);
      --muted: rgba(21, 17, 13, .52);
      --dark: #211A16;
      --dark-2: #31251F;
      --primary: #E94B35;
      --primary-dark: #D83D29;
      --accent: #FFB44C;
      --accent-soft: rgba(255, 180, 76, .18);
      --border: rgba(33, 26, 22, .12);
      --border-strong: rgba(33, 26, 22, .2);
      --success: #2F7A4F;
      --success-bg: #EDF8EF;
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --shadow: 0 18px 50px rgba(33, 26, 22, .08);
      --shadow-red: 0 10px 28px rgba(233, 75, 53, .14);
      --transition: all .24s ease;
      --container: 1240px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: PingFang SC, Microsoft YaHei, Noto Sans SC, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(255, 180, 76, .18), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(233, 75, 53, .12), transparent 30%),
        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 48%, #FFFDF8 100%);
      line-height: 1.75;
      min-width: 320px;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    a:hover {
      color: var(--primary);
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, select, textarea {
      font-family: inherit;
    }

    ::selection {
      background: rgba(233, 75, 53, .18);
      color: var(--text);
    }

    .site-container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 96px 0;
      position: relative;
    }

    .section-tight {
      padding: 72px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 253, 248, .72);
      color: var(--text);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 5px rgba(233, 75, 53, .12);
    }

    .section-title {
      margin: 16px 0 14px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.16;
      font-weight: 900;
      letter-spacing: -.04em;
    }

    .section-desc {
      max-width: 760px;
      margin: 0;
      color: var(--text-soft);
      font-size: 17px;
      line-height: 1.85;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 253, 248, .96);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 10px 30px rgba(33, 26, 22, .04);
    }

    .navbar {
      min-height: 78px;
      padding: 0;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--text);
      max-width: 360px;
    }

    .brand-icon {
      position: relative;
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: var(--dark);
      display: grid;
      place-items: center;
      box-shadow: 0 10px 24px rgba(33, 26, 22, .16);
      flex: 0 0 auto;
    }

    .brand-icon span {
      width: 18px;
      height: 18px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3px;
      transform: rotate(8deg);
    }

    .brand-icon i {
      display: block;
      border-radius: 4px;
      background: var(--accent);
    }

    .brand-icon i:nth-child(2),
    .brand-icon i:nth-child(3) {
      background: var(--primary);
    }

    .brand-text {
      font-size: 18px;
      line-height: 1.15;
      letter-spacing: -.03em;
    }

    .nav-pills-wrap {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: 18px;
    }

    .navbar .nav-link {
      border-radius: 999px;
      padding: 9px 15px !important;
      color: rgba(21, 17, 13, .72);
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
    }

    .navbar .nav-link:hover {
      background: var(--surface-warm);
      color: var(--text);
    }

    .navbar .nav-link.active {
      color: var(--bg-soft);
      background: var(--dark);
    }

    .nav-tools {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
    }

    .nav-search {
      position: relative;
      width: 250px;
    }

    .nav-search input {
      width: 100%;
      height: 42px;
      border: 1px solid var(--border);
      background: var(--surface);
      border-radius: 999px;
      padding: 0 16px 0 42px;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: var(--transition);
    }

    .nav-search input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(233, 75, 53, .1);
    }

    .nav-search::before {
      content: "⌕";
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-52%);
      color: var(--muted);
      font-size: 20px;
      line-height: 1;
      pointer-events: none;
    }

    .navbar-toggler {
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 9px 11px;
      box-shadow: none !important;
      background: var(--surface);
    }

    .btn-rou {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 12px 22px;
      border: 1px solid transparent;
      font-weight: 800;
      line-height: 1;
      min-height: 44px;
      transition: var(--transition);
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-rou:focus-visible,
    .form-control:focus,
    .form-select:focus,
    .form-check-input:focus {
      outline: none;
      box-shadow: 0 0 0 4px rgba(233, 75, 53, .12);
      border-color: var(--primary);
    }

    .btn-primary-rou {
      background: var(--primary);
      color: #FFFDF8;
      box-shadow: var(--shadow-red);
    }

    .btn-primary-rou:hover {
      background: var(--accent);
      color: var(--dark);
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(255, 180, 76, .22);
    }

    .btn-secondary-rou {
      background: #FFFDF8;
      color: var(--text);
      border-color: var(--border);
    }

    .btn-secondary-rou:hover {
      background: var(--surface-warm);
      border-color: rgba(233, 75, 53, .28);
      transform: translateY(-2px);
      color: var(--text);
    }

    .btn-dark-rou {
      background: var(--dark);
      color: #FFFDF8;
    }

    .btn-dark-rou:hover {
      background: var(--primary);
      color: #FFFDF8;
      transform: translateY(-2px);
    }

    .hero {
      padding: 72px 0 52px;
      overflow: hidden;
    }

    .hero-poster {
      position: relative;
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 24px;
      border-radius: 38px;
      background:
        linear-gradient(90deg, rgba(255, 253, 248, .94), rgba(255, 244, 230, .82)),
        repeating-linear-gradient(90deg, rgba(33, 26, 22, .05) 0 1px, transparent 1px 48px),
        repeating-linear-gradient(0deg, rgba(33, 26, 22, .045) 0 1px, transparent 1px 48px);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      padding: 42px;
      isolation: isolate;
    }

    .hero-poster::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: var(--primary);
      opacity: .11;
      right: -80px;
      top: -90px;
      z-index: -1;
      animation: breathe 6s ease-in-out infinite;
    }

    @keyframes breathe {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.07); }
    }

    .hero-copy {
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .hero-sticker {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 74px;
      height: 74px;
      border-radius: 50%;
      background: var(--primary);
      color: #FFFDF8;
      font-weight: 900;
      line-height: 1.15;
      text-align: center;
      box-shadow: var(--shadow-red);
      transform: rotate(-8deg);
      flex: 0 0 auto;
    }

    .hero h1 {
      margin: 0;
      max-width: 740px;
      font-size: clamp(38px, 5.4vw, 66px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: -.055em;
    }

    .hero h1 .accent {
      color: var(--primary);
      text-shadow: 0 8px 22px rgba(233, 75, 53, .12);
    }

    .hero-intro {
      margin: 22px 0 0;
      max-width: 680px;
      color: var(--text-soft);
      font-size: 18px;
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .hero-data {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .data-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--border);
      font-size: 14px;
      color: var(--text-soft);
      font-weight: 700;
    }

    .data-chip strong {
      color: var(--primary);
      font-size: 18px;
      line-height: 1;
    }

    .entry-board {
      background: var(--dark);
      border-radius: 34px;
      padding: 22px;
      color: #FFFDF8;
      position: relative;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .entry-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(255, 180, 76, .18), transparent 34%),
        repeating-linear-gradient(0deg, rgba(255, 253, 248, .06) 0 1px, transparent 1px 34px);
      pointer-events: none;
    }

    .board-top,
    .board-bottom,
    .entry-grid {
      position: relative;
      z-index: 1;
    }

    .board-top {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .board-title {
      font-size: 26px;
      font-weight: 900;
      line-height: 1.2;
      margin: 0;
    }

    .countdown {
      text-align: right;
      min-width: 136px;
    }

    .countdown small {
      display: block;
      color: rgba(255, 253, 248, .62);
      font-size: 12px;
    }

    .time-boxes {
      display: flex;
      gap: 4px;
      justify-content: flex-end;
      margin-top: 6px;
    }

    .time-boxes span {
      display: grid;
      place-items: center;
      width: 32px;
      height: 30px;
      border-radius: 9px;
      background: var(--accent);
      color: var(--dark);
      font-weight: 900;
      font-size: 14px;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin: 18px 0;
    }

    .entry-card {
      position: relative;
      min-height: 145px;
      border-radius: 22px;
      padding: 18px;
      background: rgba(255, 253, 248, .08);
      border: 1px solid rgba(255, 253, 248, .16);
      transition: var(--transition);
    }

    .entry-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 180, 76, .62);
      background: rgba(255, 253, 248, .12);
    }

    .entry-card:nth-child(2) {
      margin-top: 26px;
      background: rgba(233, 75, 53, .22);
    }

    .entry-card:nth-child(3) {
      margin-top: -16px;
    }

    .entry-card .icon {
      width: 36px;
      height: 36px;
      border-radius: 13px;
      background: #FFFDF8;
      color: var(--primary);
      display: grid;
      place-items: center;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .entry-card h3 {
      margin: 0 0 8px;
      font-size: 19px;
      font-weight: 900;
    }

    .entry-card p {
      margin: 0;
      color: rgba(255, 253, 248, .7);
      font-size: 14px;
      line-height: 1.55;
    }

    .status-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      display: inline-flex;
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(255, 180, 76, .18);
      color: #FFE3B2;
      font-size: 12px;
      font-weight: 800;
    }

    .board-bottom {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      padding-top: 18px;
      border-top: 1px dashed rgba(255, 253, 248, .24);
    }

    .board-bottom span {
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(255, 253, 248, .1);
      color: rgba(255, 253, 248, .78);
      font-size: 13px;
      font-weight: 700;
    }

    .ticker {
      margin-top: 18px;
      overflow: hidden;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--surface);
    }

    .ticker-track {
      display: flex;
      gap: 10px;
      width: max-content;
      padding: 10px;
      animation: marquee 22s linear infinite;
    }

    .ticker span {
      display: inline-flex;
      align-items: center;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--surface-warm);
      color: var(--text-soft);
      font-size: 14px;
      font-weight: 800;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .tier-stage {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      align-items: end;
      margin-top: 36px;
    }

    .tier-card {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 26px;
      min-height: 260px;
      box-shadow: 0 14px 36px rgba(33, 26, 22, .05);
      transition: var(--transition);
      overflow: hidden;
    }

    .tier-card::before,
    .coupon-card::before {
      content: "";
      position: absolute;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--bg);
      top: 72px;
      left: -13px;
      border: 1px solid var(--border);
    }

    .tier-card::after,
    .coupon-card::after {
      content: "";
      position: absolute;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--bg);
      top: 72px;
      right: -13px;
      border: 1px solid var(--border);
    }

    .tier-card:hover {
      transform: translateY(-6px);
      border-color: rgba(233, 75, 53, .46);
      box-shadow: var(--shadow);
    }

    .tier-card.recommend {
      background: var(--primary);
      color: #FFFDF8;
      min-height: 336px;
      box-shadow: var(--shadow-red);
    }

    .tier-card:nth-child(2) { min-height: 292px; }
    .tier-card:nth-child(4) { min-height: 310px; background: var(--surface-warm); }

    .tier-no {
      font-size: 44px;
      line-height: 1;
      font-weight: 900;
      color: rgba(233, 75, 53, .22);
      margin-bottom: 24px;
    }

    .tier-card.recommend .tier-no {
      color: rgba(255, 253, 248, .3);
    }

    .tier-card h3 {
      font-size: 22px;
      font-weight: 900;
      margin: 0 0 12px;
    }

    .tier-card p {
      color: var(--text-soft);
      margin: 0 0 18px;
      font-size: 15px;
    }

    .tier-card.recommend p {
      color: rgba(255, 253, 248, .78);
    }

    .tier-list {
      list-style: none;
      padding: 18px 0 0;
      margin: 0;
      border-top: 1px dashed var(--border);
    }

    .tier-card.recommend .tier-list {
      border-color: rgba(255, 253, 248, .3);
    }

    .tier-list li {
      position: relative;
      padding-left: 22px;
      margin: 8px 0;
      font-size: 14px;
      font-weight: 700;
    }

    .tier-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--primary);
      font-weight: 900;
    }

    .tier-card.recommend .tier-list li::before {
      color: var(--accent);
    }

    .compare-wrap {
      margin-top: 36px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 32px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .compare-scroll {
      overflow-x: auto;
    }

    .compare-table {
      min-width: 880px;
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
    }

    .compare-table th,
    .compare-table td {
      padding: 22px 20px;
      border-bottom: 1px solid var(--border);
      vertical-align: middle;
      font-size: 15px;
    }

    .compare-table thead th {
      background: var(--dark);
      color: #FFFDF8;
      font-size: 16px;
      font-weight: 900;
      position: relative;
    }

    .compare-table thead th:first-child {
      width: 240px;
      border-top-left-radius: 32px;
    }

    .compare-table thead th:last-child {
      border-top-right-radius: 32px;
    }

    .compare-table tbody tr:last-child td {
      border-bottom: 0;
    }

    .compare-table tbody tr:hover td {
      background: #FFF8EE;
    }

    .plan-reco {
      display: inline-flex;
      margin-left: 8px;
      padding: 4px 8px;
      border-radius: 999px;
      background: var(--primary);
      color: #FFFDF8;
      font-size: 12px;
      vertical-align: middle;
    }

    .check {
      color: var(--success);
      font-weight: 900;
    }

    .weak {
      color: var(--muted);
    }

    .mini-btn {
      display: inline-flex;
      justify-content: center;
      padding: 9px 14px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--surface-warm);
      color: var(--text);
      font-weight: 800;
      font-size: 13px;
    }

    .mini-btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #FFFDF8;
      transform: translateY(-2px);
    }

    .limited-banner {
      position: relative;
      border-radius: 36px;
      background:
        radial-gradient(circle at 92% 18%, rgba(255, 180, 76, .28), transparent 26%),
        linear-gradient(135deg, var(--dark), var(--dark-2));
      color: #FFFDF8;
      padding: 38px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .limited-banner::before {
      content: "";
      position: absolute;
      inset: 16px;
      border: 1px solid rgba(255, 253, 248, .12);
      border-radius: 28px;
      pointer-events: none;
    }

    .limited-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 30px;
      align-items: center;
    }

    .limited-banner h2 {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.12;
      margin: 12px 0;
      font-weight: 900;
      letter-spacing: -.045em;
    }

    .limited-banner p {
      color: rgba(255, 253, 248, .74);
      margin: 0;
      max-width: 660px;
      font-size: 17px;
    }

    .coupon-stack {
      display: grid;
      gap: 12px;
    }

    .coupon-card {
      position: relative;
      background: #FFFDF8;
      color: var(--text);
      border-radius: 24px;
      padding: 18px 20px;
      border: 1px dashed rgba(33, 26, 22, .28);
      transition: var(--transition);
    }

    .coupon-card:hover {
      transform: translateX(-4px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, .15);
    }

    .coupon-card strong {
      display: block;
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .coupon-card span {
      color: var(--text-soft);
      font-size: 14px;
    }

    .limited-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .news-layout {
      margin-top: 34px;
      display: grid;
      grid-template-columns: 1.4fr .8fr;
      gap: 20px;
    }

    .news-list,
    .rank-card,
    .form-card,
    .receipt-card,
    .faq-note,
    .about-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: 0 14px 36px rgba(33, 26, 22, .05);
    }

    .news-list {
      padding: 12px;
    }

    .news-item {
      display: grid;
      grid-template-columns: 86px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: 22px;
      transition: var(--transition);
    }

    .news-item + .news-item {
      border-top: 1px dashed var(--border);
    }

    .news-item:hover {
      background: var(--surface-warm);
      transform: translateX(3px);
    }

    .news-date {
      color: var(--primary);
      font-weight: 900;
      line-height: 1.2;
    }

    .news-date small {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      margin-top: 4px;
    }

    .news-item h3 {
      margin: 0 0 5px;
      font-size: 18px;
      font-weight: 900;
    }

    .news-item p {
      margin: 0;
      color: var(--text-soft);
      font-size: 14px;
      line-height: 1.55;
    }

    .news-item .arrow {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--surface-muted);
      color: var(--text);
      font-weight: 900;
    }

    .rank-card {
      padding: 24px;
      background: var(--surface-warm);
    }

    .rank-card h3 {
      font-size: 22px;
      font-weight: 900;
      margin: 0 0 18px;
    }

    .rank-list {
      display: grid;
      gap: 12px;
    }

    .rank-row {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 12px;
      border-radius: 18px;
      background: rgba(255, 253, 248, .78);
      border: 1px solid rgba(33, 26, 22, .08);
    }

    .rank-row b {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: var(--dark);
      color: #FFFDF8;
      font-size: 13px;
    }

    .rank-row span {
      font-weight: 800;
      font-size: 14px;
    }

    .rank-row em {
      font-style: normal;
      color: var(--primary);
      font-weight: 900;
      font-size: 13px;
    }

    .form-zone {
      display: grid;
      grid-template-columns: 1fr .72fr;
      gap: 22px;
      margin-top: 36px;
      align-items: start;
    }

    .form-card {
      padding: 32px;
    }

    .form-label {
      font-weight: 800;
      color: var(--text);
      margin-bottom: 8px;
    }

    .form-control,
    .form-select {
      border-radius: 16px;
      border: 1px solid var(--border);
      background-color: #FFF9F0;
      min-height: 50px;
      color: var(--text);
      padding: 12px 15px;
      transition: var(--transition);
    }

    textarea.form-control {
      min-height: 118px;
      resize: vertical;
    }

    .form-control::placeholder {
      color: rgba(21, 17, 13, .38);
    }

    .form-check-input {
      border-color: var(--border-strong);
    }

    .form-check-input:checked {
      background-color: var(--primary);
      border-color: var(--primary);
    }

    .invalid-feedback {
      color: var(--primary);
      font-weight: 700;
      font-size: 13px;
    }

    .success-message {
      display: none;
      margin-top: 16px;
      padding: 14px 16px;
      border-radius: 18px;
      background: var(--success-bg);
      border: 1px solid rgba(47, 122, 79, .24);
      color: var(--success);
      font-weight: 800;
    }

    .receipt-card {
      padding: 26px;
      position: sticky;
      top: 104px;
      background:
        linear-gradient(180deg, #FFFFFF, #FFF8EE);
      overflow: hidden;
    }

    .receipt-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 18px;
      right: 18px;
      height: 10px;
      background: repeating-linear-gradient(90deg, transparent 0 12px, rgba(33, 26, 22, .12) 12px 22px);
      opacity: .7;
    }

    .receipt-card h3 {
      font-size: 24px;
      font-weight: 900;
      margin: 0 0 14px;
    }

    .receipt-list {
      list-style: none;
      margin: 22px 0;
      padding: 0;
      display: grid;
      gap: 13px;
    }

    .receipt-list li {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items: start;
      padding-bottom: 13px;
      border-bottom: 1px dashed var(--border);
      color: var(--text-soft);
      font-size: 15px;
    }

    .receipt-list b {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--dark);
      color: #FFFDF8;
      font-size: 13px;
    }

    .privacy-box {
      padding: 16px;
      border-radius: 20px;
      background: var(--surface-warm);
      color: var(--text-soft);
      font-size: 14px;
      line-height: 1.7;
      border: 1px solid rgba(233, 75, 53, .16);
    }

    .accordion {
      margin-top: 34px;
      display: grid;
      gap: 12px;
    }

    .accordion-item {
      border: 1px solid var(--border) !important;
      border-radius: 22px !important;
      overflow: hidden;
      background: var(--surface);
      box-shadow: 0 10px 26px rgba(33, 26, 22, .04);
    }

    .accordion-button {
      background: var(--surface) !important;
      color: var(--text) !important;
      font-weight: 900;
      font-size: 17px;
      padding: 20px 22px;
      box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
      background: var(--surface-warm) !important;
      color: var(--primary) !important;
    }

    .accordion-button::after {
      filter: sepia(1) saturate(3);
    }

    .accordion-body {
      color: var(--text-soft);
      padding: 0 22px 22px;
      line-height: 1.85;
    }

    .about-strip {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 22px;
      align-items: stretch;
    }

    .about-card {
      padding: 30px;
    }

    .about-card.dark {
      background: var(--dark);
      color: #FFFDF8;
    }

    .about-card.dark p {
      color: rgba(255, 253, 248, .74);
    }

    .about-card h2 {
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.16;
      font-weight: 900;
      margin: 0 0 14px;
      letter-spacing: -.035em;
    }

    .about-card p {
      margin: 0;
      color: var(--text-soft);
    }

    .promise-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .promise-item {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 253, 248, .09);
      border: 1px solid rgba(255, 253, 248, .13);
    }

    .promise-item strong {
      display: block;
      margin-bottom: 5px;
      color: var(--accent);
    }

    .promise-item span {
      color: rgba(255, 253, 248, .68);
      font-size: 14px;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 26px;
    }

    .category-link-card {
      position: relative;
      padding: 24px;
      border-radius: 26px;
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: 0 12px 30px rgba(33, 26, 22, .05);
      transition: var(--transition);
      overflow: hidden;
    }

    .category-link-card::after {
      content: "→";
      position: absolute;
      right: 20px;
      top: 20px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--surface-warm);
      font-weight: 900;
    }

    .category-link-card:hover {
      transform: translateY(-5px);
      border-color: rgba(233, 75, 53, .4);
      box-shadow: var(--shadow);
      color: var(--text);
    }

    .category-link-card h3 {
      font-size: 22px;
      font-weight: 900;
      margin: 0 0 10px;
    }

    .category-link-card p {
      max-width: 85%;
      margin: 0;
      color: var(--text-soft);
      font-size: 15px;
    }

    .site-footer {
      background: var(--dark);
      color: #FFFDF8;
      padding: 64px 0 28px;
      margin-top: 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .8fr .8fr .8fr;
      gap: 30px;
      margin-bottom: 36px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      font-size: 20px;
      margin-bottom: 16px;
    }

    .footer-brand .brand-icon {
      background: #FFFDF8;
      box-shadow: none;
    }

    .footer-brand .brand-icon i {
      background: var(--primary);
    }

    .footer-brand .brand-icon i:nth-child(2),
    .footer-brand .brand-icon i:nth-child(3) {
      background: var(--accent);
    }

    .footer-desc {
      color: rgba(255, 253, 248, .66);
      max-width: 420px;
      margin: 0;
    }

    .footer-col h3 {
      font-size: 16px;
      font-weight: 900;
      margin: 0 0 14px;
      color: var(--accent);
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 9px;
    }

    .footer-col a,
    .footer-col li {
      color: rgba(255, 253, 248, .66);
      font-size: 14px;
    }

    .footer-col a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 253, 248, .12);
      color: rgba(255, 253, 248, .52);
      font-size: 13px;
    }

    .mobile-sticky-cta {
      display: none;
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 999;
      padding: 10px;
      border-radius: 999px;
      background: rgba(33, 26, 22, .92);
      box-shadow: 0 14px 38px rgba(0, 0, 0, .22);
    }

    .mobile-sticky-cta a {
      width: 100%;
    }

    @media (max-width: 1199px) {
      .nav-search {
        width: 190px;
      }

      .hero-poster {
        grid-template-columns: 1fr;
      }

      .entry-board {
        min-height: auto;
      }
    }

    @media (max-width: 991px) {
      .navbar {
        padding: 12px 0;
        min-height: auto;
      }

      .navbar-collapse {
        padding: 16px 0 8px;
      }

      .nav-pills-wrap {
        margin-left: 0;
        align-items: stretch;
        gap: 8px;
      }

      .navbar-nav {
        gap: 8px;
      }

      .nav-tools {
        margin-left: 0;
        margin-top: 14px;
        flex-wrap: wrap;
        align-items: stretch;
      }

      .nav-search {
        width: 100%;
      }

      .tier-stage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
      }

      .tier-card,
      .tier-card.recommend,
      .tier-card:nth-child(2),
      .tier-card:nth-child(4) {
        min-height: 0;
      }

      .limited-grid,
      .news-layout,
      .form-zone,
      .about-strip,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .receipt-card {
        position: static;
      }

      .footer-grid {
        gap: 24px;
      }
    }

    @media (max-width: 767px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .section {
        padding: 58px 0;
      }

      .section-tight {
        padding: 48px 0;
      }

      .brand-text {
        font-size: 15px;
        max-width: 210px;
      }

      .hero {
        padding: 38px 0 34px;
      }

      .hero-poster {
        border-radius: 28px;
        padding: 24px;
      }

      .hero-sticker {
        width: 62px;
        height: 62px;
        font-size: 13px;
      }

      .hero-intro {
        font-size: 16px;
      }

      .hero-actions .btn-rou {
        width: 100%;
      }

      .entry-board {
        border-radius: 26px;
        padding: 18px;
      }

      .entry-grid,
      .tier-stage,
      .category-grid,
      .promise-grid {
        grid-template-columns: 1fr;
      }

      .entry-card:nth-child(2),
      .entry-card:nth-child(3) {
        margin-top: 0;
      }

      .board-top {
        flex-direction: column;
      }

      .countdown {
        text-align: left;
      }

      .time-boxes {
        justify-content: flex-start;
      }

      .limited-banner {
        border-radius: 28px;
        padding: 26px;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .news-item .arrow {
        display: none;
      }

      .form-card,
      .receipt-card,
      .about-card {
        padding: 22px;
        border-radius: 24px;
      }

      .footer-bottom {
        padding-bottom: 70px;
      }

      .mobile-sticky-cta {
        display: block;
      }
    }

    @media (max-width: 420px) {
      .brand-icon {
        width: 34px;
        height: 34px;
        border-radius: 12px;
      }

      .brand-text {
        font-size: 14px;
        max-width: 176px;
      }

      .hero h1 {
        font-size: 36px;
      }

      .btn-rou {
        padding-left: 18px;
        padding-right: 18px;
      }

      .tier-card,
      .category-link-card {
        padding: 20px;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#FAF6EF;
      --bg-soft:#FFFDF8;
      --card:#FFFFFF;
      --card-warm:#FFF4E6;
      --card-sand:#F7EFE4;
      --text:#15110D;
      --muted:#70665E;
      --muted-2:#9B8E83;
      --dark:#211A16;
      --primary:#E94B35;
      --primary-deep:#D83E2A;
      --accent:#FFB44C;
      --line:rgba(33,26,22,.12);
      --line-strong:rgba(33,26,22,.2);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --shadow:0 18px 50px rgba(33,26,22,.08);
      --shadow-red:0 10px 28px rgba(233,75,53,.14);
      --focus:0 0 0 4px rgba(233,75,53,.18);
      --container:1220px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at 6% 6%, rgba(255,180,76,.14), transparent 34%),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
      font-family:PingFang SC, Microsoft YaHei, Noto Sans SC, Arial, sans-serif;
      line-height:1.75;
      overflow-x:hidden;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    a:hover{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(233,75,53,.18);color:var(--text)}

    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,253,248,.96);
      border-bottom:1px solid var(--line);
      box-shadow:0 8px 26px rgba(33,26,22,.04);
    }
    .navbar{
      min-height:78px;
      padding:0;
    }
    .navbar .site-container{
      display:flex;
      align-items:center;
      gap:22px;
    }
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      font-weight:900;
      color:var(--text);
      letter-spacing:-.02em;
    }
    .brand-mark:hover{color:var(--text)}
    .brand-icon{
      width:42px;
      height:42px;
      border-radius:15px;
      background:var(--primary);
      display:grid;
      place-items:center;
      box-shadow:var(--shadow-red);
      position:relative;
      flex:0 0 auto;
    }
    .brand-icon:after{
      content:"";
      position:absolute;
      inset:7px;
      border:1px solid rgba(255,253,248,.5);
      border-radius:11px;
    }
    .brand-icon span{
      display:grid;
      grid-template-columns:repeat(2,7px);
      gap:4px;
      transform:rotate(-6deg);
    }
    .brand-icon i{
      width:7px;
      height:7px;
      border-radius:3px;
      background:#FFFDF8;
      display:block;
    }
    .brand-text{
      font-size:18px;
      line-height:1.15;
    }

    .navbar-toggler{
      width:46px;
      height:46px;
      border:1px solid var(--line);
      border-radius:16px;
      background:var(--card-warm);
      box-shadow:none!important;
    }
    .navbar-toggler:focus{box-shadow:var(--focus)!important}
    .navbar-toggler-icon{
      width:1.25em;
      height:1.25em;
      background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2821,17,13,.86%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
    }
    .navbar-collapse{
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .nav-pills-wrap{
      display:flex;
      align-items:center;
      gap:8px;
      margin-inline:auto;
    }
    .navbar-nav .nav-link{
      color:var(--muted);
      border-radius:999px;
      padding:9px 15px;
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
    }
    .navbar-nav .nav-link:hover{
      color:var(--text);
      background:var(--card-warm);
    }
    .navbar-nav .nav-link.active{
      color:#FFFDF8;
      background:var(--dark);
    }
    .nav-tools{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:auto;
    }
    .nav-search{
      position:relative;
      width:250px;
    }
    .nav-search:before{
      content:"⌕";
      position:absolute;
      left:16px;
      top:50%;
      transform:translateY(-50%);
      color:var(--muted-2);
      font-weight:900;
    }
    .nav-search input{
      width:100%;
      height:44px;
      border:1px solid var(--line);
      border-radius:999px;
      background:var(--card-warm);
      padding:0 16px 0 38px;
      color:var(--text);
      outline:none;
      transition:.22s ease;
    }
    .nav-search input:focus{
      background:#fff;
      border-color:var(--primary);
      box-shadow:var(--focus);
    }

    .btn-rou{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:12px 22px;
      border:1px solid transparent;
      font-weight:900;
      line-height:1;
      white-space:nowrap;
      cursor:pointer;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
    }
    .btn-rou:hover{
      transform:translateY(-2px);
      box-shadow:0 14px 30px rgba(33,26,22,.12);
    }
    .btn-rou:focus-visible{
      outline:none;
      box-shadow:var(--focus);
    }
    .btn-primary-rou{
      background:var(--primary);
      color:#FFFDF8;
      box-shadow:var(--shadow-red);
    }
    .btn-primary-rou:hover{
      background:var(--accent);
      color:var(--dark);
    }
    .btn-secondary-rou{
      background:#fff;
      color:var(--text);
      border-color:var(--line);
    }
    .btn-secondary-rou:hover{
      background:var(--card-warm);
      color:var(--text);
      border-color:rgba(233,75,53,.24);
    }
    .btn-dark-rou{
      background:var(--dark);
      color:#FFFDF8;
      border-color:var(--dark);
    }
    .btn-dark-rou:hover{
      background:#352A23;
      color:#FFFDF8;
    }

    main{position:relative}
    .section{
      padding:92px 0;
    }
    .section-tight{
      padding:64px 0;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border:1px solid var(--line);
      border-radius:999px;
      background:#fff;
      color:var(--muted);
      padding:7px 12px;
      font-size:13px;
      font-weight:900;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(233,75,53,.12);
    }
    .section-title{
      margin:16px 0 12px;
      font-size:clamp(28px,4vw,42px);
      line-height:1.16;
      font-weight:900;
      letter-spacing:-.045em;
    }
    .section-desc{
      max-width:760px;
      color:var(--muted);
      font-size:17px;
      margin:0;
    }

    .category-hero{
      padding:46px 0 32px;
    }
    .breadcrumb-rou{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:0 0 18px;
      padding:0;
      list-style:none;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
    }
    .breadcrumb-rou li:not(:last-child)::after{
      content:"/";
      margin-left:8px;
      color:var(--muted-2);
    }
    .hero-board{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      background:var(--dark);
      color:#FFFDF8;
      box-shadow:var(--shadow);
    }
    .hero-board:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(255,180,76,.16), transparent 42%),
        radial-gradient(circle at 85% 18%, rgba(233,75,53,.35), transparent 32%),
        repeating-linear-gradient(90deg, rgba(255,253,248,.05) 0 1px, transparent 1px 52px);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(360px,.72fr);
      gap:30px;
      padding:38px;
      align-items:stretch;
    }
    .hero-copy h1{
      margin:14px 0 16px;
      font-size:clamp(36px,5vw,58px);
      line-height:1.08;
      font-weight:900;
      letter-spacing:-.055em;
      max-width:760px;
    }
    .hero-copy p{
      margin:0;
      max-width:700px;
      color:rgba(255,253,248,.78);
      font-size:17px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .hero-actions .btn-secondary-rou{
      background:rgba(255,253,248,.08);
      color:#FFFDF8;
      border-color:rgba(255,253,248,.2);
    }
    .hero-actions .btn-secondary-rou:hover{
      background:rgba(255,180,76,.16);
      color:#FFFDF8;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:30px;
    }
    .hero-tags span{
      display:inline-flex;
      border:1px dashed rgba(255,253,248,.28);
      border-radius:999px;
      padding:8px 12px;
      font-size:13px;
      color:rgba(255,253,248,.76);
    }
    .rank-panel{
      background:#FFFDF8;
      color:var(--text);
      border-radius:26px;
      padding:18px;
      align-self:stretch;
      box-shadow:0 20px 50px rgba(0,0,0,.18);
    }
    .rank-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:8px 8px 14px;
      border-bottom:1px dashed var(--line-strong);
    }
    .rank-head strong{
      font-size:18px;
      font-weight:900;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:var(--card-warm);
      color:var(--primary-deep);
      font-size:12px;
      font-weight:900;
    }
    .rank-list{
      display:grid;
      gap:10px;
      margin-top:14px;
    }
    .rank-item{
      display:grid;
      grid-template-columns:36px 1fr auto;
      gap:12px;
      align-items:center;
      padding:13px;
      border:1px solid var(--line);
      border-radius:18px;
      background:#fff;
      transition:.22s ease;
    }
    .rank-item:hover{
      transform:translateX(3px);
      border-color:rgba(233,75,53,.28);
      background:linear-gradient(90deg,#fff,var(--card-warm));
    }
    .rank-num{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:var(--dark);
      color:#FFFDF8;
      font-weight:900;
    }
    .rank-item:nth-child(2) .rank-num{background:var(--primary)}
    .rank-item:nth-child(3) .rank-num{background:var(--accent);color:var(--dark)}
    .rank-title{
      display:block;
      font-weight:900;
      line-height:1.25;
    }
    .rank-note{
      display:block;
      font-size:12px;
      color:var(--muted);
      margin-top:2px;
    }

    .filter-bar{
      margin-top:22px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      padding:16px;
      box-shadow:0 12px 34px rgba(33,26,22,.05);
    }
    .filter-row{
      display:grid;
      grid-template-columns:1fr auto;
      gap:14px;
      align-items:center;
    }
    .filter-search{
      position:relative;
    }
    .filter-search input{
      width:100%;
      min-height:52px;
      border:1px solid var(--line);
      border-radius:999px;
      background:var(--card-warm);
      padding:0 20px 0 48px;
      outline:none;
      transition:.22s ease;
    }
    .filter-search:before{
      content:"⌕";
      position:absolute;
      left:20px;
      top:50%;
      transform:translateY(-50%);
      color:var(--muted-2);
      font-weight:900;
    }
    .filter-search input:focus{
      border-color:var(--primary);
      background:#fff;
      box-shadow:var(--focus);
    }
    .sort-select{
      min-height:52px;
      border-radius:999px;
      border:1px solid var(--line);
      background:var(--card-warm);
      padding:0 18px;
      color:var(--text);
      font-weight:800;
      outline:none;
    }
    .filter-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
    }
    .filter-chip{
      border:1px solid var(--line);
      background:#fff;
      color:var(--muted);
      border-radius:999px;
      padding:9px 13px;
      font-size:14px;
      font-weight:900;
      cursor:pointer;
      transition:.22s ease;
    }
    .filter-chip:hover,
    .filter-chip.active{
      background:var(--accent);
      color:var(--dark);
      border-color:var(--accent);
      transform:translateY(-1px);
    }

    .content-layout{
      display:grid;
      grid-template-columns:300px minmax(0,1fr);
      gap:26px;
      align-items:start;
    }
    .sidebar{
      position:sticky;
      top:104px;
      display:grid;
      gap:16px;
    }
    .receipt-card,
    .side-card,
    .content-card,
    .notice-card,
    .consult-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
    }
    .receipt-card{
      padding:22px;
      overflow:hidden;
      position:relative;
    }
    .receipt-card:before,
    .receipt-card:after{
      content:"";
      position:absolute;
      width:26px;
      height:26px;
      border-radius:50%;
      background:var(--bg);
      top:84px;
    }
    .receipt-card:before{left:-13px}
    .receipt-card:after{right:-13px}
    .receipt-title{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
      padding-bottom:16px;
      border-bottom:1px dashed var(--line-strong);
    }
    .receipt-title strong{
      display:block;
      font-size:20px;
      line-height:1.25;
      font-weight:900;
    }
    .receipt-list{
      list-style:none;
      padding:16px 0 0;
      margin:0;
      display:grid;
      gap:12px;
    }
    .receipt-list li{
      display:flex;
      justify-content:space-between;
      gap:12px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
    }
    .receipt-list b{color:var(--text)}
    .side-card{
      padding:22px;
    }
    .side-card h2,
    .side-card h3{
      font-size:20px;
      font-weight:900;
      margin:0 0 12px;
    }
    .side-card p{
      color:var(--muted);
      margin:0 0 14px;
      font-size:14px;
    }
    .mini-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .mini-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
      font-size:14px;
    }
    .mini-list li:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary);
      margin-top:9px;
      flex:0 0 auto;
    }

    .cards-topline{
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:flex-end;
      margin-bottom:18px;
    }
    .cards-topline h2{
      font-size:30px;
      line-height:1.15;
      font-weight:900;
      margin:0;
      letter-spacing:-.03em;
    }
    .cards-topline p{
      color:var(--muted);
      margin:6px 0 0;
    }
    .index-strip{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .index-strip span{
      border-radius:999px;
      background:var(--card-warm);
      color:var(--muted);
      padding:7px 10px;
      font-size:12px;
      font-weight:900;
    }
    .content-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:16px;
    }
    .content-card{
      padding:24px;
      position:relative;
      overflow:hidden;
      transition:.22s ease;
    }
    .content-card.wide{
      grid-column:1 / -1;
      display:grid;
      grid-template-columns:1fr auto;
      gap:22px;
      align-items:center;
    }
    .content-card:before{
      content:"";
      position:absolute;
      right:-22px;
      top:-22px;
      width:82px;
      height:82px;
      border-radius:50%;
      background:rgba(255,180,76,.16);
      transition:.22s ease;
    }
    .content-card:hover{
      transform:translateY(-4px);
      border-color:rgba(233,75,53,.3);
      box-shadow:0 22px 55px rgba(33,26,22,.1);
    }
    .content-card:hover:before{
      transform:translate(-8px,8px);
      background:rgba(233,75,53,.12);
    }
    .card-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:14px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:6px 10px;
      background:var(--card-warm);
      color:var(--muted);
      font-size:12px;
      font-weight:900;
    }
    .tag.hot{
      background:var(--primary);
      color:#FFFDF8;
    }
    .tag.dark{
      background:var(--dark);
      color:#FFFDF8;
    }
    .tag.ok{
      background:#EEF7E8;
      color:#395829;
    }
    .content-card h3{
      position:relative;
      margin:0 0 10px;
      font-size:23px;
      line-height:1.25;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .content-card p{
      position:relative;
      color:var(--muted);
      margin:0 0 18px;
      font-size:15px;
    }
    .content-actions{
      position:relative;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .time-note{
      position:relative;
      font-size:13px;
      color:var(--muted-2);
      font-weight:800;
      white-space:nowrap;
    }

    .page-nav{
      margin-top:22px;
    }
    .pagination{
      gap:8px;
      flex-wrap:wrap;
    }
    .page-link{
      min-width:42px;
      height:42px;
      border-radius:999px!important;
      border:1px solid var(--line);
      color:var(--text);
      background:#fff;
      display:grid;
      place-items:center;
      font-weight:900;
      box-shadow:none;
    }
    .page-link:hover{
      color:var(--dark);
      background:var(--card-warm);
      border-color:rgba(233,75,53,.24);
      transform:translateY(-1px);
    }
    .page-link:focus{
      box-shadow:var(--focus);
    }
    .page-item.active .page-link{
      background:var(--primary);
      border-color:var(--primary);
      color:#FFFDF8;
    }

    .steps-band{
      background:var(--card-sand);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .steps-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:26px;
    }
    .step-item{
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      padding:22px;
      transition:.22s ease;
    }
    .step-item:hover{
      transform:translateY(-3px);
      border-color:rgba(233,75,53,.28);
      box-shadow:var(--shadow);
    }
    .step-num{
      display:inline-flex;
      width:42px;
      height:42px;
      border-radius:15px;
      align-items:center;
      justify-content:center;
      background:var(--dark);
      color:#FFFDF8;
      font-weight:900;
      margin-bottom:14px;
    }
    .step-item:nth-child(2) .step-num{background:var(--primary)}
    .step-item:nth-child(3) .step-num{background:var(--accent);color:var(--dark)}
    .step-item h3{
      margin:0 0 8px;
      font-size:20px;
      font-weight:900;
    }
    .step-item p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .notice-card{
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
      padding:30px;
      background:
        linear-gradient(135deg, var(--dark), #352820);
      color:#FFFDF8;
      position:relative;
      overflow:hidden;
    }
    .notice-card:after{
      content:"";
      position:absolute;
      right:28%;
      top:-70px;
      width:150px;
      height:150px;
      border-radius:50%;
      border:1px dashed rgba(255,253,248,.22);
    }
    .notice-card h2{
      position:relative;
      margin:0 0 8px;
      font-size:32px;
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .notice-card p{
      position:relative;
      margin:0;
      color:rgba(255,253,248,.75);
      max-width:720px;
    }
    .notice-actions{
      position:relative;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .notice-actions .btn-secondary-rou{
      background:transparent;
      color:#FFFDF8;
      border-color:rgba(255,253,248,.26);
    }
    .notice-actions .btn-secondary-rou:hover{
      background:rgba(255,180,76,.14);
      color:#FFFDF8;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:30px;
      align-items:start;
    }
    .accordion{
      display:grid;
      gap:12px;
    }
    .accordion-item{
      border:1px solid var(--line)!important;
      border-radius:22px!important;
      overflow:hidden;
      background:#fff;
      box-shadow:0 10px 28px rgba(33,26,22,.04);
    }
    .accordion-button{
      border:0;
      background:#fff;
      color:var(--text);
      font-weight:900;
      font-size:17px;
      padding:20px 22px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      background:var(--card-warm);
      color:var(--text);
    }
    .accordion-button:focus{
      box-shadow:var(--focus)!important;
      border-color:transparent;
    }
    .accordion-button::after{
      width:1.1rem;
      height:1.1rem;
      background-size:1.1rem;
      filter:grayscale(1) contrast(1.3);
    }
    .accordion-body{
      padding:0 22px 22px;
      color:var(--muted);
    }

    .consult-panel{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:22px;
      align-items:stretch;
    }
    .consult-card{
      padding:28px;
    }
    .consult-card h2{
      margin:0 0 10px;
      font-size:34px;
      line-height:1.16;
      font-weight:900;
      letter-spacing:-.035em;
    }
    .consult-card p{
      color:var(--muted);
      margin:0 0 22px;
    }
    .form-label{
      font-weight:900;
      color:var(--text);
      margin-bottom:7px;
    }
    .form-control,
    .form-select{
      border-radius:16px;
      border:1px solid var(--line);
      background:var(--card-warm);
      min-height:50px;
      color:var(--text);
      box-shadow:none!important;
      transition:.22s ease;
    }
    textarea.form-control{min-height:116px;resize:vertical}
    .form-control:focus,
    .form-select:focus{
      border-color:var(--primary);
      background:#fff;
      box-shadow:var(--focus)!important;
    }
    .form-check-input{
      border-color:var(--line-strong);
      box-shadow:none!important;
    }
    .form-check-input:checked{
      background-color:var(--primary);
      border-color:var(--primary);
    }
    .form-text-error{
      display:none;
      margin-top:5px;
      color:var(--primary-deep);
      font-size:13px;
      font-weight:800;
    }
    .was-validated .form-control:invalid ~ .form-text-error,
    .was-validated .form-select:invalid ~ .form-text-error{
      display:block;
    }
    .form-status{
      display:none;
      margin-top:14px;
      border-radius:16px;
      padding:12px 14px;
      background:#EEF7E8;
      border:1px solid rgba(57,88,41,.18);
      color:#395829;
      font-weight:800;
      font-size:14px;
    }
    .info-ticket{
      background:var(--dark);
      color:#FFFDF8;
      border-radius:var(--radius-lg);
      padding:28px;
      overflow:hidden;
      position:relative;
      box-shadow:var(--shadow);
    }
    .info-ticket:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px dashed rgba(255,253,248,.2);
      border-radius:22px;
      pointer-events:none;
    }
    .info-ticket h3{
      position:relative;
      margin:0 0 16px;
      font-size:24px;
      font-weight:900;
    }
    .ticket-list{
      position:relative;
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:13px;
    }
    .ticket-list li{
      display:grid;
      grid-template-columns:34px 1fr;
      gap:12px;
      align-items:start;
      color:rgba(255,253,248,.78);
      font-size:14px;
    }
    .ticket-list b{
      display:grid;
      place-items:center;
      width:34px;
      height:34px;
      border-radius:12px;
      background:rgba(255,253,248,.1);
      color:var(--accent);
    }
    .adult-note{
      position:relative;
      margin-top:20px;
      border-radius:18px;
      background:rgba(255,180,76,.12);
      border:1px solid rgba(255,180,76,.25);
      padding:14px;
      color:rgba(255,253,248,.78);
      font-size:13px;
    }

    .site-footer{
      background:var(--dark);
      color:#FFFDF8;
      padding:62px 0 26px;
      margin-top:40px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .7fr .8fr .9fr;
      gap:34px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,253,248,.12);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:20px;
      font-weight:900;
      margin-bottom:16px;
    }
    .footer-desc{
      color:rgba(255,253,248,.68);
      margin:0;
      max-width:360px;
      font-size:14px;
    }
    .footer-col h3{
      font-size:16px;
      font-weight:900;
      margin:0 0 14px;
      color:#FFFDF8;
    }
    .footer-col ul{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer-col li,
    .footer-col a{
      color:rgba(255,253,248,.66);
      font-size:14px;
    }
    .footer-col a:hover{
      color:var(--accent);
      transform:translateX(2px);
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      padding-top:22px;
      color:rgba(255,253,248,.58);
      font-size:13px;
    }

    .mobile-sticky-cta{
      display:none;
      position:fixed;
      left:14px;
      right:14px;
      bottom:14px;
      z-index:999;
      border-radius:999px;
      padding:12px 16px;
      text-align:center;
      background:var(--primary);
      color:#FFFDF8;
      font-weight:900;
      box-shadow:0 14px 36px rgba(233,75,53,.28);
    }

    @media (max-width:1199px){
      :root{--container:1060px}
      .nav-search{width:210px}
      .hero-inner{grid-template-columns:1fr .78fr;padding:32px}
      .content-layout{grid-template-columns:270px minmax(0,1fr)}
    }
    @media (max-width:991px){
      .navbar{min-height:70px;padding:12px 0}
      .navbar .site-container{flex-wrap:wrap}
      .navbar-collapse{
        width:100%;
        padding:16px 0 8px;
        border-top:1px solid var(--line);
        margin-top:10px;
      }
      .nav-pills-wrap{
        align-items:stretch;
        margin:0 0 14px;
        gap:8px;
      }
      .navbar-nav .nav-link{display:block}
      .nav-tools{
        align-items:stretch;
        flex-wrap:wrap;
        margin-left:0;
      }
      .nav-search{width:100%}
      .hero-inner{grid-template-columns:1fr}
      .rank-panel{max-width:none}
      .content-layout{grid-template-columns:1fr}
      .sidebar{position:static;grid-template-columns:repeat(2,1fr)}
      .content-grid{grid-template-columns:1fr 1fr}
      .steps-row{grid-template-columns:repeat(2,1fr)}
      .faq-wrap{grid-template-columns:1fr}
      .consult-panel{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:767px){
      .site-container{width:min(100% - 28px, var(--container))}
      .brand-text{font-size:16px;max-width:212px}
      .brand-icon{width:38px;height:38px;border-radius:14px}
      .section{padding:58px 0}
      .section-tight{padding:44px 0}
      .category-hero{padding:30px 0 20px}
      .hero-inner{padding:24px}
      .hero-copy h1{font-size:clamp(34px,11vw,42px)}
      .hero-actions .btn-rou{width:100%}
      .filter-row{grid-template-columns:1fr}
      .sort-select{width:100%}
      .sidebar{grid-template-columns:1fr}
      .cards-topline{display:block}
      .index-strip{justify-content:flex-start;margin-top:12px}
      .content-grid{grid-template-columns:1fr}
      .content-card.wide{grid-template-columns:1fr}
      .rank-item{grid-template-columns:34px 1fr}
      .rank-item .status-pill{grid-column:2}
      .steps-row{grid-template-columns:1fr}
      .notice-card{grid-template-columns:1fr;padding:24px}
      .notice-card h2{font-size:27px}
      .notice-actions{justify-content:flex-start}
      .notice-actions .btn-rou{width:100%}
      .consult-card,.info-ticket{padding:24px}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{display:grid}
      .mobile-sticky-cta{display:block}
      body{padding-bottom:70px}
    }
    @media (max-width:420px){
      .brand-text{max-width:168px;font-size:14px}
      .nav-tools .btn-rou{width:100%}
      .content-card,.receipt-card,.side-card{padding:20px}
      .hero-tags span,.filter-chip{font-size:12px}
      .cards-topline h2{font-size:26px}
      .btn-rou{padding:12px 18px}
    }

/* roulang page: category2 */
:root{
      --bg:#FAF6EF;
      --bg-soft:#FFFDF8;
      --card:#FFFFFF;
      --cream:#FFF4E6;
      --sand:#F7EFE4;
      --text:#15110D;
      --muted:#6C625B;
      --muted-2:#8E8178;
      --dark:#211A16;
      --dark-2:#342922;
      --primary:#E94B35;
      --primary-deep:#D83C28;
      --accent:#FFB44C;
      --accent-soft:#FFE1B1;
      --line:rgba(33,26,22,.12);
      --line-strong:rgba(33,26,22,.2);
      --shadow:0 18px 50px rgba(33,26,22,.08);
      --shadow-hot:0 10px 28px rgba(233,75,53,.14);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --container:1220px;
      --nav-h:78px;
      --ease:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:PingFang SC,Microsoft YaHei,Noto Sans SC,Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 10%, rgba(255,180,76,.22), transparent 28%),
        radial-gradient(circle at 88% 6%, rgba(233,75,53,.12), transparent 26%),
        linear-gradient(180deg,var(--bg),var(--bg-soft) 52%,var(--bg));
      line-height:1.75;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
      outline:3px solid rgba(255,180,76,.55);
      outline-offset:3px;
      border-radius:16px;
    }
    ::selection{background:var(--accent-soft);color:var(--text)}
    .site-container{
      width:min(100% - 40px,var(--container));
      margin-inline:auto;
    }
    .section-pad{padding:96px 0}
    .section-tight{padding:72px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,253,248,.76);
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      box-shadow:0 8px 20px rgba(33,26,22,.04);
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(233,75,53,.12);
    }
    .section-title{
      margin:18px 0 14px;
      font-size:clamp(28px,4vw,42px);
      line-height:1.14;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .section-desc{
      margin:0;
      color:var(--muted);
      font-size:17px;
      max-width:760px;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(250,246,239,.96);
      border-bottom:1px solid var(--line);
      backdrop-filter:saturate(1.05);
    }
    .site-header .navbar{
      min-height:var(--nav-h);
      padding:0;
    }
    .site-header .site-container{
      display:flex;
      align-items:center;
      gap:22px;
    }
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:12px;
      flex:0 0 auto;
      padding:12px 0;
      color:var(--text);
      font-weight:900;
      letter-spacing:-.02em;
    }
    .brand-mark:hover{color:var(--primary)}
    .brand-icon{
      width:42px;
      height:42px;
      border-radius:15px;
      display:inline-grid;
      place-items:center;
      background:var(--primary);
      box-shadow:var(--shadow-hot);
      position:relative;
      overflow:hidden;
    }
    .brand-icon::after{
      content:"";
      position:absolute;
      width:24px;
      height:24px;
      border-radius:50%;
      background:rgba(255,180,76,.7);
      right:-8px;
      bottom:-7px;
    }
    .brand-icon span{
      display:grid;
      grid-template-columns:repeat(2,7px);
      gap:4px;
      position:relative;
      z-index:1;
    }
    .brand-icon i{
      width:7px;
      height:7px;
      border-radius:3px;
      background:#FFFDF8;
      display:block;
    }
    .brand-text{
      font-size:18px;
      white-space:nowrap;
      max-width:260px;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .navbar-toggler{
      border:1px solid var(--line);
      border-radius:14px;
      padding:9px 11px;
      background:var(--card);
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(255,180,76,.24)}
    .navbar-toggler-icon{
      width:1.2em;
      height:1.2em;
      background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2821,17,13,.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-collapse{
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .nav-pills-wrap{
      display:flex;
      align-items:center;
      gap:6px;
      padding:8px;
      background:rgba(255,255,255,.62);
      border:1px solid var(--line);
      border-radius:999px;
    }
    .nav-pills-wrap .nav-link{
      color:var(--muted);
      padding:9px 15px;
      border-radius:999px;
      font-weight:800;
      font-size:14px;
      white-space:nowrap;
    }
    .nav-pills-wrap .nav-link:hover{
      color:var(--text);
      background:var(--cream);
    }
    .nav-pills-wrap .nav-link.active{
      color:#FFFDF8;
      background:var(--dark);
      box-shadow:0 8px 18px rgba(33,26,22,.14);
    }
    .nav-tools{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:auto;
    }
    .nav-search{
      position:relative;
      width:255px;
    }
    .nav-search::before{
      content:"⌕";
      position:absolute;
      left:15px;
      top:50%;
      transform:translateY(-50%);
      color:var(--muted-2);
      font-weight:900;
      font-size:18px;
      pointer-events:none;
    }
    .nav-search input{
      width:100%;
      height:44px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#FFFDF8;
      padding:0 16px 0 39px;
      color:var(--text);
      transition:var(--ease);
    }
    .nav-search input:focus{
      border-color:rgba(233,75,53,.55);
      box-shadow:0 0 0 4px rgba(233,75,53,.1);
      outline:none;
    }
    .btn-rou{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:900;
      font-size:14px;
      line-height:1;
      cursor:pointer;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary-rou{
      color:#FFFDF8;
      background:var(--primary);
      box-shadow:var(--shadow-hot);
    }
    .btn-primary-rou:hover{
      color:var(--text);
      background:var(--accent);
      transform:translateY(-2px);
      box-shadow:0 14px 30px rgba(255,180,76,.22);
    }
    .btn-secondary-rou{
      color:var(--text);
      background:#FFFDF8;
      border-color:var(--line);
    }
    .btn-secondary-rou:hover{
      color:var(--text);
      background:var(--cream);
      border-color:rgba(255,180,76,.52);
      transform:translateY(-2px);
    }
    .btn-dark-rou{
      color:#FFFDF8;
      background:var(--dark);
      border-color:var(--dark);
    }
    .btn-dark-rou:hover{
      color:var(--text);
      background:var(--accent);
      border-color:var(--accent);
      transform:translateY(-2px);
    }
    main{position:relative}
    .guide-hero{
      padding:46px 0 56px;
      border-bottom:1px solid var(--line);
    }
    .breadcrumb-rou{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      margin-bottom:28px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
    }
    .breadcrumb-rou a:hover{color:var(--primary)}
    .breadcrumb-rou .sep{color:var(--muted-2)}
    .hero-board{
      display:grid;
      grid-template-columns:minmax(0,1fr) 420px;
      gap:32px;
      align-items:stretch;
    }
    .hero-copy{
      background:
        linear-gradient(135deg,rgba(255,255,255,.88),rgba(255,244,230,.78)),
        repeating-linear-gradient(90deg,transparent 0 28px,rgba(33,26,22,.035) 28px 29px);
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      padding:40px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero-copy::after{
      content:"更新";
      position:absolute;
      right:-20px;
      bottom:-28px;
      font-size:112px;
      font-weight:900;
      line-height:1;
      color:rgba(233,75,53,.08);
      letter-spacing:-.08em;
    }
    h1{
      margin:18px 0 18px;
      font-size:clamp(36px,5.2vw,60px);
      line-height:1.08;
      font-weight:900;
      letter-spacing:-.055em;
      max-width:790px;
      position:relative;
      z-index:1;
    }
    .hero-lead{
      color:var(--muted);
      font-size:18px;
      max-width:780px;
      margin:0 0 24px;
      position:relative;
      z-index:1;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:28px;
      position:relative;
      z-index:1;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#FFFDF8;
      color:var(--muted);
      font-size:13px;
      font-weight:800;
      transition:var(--ease);
    }
    .tag:hover{
      background:var(--accent-soft);
      color:var(--text);
      border-color:rgba(255,180,76,.6);
      transform:translateY(-1px);
    }
    .tag.hot{
      color:#FFFDF8;
      background:var(--primary);
      border-color:var(--primary);
    }
    .progress-panel{
      background:var(--dark);
      color:#FFFDF8;
      border-radius:var(--radius-xl);
      padding:30px;
      box-shadow:0 24px 60px rgba(33,26,22,.16);
      position:relative;
      overflow:hidden;
    }
    .progress-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 85% 20%,rgba(255,180,76,.28),transparent 28%),
        linear-gradient(135deg,rgba(233,75,53,.18),transparent 46%);
      pointer-events:none;
    }
    .progress-top,.tier-list,.panel-note{position:relative;z-index:1}
    .progress-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      margin-bottom:22px;
    }
    .ring{
      width:128px;
      height:128px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:conic-gradient(var(--primary) 0 72%,rgba(255,253,248,.16) 72% 100%);
      position:relative;
      flex:0 0 auto;
      animation:pulseRing 3.4s ease-in-out infinite;
    }
    .ring::after{
      content:"";
      position:absolute;
      inset:12px;
      background:var(--dark);
      border-radius:50%;
    }
    .ring strong{
      position:relative;
      z-index:1;
      font-size:30px;
      line-height:1;
      font-weight:900;
    }
    .ring span{
      position:relative;
      z-index:1;
      display:block;
      margin-top:5px;
      color:rgba(255,253,248,.68);
      font-size:12px;
      font-weight:800;
      text-align:center;
    }
    @keyframes pulseRing{
      0%,100%{filter:saturate(1)}
      50%{filter:saturate(1.2);transform:translateY(-2px)}
    }
    .progress-copy small{
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,180,76,.18);
      color:var(--accent);
      font-weight:900;
      margin-bottom:10px;
    }
    .progress-copy h2{
      margin:0 0 8px;
      font-size:26px;
      line-height:1.16;
      font-weight:900;
    }
    .progress-copy p{
      margin:0;
      color:rgba(255,253,248,.72);
      font-size:14px;
    }
    .tier-list{
      display:grid;
      gap:10px;
      margin-top:18px;
    }
    .tier-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:13px 14px;
      border-radius:18px;
      background:rgba(255,253,248,.08);
      border:1px solid rgba(255,253,248,.12);
      transition:var(--ease);
    }
    .tier-item:hover{
      background:rgba(255,253,248,.13);
      transform:translateX(3px);
    }
    .tier-item span:first-child{
      color:rgba(255,253,248,.76);
      font-weight:800;
    }
    .tier-item b{
      color:var(--accent);
      font-weight:900;
      white-space:nowrap;
    }
    .panel-note{
      margin:18px 0 0;
      padding-top:16px;
      border-top:1px dashed rgba(255,253,248,.22);
      color:rgba(255,253,248,.7);
      font-size:13px;
    }
    .guide-strip{
      background:var(--dark);
      color:#FFFDF8;
      padding:16px 0;
      overflow:hidden;
    }
    .strip-track{
      display:flex;
      gap:12px;
      white-space:nowrap;
      animation:marquee 24s linear infinite;
    }
    .strip-track span{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(255,253,248,.08);
      border:1px solid rgba(255,253,248,.12);
      color:rgba(255,253,248,.82);
      font-weight:800;
      font-size:13px;
    }
    .strip-track span::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--accent);
    }
    @keyframes marquee{
      from{transform:translateX(0)}
      to{transform:translateX(-38%)}
    }
    .tabs-section{
      padding:58px 0 0;
    }
    .guide-tabs{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .guide-tabs .nav-link{
      border:1px solid var(--line);
      color:var(--text);
      background:#FFFDF8;
      border-radius:999px;
      padding:11px 18px;
      font-weight:900;
      transition:var(--ease);
    }
    .guide-tabs .nav-link:hover{
      background:var(--cream);
      border-color:rgba(255,180,76,.7);
      transform:translateY(-2px);
    }
    .guide-tabs .nav-link.active{
      color:#FFFDF8;
      background:var(--dark);
      border-color:var(--dark);
      box-shadow:0 12px 26px rgba(33,26,22,.14);
    }
    .filter-bar{
      margin-top:24px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:16px;
      align-items:center;
      padding:16px;
      background:#FFFFFF;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      box-shadow:0 12px 34px rgba(33,26,22,.05);
    }
    .filter-chips{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .chip{
      border:1px dashed var(--line-strong);
      background:var(--bg-soft);
      color:var(--muted);
      padding:8px 13px;
      border-radius:999px;
      font-size:13px;
      font-weight:900;
      cursor:pointer;
      transition:var(--ease);
    }
    .chip:hover,.chip.active{
      border-style:solid;
      border-color:var(--primary);
      background:rgba(233,75,53,.08);
      color:var(--primary-deep);
      transform:translateY(-1px);
    }
    .filter-search{
      min-width:290px;
      position:relative;
    }
    .filter-search input{
      width:100%;
      height:46px;
      border-radius:999px;
      border:1px solid var(--line);
      background:var(--cream);
      padding:0 18px;
      color:var(--text);
      transition:var(--ease);
    }
    .filter-search input:focus{
      outline:none;
      background:#fff;
      border-color:rgba(233,75,53,.55);
      box-shadow:0 0 0 4px rgba(233,75,53,.09);
    }
    .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 340px;
      gap:32px;
      align-items:start;
    }
    .timeline-wrap{
      position:relative;
      padding-left:22px;
    }
    .timeline-wrap::before{
      content:"";
      position:absolute;
      left:8px;
      top:12px;
      bottom:22px;
      width:2px;
      background:linear-gradient(180deg,var(--primary),rgba(255,180,76,.55),rgba(33,26,22,.08));
    }
    .timeline-card{
      position:relative;
      margin-bottom:18px;
      background:#FFFFFF;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:26px;
      box-shadow:0 14px 38px rgba(33,26,22,.055);
      transition:var(--ease);
      overflow:hidden;
    }
    .timeline-card::before{
      content:"";
      position:absolute;
      left:-20px;
      top:30px;
      width:14px;
      height:14px;
      border-radius:50%;
      background:var(--primary);
      border:4px solid var(--bg);
      box-shadow:0 0 0 5px rgba(233,75,53,.14);
    }
    .timeline-card::after{
      content:"";
      position:absolute;
      right:-24px;
      top:-24px;
      width:80px;
      height:80px;
      border-radius:50%;
      background:rgba(255,180,76,.14);
      transition:var(--ease);
    }
    .timeline-card:hover{
      border-color:rgba(233,75,53,.34);
      transform:translateY(-3px);
      box-shadow:var(--shadow);
    }
    .timeline-card:hover::after{
      transform:translate(-8px,8px) scale(1.08);
      background:rgba(233,75,53,.12);
    }
    .timeline-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      margin-bottom:12px;
      position:relative;
      z-index:1;
    }
    .timeline-no{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-weight:900;
      font-size:14px;
    }
    .timeline-no b{
      font-size:24px;
      line-height:1;
      letter-spacing:-.04em;
    }
    .status{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .status.on{background:rgba(233,75,53,.1);color:var(--primary-deep)}
    .status.wait{background:rgba(255,180,76,.2);color:#8A5310}
    .status.safe{background:rgba(39,128,87,.1);color:#27734F}
    .status::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:currentColor;
    }
    .timeline-card h3{
      position:relative;
      z-index:1;
      margin:0 0 10px;
      font-size:23px;
      line-height:1.25;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .timeline-card p{
      position:relative;
      z-index:1;
      margin:0;
      color:var(--muted);
    }
    .meta-row{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:18px 0 0;
    }
    .meta-row .tag{
      padding:7px 10px;
      background:var(--cream);
    }
    .card-actions{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:20px;
    }
    .side-stack{
      position:sticky;
      top:calc(var(--nav-h) + 24px);
      display:grid;
      gap:18px;
    }
    .receipt-card,.consult-card,.mini-faq-card{
      background:#FFFFFF;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      box-shadow:0 14px 38px rgba(33,26,22,.055);
      overflow:hidden;
    }
    .receipt-card{
      padding:0;
      background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(135deg,rgba(233,75,53,.45),rgba(255,180,76,.48)) border-box;
    }
    .receipt-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding:20px 22px;
      background:var(--dark);
      color:#FFFDF8;
    }
    .receipt-head strong{
      font-size:18px;
      font-weight:900;
    }
    .receipt-head span{
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,180,76,.18);
      color:var(--accent);
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .receipt-list{
      list-style:none;
      padding:18px 22px 22px;
      margin:0;
    }
    .receipt-list li{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      padding:13px 0;
      border-bottom:1px dashed var(--line);
      color:var(--muted);
      font-weight:700;
    }
    .receipt-list li:last-child{border-bottom:0}
    .receipt-list b{color:var(--text);white-space:nowrap}
    .consult-card{
      padding:24px;
      background:linear-gradient(180deg,#fff,var(--cream));
    }
    .consult-card h2,.mini-faq-card h2{
      margin:0 0 10px;
      font-size:24px;
      line-height:1.2;
      font-weight:900;
    }
    .consult-card p,.mini-faq-card p{
      margin:0 0 18px;
      color:var(--muted);
      font-size:14px;
    }
    .mini-faq-card{
      padding:24px;
    }
    .mini-faq-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .mini-faq-list li{
      padding:12px 13px;
      border-radius:16px;
      background:var(--sand);
      color:var(--muted);
      font-size:14px;
      font-weight:700;
    }
    .matrix-section{
      background:linear-gradient(180deg,rgba(255,253,248,.35),rgba(247,239,228,.64));
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .entry-matrix{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
      margin-top:30px;
    }
    .matrix-large,.matrix-small{
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      background:#FFFFFF;
      box-shadow:var(--shadow);
      padding:30px;
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .matrix-large:hover,.matrix-small:hover{
      transform:translateY(-3px);
      border-color:rgba(233,75,53,.32);
    }
    .matrix-large::before,.matrix-small::before{
      content:"";
      position:absolute;
      width:84px;
      height:84px;
      right:-28px;
      top:-28px;
      background:var(--accent-soft);
      border-radius:50%;
    }
    .matrix-large h3,.matrix-small h3{
      position:relative;
      margin:0 0 12px;
      font-size:26px;
      font-weight:900;
      letter-spacing:-.025em;
    }
    .matrix-large p,.matrix-small p{
      position:relative;
      margin:0 0 20px;
      color:var(--muted);
    }
    .steps-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      position:relative;
    }
    .step-box{
      padding:16px;
      border-radius:18px;
      background:var(--cream);
      border:1px solid var(--line);
    }
    .step-box b{
      display:block;
      color:var(--primary);
      font-size:20px;
      line-height:1;
      margin-bottom:8px;
    }
    .step-box span{
      color:var(--muted);
      font-size:14px;
      font-weight:700;
    }
    .notice-banner{
      background:var(--dark);
      color:#FFFDF8;
      border-radius:var(--radius-xl);
      padding:34px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
      box-shadow:0 24px 60px rgba(33,26,22,.16);
      position:relative;
      overflow:hidden;
    }
    .notice-banner::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(233,75,53,.22),transparent 55%),
        radial-gradient(circle at 92% 50%,rgba(255,180,76,.25),transparent 25%);
      pointer-events:none;
    }
    .notice-banner > *{position:relative;z-index:1}
    .notice-banner h2{
      margin:10px 0;
      font-size:clamp(28px,4vw,42px);
      line-height:1.12;
      font-weight:900;
      letter-spacing:-.04em;
    }
    .notice-banner p{
      margin:0;
      color:rgba(255,253,248,.74);
      max-width:720px;
    }
    .notice-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .notice-actions .btn-secondary-rou{
      background:transparent;
      color:#FFFDF8;
      border-color:rgba(255,253,248,.24);
    }
    .notice-actions .btn-secondary-rou:hover{
      color:var(--text);
      background:var(--accent);
      border-color:var(--accent);
    }
    .faq-wrap{
      max-width:900px;
      margin:30px auto 0;
    }
    .accordion{
      display:grid;
      gap:12px;
    }
    .accordion-item{
      border:1px solid var(--line)!important;
      border-radius:22px!important;
      overflow:hidden;
      background:#FFFFFF;
      box-shadow:0 10px 28px rgba(33,26,22,.04);
    }
    .accordion-button{
      padding:20px 22px;
      font-weight:900;
      color:var(--text);
      background:#FFFFFF;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary-deep);
      background:var(--cream);
    }
    .accordion-button:focus{
      box-shadow:0 0 0 4px rgba(255,180,76,.22)!important;
      border-color:transparent;
    }
    .accordion-button::after{
      width:36px;
      height:36px;
      border-radius:50%;
      background-color:var(--sand);
      background-position:center;
      background-size:15px;
    }
    .accordion-body{
      padding:0 22px 22px;
      color:var(--muted);
      background:#FFFFFF;
    }
    .form-section{
      background:
        radial-gradient(circle at 15% 18%,rgba(255,180,76,.2),transparent 25%),
        linear-gradient(180deg,var(--bg),var(--bg-soft));
    }
    .consult-layout{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) .95fr;
      gap:28px;
      align-items:stretch;
      margin-top:30px;
    }
    .form-card{
      background:#FFFFFF;
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      padding:32px;
      box-shadow:var(--shadow);
    }
    .form-label{
      color:var(--text);
      font-weight:900;
      margin-bottom:8px;
    }
    .form-control,.form-select{
      min-height:48px;
      border-radius:16px;
      border:1px solid var(--line);
      background:var(--cream);
      color:var(--text);
      padding:11px 14px;
      transition:var(--ease);
    }
    textarea.form-control{min-height:116px;resize:vertical}
    .form-control:focus,.form-select:focus{
      background:#FFFFFF;
      border-color:rgba(233,75,53,.58);
      box-shadow:0 0 0 4px rgba(233,75,53,.1);
    }
    .form-check-input{
      border-color:var(--line-strong);
      width:1.1em;
      height:1.1em;
    }
    .form-check-input:checked{
      background-color:var(--primary);
      border-color:var(--primary);
    }
    .invalid-feedback{
      color:var(--primary-deep);
      font-weight:700;
    }
    .form-note{
      margin-top:16px;
      padding:14px 16px;
      border-radius:18px;
      background:#F4FAF2;
      border:1px solid rgba(39,128,87,.18);
      color:#2D694A;
      font-size:14px;
      display:none;
      font-weight:800;
    }
    .form-note.show{display:block}
    .process-card{
      border-radius:var(--radius-xl);
      background:var(--dark);
      color:#FFFDF8;
      padding:32px;
      box-shadow:0 24px 60px rgba(33,26,22,.16);
      position:relative;
      overflow:hidden;
    }
    .process-card::after{
      content:"";
      position:absolute;
      right:-50px;
      bottom:-50px;
      width:190px;
      height:190px;
      border-radius:50%;
      background:rgba(255,180,76,.18);
    }
    .process-card h2{
      margin:0 0 12px;
      font-size:32px;
      line-height:1.14;
      font-weight:900;
    }
    .process-card p{
      margin:0 0 24px;
      color:rgba(255,253,248,.72);
    }
    .process-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .process-list li{
      display:grid;
      grid-template-columns:44px 1fr;
      gap:14px;
      align-items:start;
      padding:15px;
      border-radius:18px;
      background:rgba(255,253,248,.08);
      border:1px solid rgba(255,253,248,.12);
    }
    .process-list b{
      width:44px;
      height:44px;
      border-radius:15px;
      display:grid;
      place-items:center;
      background:var(--primary);
      color:#FFFDF8;
      line-height:1;
      font-weight:900;
    }
    .process-list strong{
      display:block;
      font-weight:900;
      margin-bottom:3px;
    }
    .process-list span{
      color:rgba(255,253,248,.68);
      font-size:14px;
    }
    .site-footer{
      background:var(--dark);
      color:#FFFDF8;
      padding:68px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .8fr .9fr .9fr;
      gap:34px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:18px;
      font-weight:900;
      margin-bottom:16px;
    }
    .footer-desc{
      margin:0;
      max-width:360px;
      color:rgba(255,253,248,.66);
      font-size:14px;
    }
    .footer-col h3{
      font-size:16px;
      font-weight:900;
      margin:0 0 14px;
      color:#FFFDF8;
    }
    .footer-col ul{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer-col li,.footer-col a{
      color:rgba(255,253,248,.66);
      font-size:14px;
    }
    .footer-col a:hover{
      color:var(--accent);
      padding-left:4px;
    }
    .footer-bottom{
      margin-top:44px;
      padding-top:22px;
      border-top:1px solid rgba(255,253,248,.12);
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      color:rgba(255,253,248,.55);
      font-size:13px;
    }
    .mobile-sticky-cta{
      display:none;
      position:fixed;
      left:14px;
      right:14px;
      bottom:14px;
      z-index:999;
      padding:10px;
      border-radius:999px;
      background:rgba(33,26,22,.94);
      box-shadow:0 18px 40px rgba(33,26,22,.22);
      gap:10px;
    }
    .mobile-sticky-cta a{
      flex:1;
      min-height:44px;
      padding-inline:12px;
      font-size:13px;
    }
    @media (max-width:1199.98px){
      :root{--container:1080px}
      .nav-search{width:210px}
      .brand-text{max-width:210px}
      .hero-board{grid-template-columns:1fr 370px}
      .progress-top{align-items:flex-start;flex-direction:column}
      .content-layout{grid-template-columns:minmax(0,1fr) 310px}
    }
    @media (max-width:991.98px){
      .site-header .site-container{flex-wrap:wrap}
      .navbar-collapse{
        width:100%;
        padding:0 0 16px;
      }
      .nav-pills-wrap{
        border-radius:24px;
        align-items:stretch;
        flex-direction:column;
        background:#FFFFFF;
        margin:6px 0 12px;
      }
      .nav-pills-wrap .nav-link{
        text-align:center;
      }
      .nav-tools{
        width:100%;
        flex-wrap:wrap;
        margin-left:0;
      }
      .nav-search{
        width:100%;
        order:-1;
      }
      .hero-board,.content-layout,.entry-matrix,.consult-layout{
        grid-template-columns:1fr;
      }
      .side-stack{position:static}
      .filter-bar{grid-template-columns:1fr}
      .filter-search{min-width:0}
      .notice-banner{grid-template-columns:1fr}
      .notice-actions{justify-content:flex-start}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:767.98px){
      body{font-size:15px}
      .site-container{width:min(100% - 28px,var(--container))}
      .section-pad{padding:62px 0}
      .section-tight{padding:52px 0}
      .brand-icon{width:38px;height:38px;border-radius:14px}
      .brand-text{max-width:185px;font-size:16px}
      .guide-hero{padding:30px 0 42px}
      .hero-copy,.progress-panel,.form-card,.process-card,.notice-banner{
        border-radius:24px;
        padding:24px;
      }
      h1{font-size:clamp(34px,11vw,42px)}
      .hero-lead{font-size:16px}
      .hero-actions .btn-rou,.notice-actions .btn-rou{width:100%}
      .guide-tabs{overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}
      .guide-tabs .nav-link{white-space:nowrap}
      .timeline-wrap{padding-left:18px}
      .timeline-card{padding:22px;border-radius:22px}
      .timeline-card::before{left:-17px}
      .timeline-head{flex-direction:column}
      .steps-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{flex-direction:column}
      .mobile-sticky-cta{display:flex}
      body{padding-bottom:82px}
    }
    @media (max-width:420px){
      .site-container{width:min(100% - 24px,var(--container))}
      .brand-text{max-width:150px}
      .btn-rou{padding:11px 16px}
      .hero-copy,.progress-panel,.form-card,.process-card,.notice-banner,.matrix-large,.matrix-small{padding:20px}
      .ring{width:112px;height:112px}
      .ring strong{font-size:26px}
      .card-actions .btn-rou{width:100%}
    }
    @media (prefers-reduced-motion:reduce){
      *,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
    }
