/* roulang page: index */
:root {
      --score-black: #121212;
      --score-deep: #18130f;
      --wood: #b87532;
      --wood-soft: #d9a15d;
      --court-bg: #f6f0e7;
      --paper: #fffaf1;
      --line: rgba(18, 18, 18, .12);
      --line-dark: rgba(255, 255, 255, .13);
      --text: #1c1814;
      --muted: #6f665c;
      --cream: #f8f4ea;
      --orange: #f05a28;
      --orange-dark: #c94118;
      --green: #35c46a;
      --yellow: #f4c430;
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 26px;
      --shadow: 0 16px 40px rgba(18, 18, 18, .12);
      --shadow-soft: 0 10px 26px rgba(18, 18, 18, .08);
      --container: 1180px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 0%, rgba(240, 90, 40, .13), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(184, 117, 50, .16), transparent 26%),
        linear-gradient(180deg, #fff9ef 0%, var(--court-bg) 42%, #efe4d6 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    :focus-visible {
      outline: 3px solid rgba(240, 90, 40, .55);
      outline-offset: 3px;
      border-radius: 10px;
    }

    .container {
      width: min(100% - 36px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(18, 18, 18, .97);
      color: var(--cream);
      box-shadow: 0 10px 34px rgba(18, 18, 18, .18);
    }

    .brand-row {
      border-bottom: 1px solid var(--line-dark);
    }

    .brand-row-inner {
      min-height: 74px;
      display: grid;
      grid-template-columns: auto minmax(260px, 1fr) auto;
      align-items: center;
      gap: 22px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -.02em;
      white-space: nowrap;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background:
        linear-gradient(135deg, var(--orange), #ffb25d),
        repeating-linear-gradient(45deg, rgba(255,255,255,.28) 0 3px, transparent 3px 8px);
      position: relative;
      box-shadow: inset 0 -8px 18px rgba(18, 18, 18, .18), 0 8px 22px rgba(240, 90, 40, .28);
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      inset: 12px 8px;
      border-top: 3px solid rgba(18, 18, 18, .78);
      border-bottom: 3px solid rgba(18, 18, 18, .78);
      transform: skewX(-16deg);
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-main {
      font-size: 18px;
    }

    .logo-sub {
      margin-top: 5px;
      color: rgba(248, 244, 234, .66);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
    }

    .search-shell {
      position: relative;
      max-width: 520px;
      width: 100%;
      justify-self: center;
    }

    .search-shell input {
      width: 100%;
      height: 44px;
      border: 1px solid rgba(248, 244, 234, .18);
      border-radius: 999px;
      color: var(--cream);
      background: rgba(255, 255, 255, .07);
      padding: 0 128px 0 18px;
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .search-shell input::placeholder {
      color: rgba(248, 244, 234, .58);
    }

    .search-shell input:focus {
      border-color: rgba(240, 90, 40, .78);
      box-shadow: 0 0 0 4px rgba(240, 90, 40, .12);
      background: rgba(255, 255, 255, .1);
      outline: none;
    }

    .search-chip {
      position: absolute;
      top: 7px;
      right: 8px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      padding: 0 13px;
      border-radius: 999px;
      background: var(--orange);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, var(--orange), #ff7a3d);
      font-weight: 900;
      box-shadow: 0 10px 28px rgba(240, 90, 40, .3);
      transition: transform var(--ease), box-shadow var(--ease);
      white-space: nowrap;
    }

    .header-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(240, 90, 40, .38);
    }

    .channel-row {
      background: rgba(246, 240, 231, .97);
      color: var(--text);
      border-bottom: 1px solid rgba(18, 18, 18, .08);
    }

    .channel-inner {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 52px;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(240, 90, 40, .55) rgba(18, 18, 18, .08);
    }

    .channel-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 0 15px;
      border-radius: 999px;
      border: 1px solid rgba(18, 18, 18, .1);
      color: #3f352d;
      background: rgba(255, 250, 241, .72);
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
      transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
    }

    .channel-link:hover {
      transform: translateY(-1px);
      border-color: rgba(240, 90, 40, .38);
      background: #fff;
      color: var(--orange-dark);
    }

    .channel-link.active {
      color: #fff;
      background: var(--orange);
      border-color: var(--orange);
      box-shadow: 0 10px 20px rgba(240, 90, 40, .2);
    }

    .hero {
      position: relative;
      padding: 34px 0 42px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, rgba(255,255,255,.86) 0 45%, rgba(240,90,40,.08) 45% 48%, transparent 48%),
        repeating-linear-gradient(90deg, rgba(18,18,18,.035) 0 1px, transparent 1px 36px);
      pointer-events: none;
    }

    .hero-band {
      position: relative;
      border-radius: var(--radius-lg);
      padding: 26px;
      background:
        radial-gradient(circle at 88% 0%, rgba(244, 196, 48, .28), transparent 30%),
        linear-gradient(135deg, #fffaf1 0%, #f8ead8 50%, #e9d3bb 100%);
      border: 1px solid rgba(18, 18, 18, .08);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-band::after {
      content: "";
      position: absolute;
      width: 440px;
      height: 220px;
      right: -120px;
      top: -60px;
      background:
        linear-gradient(110deg, transparent 12%, rgba(240,90,40,.24) 12% 16%, transparent 16% 24%, rgba(18,18,18,.08) 24% 27%, transparent 27%),
        radial-gradient(circle, rgba(255,255,255,.5), transparent 62%);
      transform: rotate(-8deg);
    }

    .hero-topline {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 20px;
    }

    .status-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 28px;
      padding: 0 11px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .01em;
      border: 1px solid rgba(18, 18, 18, .08);
      white-space: nowrap;
    }

    .badge::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 99px;
      background: currentColor;
      box-shadow: 0 0 0 4px rgba(255,255,255,.45);
    }

    .badge-new {
      color: #fff;
      background: var(--orange);
      border-color: var(--orange);
    }

    .badge-safe {
      color: #104b24;
      background: rgba(53, 196, 106, .18);
    }

    .badge-check {
      color: #5f4300;
      background: rgba(244, 196, 48, .24);
    }

    .badge-dark {
      color: var(--cream);
      background: rgba(18, 18, 18, .92);
      border-color: rgba(18, 18, 18, .92);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
      gap: 26px;
      align-items: end;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--orange-dark);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .12em;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 4px;
      border-radius: 999px;
      background: var(--orange);
      transform: skewX(-18deg);
    }

    h1 {
      max-width: 780px;
      color: var(--score-black);
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.12;
      letter-spacing: -.055em;
      font-weight: 950;
    }

    .hero-desc {
      max-width: 780px;
      margin-top: 16px;
      color: #4f453c;
      font-size: 18px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
    }

    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 900;
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
      overflow: hidden;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--orange), #ff7a3d);
      box-shadow: 0 14px 28px rgba(240, 90, 40, .28);
    }

    .btn-primary::after {
      content: "";
      position: absolute;
      right: 17px;
      width: 16px;
      height: 46px;
      background: rgba(255,255,255,.18);
      transform: skewX(-20deg);
    }

    .btn-secondary {
      color: var(--score-black);
      border: 1px solid rgba(18, 18, 18, .18);
      background: rgba(255, 250, 241, .72);
    }

    .btn-dark {
      color: var(--cream);
      border: 1px solid rgba(248, 244, 234, .2);
      background: var(--score-black);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(18, 18, 18, .14);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .metric-tile {
      min-height: 118px;
      padding: 18px;
      border-radius: var(--radius-md);
      background: rgba(18, 18, 18, .92);
      color: var(--cream);
      border: 1px solid rgba(255, 255, 255, .12);
      box-shadow: var(--shadow-soft);
    }

    .metric-tile strong {
      display: block;
      font-size: 28px;
      line-height: 1;
      color: #fff;
      letter-spacing: -.04em;
    }

    .metric-tile span {
      display: block;
      margin-top: 10px;
      color: rgba(248, 244, 234, .74);
      font-size: 13px;
      line-height: 1.55;
    }

    .ticker {
      position: relative;
      z-index: 2;
      margin-top: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border-radius: 999px;
      background: rgba(18, 18, 18, .92);
      color: var(--cream);
      overflow: hidden;
    }

    .ticker-label {
      flex: 0 0 auto;
      padding: 4px 10px;
      border-radius: 999px;
      background: var(--orange);
      color: #fff;
      font-size: 13px;
      font-weight: 900;
    }

    .ticker-text {
      color: rgba(248, 244, 234, .8);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 14px;
    }

    main {
      position: relative;
      z-index: 1;
    }

    .section {
      padding: 76px 0;
    }

    .section-tight {
      padding: 54px 0;
    }

    .section-dark {
      color: var(--cream);
      background:
        radial-gradient(circle at 16% 0%, rgba(240,90,40,.28), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(184,117,50,.24), transparent 28%),
        linear-gradient(135deg, var(--score-black), var(--score-deep));
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 26px;
    }

    .section-kicker {
      color: var(--orange-dark);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .section-dark .section-kicker {
      color: #ff9a68;
    }

    h2 {
      margin-top: 6px;
      font-size: clamp(28px, 3.8vw, 38px);
      line-height: 1.18;
      letter-spacing: -.045em;
      font-weight: 950;
    }

    .section-note {
      max-width: 520px;
      color: var(--muted);
      font-size: 16px;
    }

    .section-dark .section-note {
      color: rgba(248, 244, 234, .72);
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: 1.25fr .85fr .85fr;
      gap: 18px;
    }

    .benefit-card,
    .info-card,
    .topic-card,
    .rank-card,
    .form-card,
    .faq-card {
      border: 1px solid rgba(18, 18, 18, .09);
      border-radius: var(--radius-md);
      background: rgba(255, 250, 241, .78);
      box-shadow: var(--shadow-soft);
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }

    .benefit-card:hover,
    .info-card:hover,
    .topic-card:hover,
    .rank-row:hover {
      transform: translateY(-3px);
      border-color: rgba(240, 90, 40, .36);
      box-shadow: var(--shadow);
    }

    .benefit-card {
      padding: 24px;
      min-height: 236px;
      position: relative;
      overflow: hidden;
    }

    .benefit-card.featured {
      background:
        linear-gradient(135deg, rgba(18, 18, 18, .94), rgba(31, 24, 19, .96)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 28px);
      color: var(--cream);
    }

    .benefit-card.featured::after {
      content: "";
      position: absolute;
      right: -46px;
      bottom: -52px;
      width: 190px;
      height: 190px;
      border: 16px solid rgba(240, 90, 40, .28);
      border-radius: 50%;
    }

    .card-index {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      color: #fff;
      background: var(--orange);
      font-size: 17px;
      font-weight: 950;
      transform: skewX(-7deg);
    }

    .benefit-card h3,
    .info-card h3,
    .topic-card h3 {
      margin-top: 18px;
      font-size: 22px;
      line-height: 1.3;
      letter-spacing: -.03em;
    }

    .benefit-card p,
    .info-card p,
    .topic-card p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 15px;
    }

    .benefit-card.featured p {
      color: rgba(248, 244, 234, .72);
    }

    .mini-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      color: var(--orange-dark);
      font-weight: 900;
    }

    .featured .mini-link {
      color: #ff9a68;
    }

    .qualification {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
      gap: 26px;
      align-items: start;
    }

    .notice-board {
      padding: 26px;
      border-radius: var(--radius-lg);
      background: var(--score-black);
      color: var(--cream);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .notice-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 20%, rgba(240,90,40,.24), transparent 24%),
        repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0 1px, transparent 1px 24px);
      pointer-events: none;
    }

    .notice-board > * {
      position: relative;
      z-index: 1;
    }

    .notice-board h2 {
      color: #fff;
    }

    .notice-list {
      display: grid;
      gap: 12px;
      margin-top: 22px;
      list-style: none;
    }

    .notice-list li {
      display: flex;
      gap: 12px;
      padding: 13px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.07);
      color: rgba(248,244,234,.8);
      border: 1px solid rgba(255,255,255,.1);
    }

    .notice-list li::before {
      content: "✓";
      flex: 0 0 auto;
      color: var(--green);
      font-weight: 950;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .info-card {
      padding: 22px;
      border-left: 5px solid var(--orange);
    }

    .info-card.compact {
      border-left-color: var(--green);
    }

    .topics-wrap {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 24px;
      align-items: stretch;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-content: start;
      padding: 22px;
      border-radius: var(--radius-lg);
      background: rgba(255, 250, 241, .76);
      border: 1px solid rgba(18,18,18,.08);
      box-shadow: var(--shadow-soft);
    }

    .topic-tag {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(18,18,18,.1);
      color: #493d32;
      font-weight: 800;
      transition: all var(--ease);
    }

    .topic-tag:hover {
      color: #fff;
      background: var(--orange);
      border-color: var(--orange);
      transform: translateY(-2px);
    }

    .topic-cards {
      display: grid;
      gap: 16px;
    }

    .topic-card {
      padding: 22px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: center;
    }

    .topic-card h3 {
      margin-top: 0;
    }

    .topic-card p {
      margin-top: 4px;
    }

    .scroll-shell {
      position: relative;
    }

    .scroll-tools {
      display: flex;
      gap: 10px;
    }

    .scroll-btn {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      color: #fff;
      background: var(--orange);
      font-size: 18px;
      font-weight: 950;
      transition: transform var(--ease), background var(--ease);
    }

    .scroll-btn:hover {
      transform: translateY(-2px);
      background: var(--orange-dark);
    }

    .scroll-track {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 4px 2px 18px;
      scrollbar-width: thin;
      scrollbar-color: var(--orange) rgba(18,18,18,.09);
    }

    .rail-card {
      flex: 0 0 318px;
      scroll-snap-align: start;
      padding: 22px;
      min-height: 220px;
      border-radius: var(--radius-md);
      background: rgba(255,250,241,.88);
      border: 1px solid rgba(18,18,18,.1);
      box-shadow: var(--shadow-soft);
      transition: transform var(--ease), border-color var(--ease);
    }

    .rail-card:hover {
      transform: translateY(-3px);
      border-color: rgba(240,90,40,.42);
    }

    .rail-card h3 {
      margin-top: 16px;
      font-size: 21px;
      line-height: 1.3;
    }

    .rail-card p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 15px;
    }

    .rank-layout {
      display: grid;
      grid-template-columns: 1fr .78fr;
      gap: 22px;
    }

    .rank-card {
      padding: 20px;
      background: rgba(255,250,241,.84);
    }

    .rank-row {
      display: grid;
      grid-template-columns: 54px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 15px 10px;
      border-bottom: 1px solid rgba(18,18,18,.08);
      transition: transform var(--ease), background var(--ease);
    }

    .rank-row:last-child {
      border-bottom: 0;
    }

    .rank-no {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: rgba(240,90,40,.12);
      color: var(--orange-dark);
      font-weight: 950;
    }

    .rank-title {
      font-weight: 950;
      line-height: 1.35;
    }

    .rank-meta {
      color: var(--muted);
      font-size: 14px;
    }

    .trend-meter {
      display: inline-flex;
      align-items: center;
      min-width: 86px;
      justify-content: center;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(53,196,106,.16);
      color: #166331;
      font-weight: 900;
      font-size: 13px;
    }

    .side-panel {
      padding: 24px;
      border-radius: var(--radius-lg);
      color: var(--cream);
      background:
        linear-gradient(135deg, rgba(18,18,18,.94), rgba(40,29,21,.96)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.045) 0 1px, transparent 1px 18px);
      box-shadow: var(--shadow);
    }

    .side-panel h3 {
      font-size: 24px;
      line-height: 1.25;
    }

    .side-panel p {
      margin-top: 10px;
      color: rgba(248,244,234,.72);
    }

    .side-stat {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 22px;
    }

    .side-stat div {
      padding: 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.1);
    }

    .side-stat strong {
      display: block;
      color: #fff;
      font-size: 24px;
      line-height: 1;
    }

    .side-stat span {
      display: block;
      margin-top: 6px;
      color: rgba(248,244,234,.65);
      font-size: 13px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 22px;
    }

    .news-list {
      display: grid;
      gap: 12px;
    }

    .news-link {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255,250,241,.82);
      border: 1px solid rgba(18,18,18,.08);
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .news-link:hover {
      transform: translateX(4px);
      border-color: rgba(240,90,40,.36);
      background: #fffaf1;
    }

    .news-dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 5px rgba(240,90,40,.12);
    }

    .news-link strong {
      display: block;
      line-height: 1.35;
      font-size: 17px;
    }

    .news-link span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 14px;
    }

    .news-time {
      color: var(--orange-dark);
      font-weight: 900;
      white-space: nowrap;
      font-size: 13px;
    }

    .recommend-box {
      padding: 24px;
      border-radius: var(--radius-lg);
      background: #fffaf1;
      border: 1px solid rgba(18,18,18,.08);
      box-shadow: var(--shadow-soft);
    }

    .recommend-box h3 {
      font-size: 23px;
      line-height: 1.3;
    }

    .recommend-box p {
      margin-top: 10px;
      color: var(--muted);
    }

    .form-wrap {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 24px;
      align-items: stretch;
    }

    .form-intro {
      padding: 28px;
      border-radius: var(--radius-lg);
      color: var(--cream);
      background:
        radial-gradient(circle at 10% 0%, rgba(240,90,40,.34), transparent 30%),
        linear-gradient(135deg, var(--score-black), #251b14);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .form-intro h2 {
      color: #fff;
    }

    .form-intro p {
      margin-top: 12px;
      color: rgba(248,244,234,.72);
    }

    .check-lines {
      display: grid;
      gap: 10px;
      margin-top: 22px;
      list-style: none;
    }

    .check-lines li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: rgba(248,244,234,.8);
    }

    .check-lines li::before {
      content: "";
      width: 10px;
      height: 10px;
      margin-top: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(53,196,106,.14);
      flex: 0 0 auto;
    }

    .form-card {
      padding: 24px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      color: #3b322b;
      font-weight: 900;
      font-size: 14px;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(18,18,18,.12);
      border-radius: 14px;
      background: #fff;
      color: var(--text);
      padding: 12px 13px;
      transition: border-color var(--ease), box-shadow var(--ease);
    }

    .field textarea {
      min-height: 112px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: rgba(240,90,40,.7);
      box-shadow: 0 0 0 4px rgba(240,90,40,.11);
    }

    .form-hint {
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 24px;
      align-items: start;
    }

    .faq-card {
      padding: 22px;
    }

    details {
      border-radius: 16px;
      background: rgba(255,250,241,.78);
      border: 1px solid rgba(18,18,18,.08);
      box-shadow: 0 8px 18px rgba(18,18,18,.05);
      overflow: hidden;
    }

    details + details {
      margin-top: 12px;
    }

    summary {
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 15px 18px;
      font-weight: 950;
      cursor: pointer;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      color: #fff;
      background: var(--orange);
      flex: 0 0 auto;
      transition: transform var(--ease);
    }

    details[open] summary::after {
      content: "−";
      transform: rotate(180deg);
    }

    details p {
      padding: 0 18px 18px;
      color: var(--muted);
      font-size: 15px;
    }

    .cta-panel {
      position: relative;
      padding: 34px;
      border-radius: var(--radius-lg);
      color: var(--cream);
      background:
        radial-gradient(circle at 20% 0%, rgba(255,255,255,.18), transparent 26%),
        radial-gradient(circle at 78% 100%, rgba(240,90,40,.3), transparent 32%),
        linear-gradient(135deg, #151210, #2a1d14);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      inset: auto -20px -86px auto;
      width: 270px;
      height: 190px;
      border: 20px solid rgba(184,117,50,.28);
      border-radius: 50%;
      transform: rotate(-12deg);
    }

    .cta-panel > * {
      position: relative;
      z-index: 1;
    }

    .cta-panel h2 {
      max-width: 720px;
      color: #fff;
    }

    .cta-panel p {
      max-width: 760px;
      margin-top: 12px;
      color: rgba(248,244,234,.74);
    }

    .cta-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 22px 0;
    }

    .site-footer {
      color: var(--cream);
      background:
        linear-gradient(90deg, rgba(240,90,40,.9), rgba(184,117,50,.8)) top / 100% 4px no-repeat,
        radial-gradient(circle at 88% 0%, rgba(240,90,40,.18), transparent 28%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 30px),
        var(--score-black);
      padding: 54px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr .9fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      font-size: 22px;
      font-weight: 950;
      letter-spacing: -.03em;
    }

    .footer-text {
      margin-top: 12px;
      color: rgba(248,244,234,.68);
      max-width: 470px;
      font-size: 14px;
    }

    .footer-title {
      font-weight: 950;
      color: #fff;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(248,244,234,.7);
      transition: color var(--ease), transform var(--ease);
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(3px);
    }

    .copyright {
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.12);
      color: rgba(248,244,234,.58);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .brand-row-inner {
        grid-template-columns: 1fr auto;
      }

      .search-shell {
        grid-column: 1 / -1;
        max-width: none;
        order: 3;
        margin-bottom: 14px;
      }

      .hero-content,
      .qualification,
      .topics-wrap,
      .rank-layout,
      .news-layout,
      .form-wrap,
      .faq-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .benefit-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .news-layout {
        gap: 16px;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .section {
        padding: 54px 0;
      }

      .brand-row-inner {
        min-height: auto;
        padding: 14px 0;
        gap: 12px;
      }

      .logo-main {
        font-size: 16px;
      }

      .header-cta {
        padding: 0 13px;
        font-size: 13px;
      }

      .channel-inner {
        min-height: 48px;
        padding-bottom: 2px;
      }

      .hero {
        padding: 24px 0 34px;
      }

      .hero-band {
        padding: 20px;
        border-radius: 22px;
      }

      .hero-content {
        gap: 20px;
      }

      .hero-desc {
        font-size: 16px;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .metric-tile {
        min-height: auto;
      }

      .ticker {
        align-items: flex-start;
        border-radius: 18px;
      }

      .ticker-text {
        white-space: normal;
      }

      .section-head {
        display: block;
      }

      .section-note {
        margin-top: 10px;
      }

      .benefit-grid,
      .info-grid,
      .form-grid,
      .side-stat {
        grid-template-columns: 1fr;
      }

      .topic-card {
        grid-template-columns: 1fr;
      }

      .scroll-tools {
        display: none;
      }

      .rail-card {
        flex-basis: 82vw;
      }

      .rank-row,
      .news-link {
        grid-template-columns: auto 1fr;
      }

      .trend-meter,
      .news-time {
        grid-column: 2;
        justify-self: start;
      }

      .form-card {
        padding: 20px;
      }
    }

    @media (max-width: 520px) {
      .search-shell input {
        padding-right: 18px;
      }

      .search-chip {
        display: none;
      }

      .hero-actions,
      .cta-panel .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-topline {
        align-items: flex-start;
      }

      .status-strip {
        gap: 8px;
      }

      .badge {
        font-size: 12px;
      }

      h1 {
        font-size: 32px;
      }

      h2 {
        font-size: 28px;
      }

      .cta-panel {
        padding: 24px;
      }

      summary {
        min-height: 52px;
        font-size: 16px;
      }
    }

/* roulang page: category1 */
:root {
      --score-black: #121212;
      --score-black-2: #18130f;
      --wood: #b87532;
      --orange: #f05a28;
      --cream: #f8f4ea;
      --warm-bg: #f6f0e7;
      --muted-bg: #efe3d2;
      --green: #35c46a;
      --yellow: #f4c430;
      --text: #1d1814;
      --muted: #74685c;
      --line: rgba(29, 24, 20, .12);
      --white-line: rgba(248, 244, 234, .16);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 26px;
      --shadow: 0 16px 40px rgba(18, 18, 18, .12);
      --shadow-soft: 0 10px 24px rgba(18, 18, 18, .08);
      --container: 1180px;
      --fast: 180ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      background:
        radial-gradient(circle at 12% 8%, rgba(240, 90, 40, .10), transparent 28%),
        linear-gradient(180deg, var(--warm-bg) 0%, #fffaf1 46%, var(--warm-bg) 100%);
      color: var(--text);
      line-height: 1.75;
      font-size: 16px;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .32;
      background-image:
        linear-gradient(135deg, rgba(184, 117, 50, .08) 0 1px, transparent 1px 22px),
        radial-gradient(circle, rgba(18, 18, 18, .05) 1px, transparent 1px);
      background-size: 44px 44px, 18px 18px;
      z-index: -2;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    :focus-visible {
      outline: 3px solid rgba(240, 90, 40, .55);
      outline-offset: 3px;
      border-radius: 10px;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: var(--score-black);
      box-shadow: 0 8px 24px rgba(18, 18, 18, .16);
    }

    .brand-row {
      background:
        linear-gradient(90deg, rgba(240, 90, 40, .18), transparent 26%),
        radial-gradient(circle at 78% -40%, rgba(244, 196, 48, .22), transparent 32%),
        var(--score-black);
      color: var(--cream);
      border-bottom: 1px solid var(--white-line);
    }

    .brand-row-inner {
      min-height: 82px;
      display: grid;
      grid-template-columns: auto minmax(260px, 1fr) auto;
      align-items: center;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 250px;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background:
        linear-gradient(135deg, var(--orange), var(--wood)),
        repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,.3) 7px 9px);
      position: relative;
      box-shadow: 0 0 0 5px rgba(248, 244, 234, .08), 0 14px 30px rgba(240, 90, 40, .25);
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      inset: 10px 7px;
      border-top: 3px solid rgba(248,244,234,.92);
      border-bottom: 3px solid rgba(248,244,234,.92);
      transform: skew(-14deg);
    }

    .logo-text {
      display: grid;
      line-height: 1.2;
    }

    .logo-main {
      font-weight: 900;
      letter-spacing: .01em;
      font-size: 19px;
    }

    .logo-sub {
      color: rgba(248, 244, 234, .68);
      font-size: 12px;
      margin-top: 3px;
    }

    .search-shell {
      height: 46px;
      background: rgba(248, 244, 234, .08);
      border: 1px solid rgba(248, 244, 234, .18);
      border-radius: 999px;
      display: flex;
      align-items: center;
      padding: 0 8px 0 18px;
      gap: 12px;
      transition: border-color var(--fast), background var(--fast), box-shadow var(--fast);
    }

    .search-shell:focus-within {
      border-color: rgba(240, 90, 40, .9);
      background: rgba(248, 244, 234, .12);
      box-shadow: 0 0 0 4px rgba(240, 90, 40, .12);
    }

    .search-shell input {
      min-width: 0;
      flex: 1;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--cream);
    }

    .search-shell input::placeholder {
      color: rgba(248, 244, 234, .54);
    }

    .search-chip {
      white-space: nowrap;
      font-size: 12px;
      font-weight: 800;
      color: var(--score-black);
      background: var(--yellow);
      border-radius: 999px;
      padding: 6px 10px;
    }

    .header-cta,
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      font-weight: 900;
      transition: transform var(--fast), box-shadow var(--fast), background var(--fast), color var(--fast), border-color var(--fast);
      position: relative;
      overflow: hidden;
    }

    .header-cta {
      min-height: 44px;
      padding: 0 20px;
      background: var(--orange);
      color: #fff;
      box-shadow: 0 12px 24px rgba(240, 90, 40, .24);
      white-space: nowrap;
    }

    .header-cta:hover,
    .btn:hover {
      transform: translateY(-2px);
    }

    .channel-row {
      background: rgba(246, 240, 231, .96);
      border-bottom: 1px solid rgba(18, 18, 18, .09);
    }

    .channel-inner {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 54px;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(240, 90, 40, .55) transparent;
    }

    .channel-link {
      flex: 0 0 auto;
      padding: 10px 18px;
      border-radius: 999px;
      color: #3a3028;
      font-weight: 850;
      line-height: 1;
      border: 1px solid transparent;
      transition: background var(--fast), color var(--fast), border-color var(--fast), transform var(--fast);
    }

    .channel-link:hover {
      border-color: rgba(240, 90, 40, .38);
      background: rgba(240, 90, 40, .08);
      transform: translateY(-1px);
    }

    .channel-link.active {
      background: var(--score-black);
      color: var(--cream);
      border-color: rgba(18, 18, 18, .8);
      box-shadow: inset 0 -3px 0 var(--orange);
    }

    main {
      display: block;
    }

    .section {
      padding: 72px 0;
    }

    .page-hero {
      position: relative;
      padding: 58px 0 44px;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 0%, rgba(240, 90, 40, .20), transparent 34%),
        linear-gradient(110deg, #fff9ef 0%, #f2dfc5 58%, #e9d0ad 100%);
      border-bottom: 1px solid rgba(18,18,18,.10);
    }

    .page-hero::before {
      content: "";
      position: absolute;
      right: -120px;
      top: -120px;
      width: 420px;
      height: 420px;
      border: 28px solid rgba(184, 117, 50, .18);
      border-radius: 50%;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 7px;
      background: linear-gradient(90deg, var(--orange), var(--yellow), var(--green), var(--orange));
      opacity: .9;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
      gap: 36px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--orange);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 4px;
      border-radius: 999px;
      background: var(--orange);
      box-shadow: 18px 0 0 rgba(240, 90, 40, .28);
    }

    h1 {
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.13;
      letter-spacing: -.04em;
      color: var(--score-black);
      max-width: 780px;
      font-weight: 950;
    }

    .hero-lead {
      margin-top: 18px;
      max-width: 720px;
      color: #4d4238;
      font-size: 18px;
    }

    .hero-actions,
    .cta-actions {
      margin-top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn {
      min-height: 48px;
      padding: 0 22px;
      border: 1px solid transparent;
      isolation: isolate;
    }

    .btn-primary {
      background: var(--orange);
      color: #fff;
      box-shadow: 0 14px 28px rgba(240, 90, 40, .22);
    }

    .btn-primary::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 18px;
      left: 18px;
      background: rgba(255, 255, 255, .18);
      transform: skewX(-22deg);
      z-index: -1;
    }

    .btn-secondary {
      background: rgba(18, 18, 18, .04);
      color: var(--score-black);
      border-color: rgba(18, 18, 18, .22);
    }

    .btn-secondary:hover {
      background: var(--score-black);
      color: var(--cream);
      border-color: var(--score-black);
    }

    .status-pack {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 12px;
      font-weight: 900;
      line-height: 1;
      border: 1px solid rgba(18,18,18,.08);
    }

    .badge::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
    }

    .badge-live {
      background: rgba(240, 90, 40, .12);
      color: #c84016;
    }

    .badge-safe {
      background: rgba(53, 196, 106, .13);
      color: #168b45;
    }

    .badge-check {
      background: rgba(244, 196, 48, .18);
      color: #8a6400;
    }

    .badge-dark {
      background: rgba(18, 18, 18, .88);
      color: var(--cream);
      border-color: rgba(248,244,234,.18);
    }

    .filter-board {
      background:
        linear-gradient(135deg, rgba(18,18,18,.98), rgba(24,19,15,.94)),
        radial-gradient(circle at 80% 0%, rgba(240,90,40,.26), transparent 40%);
      color: var(--cream);
      border: 1px solid rgba(248,244,234,.14);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 22px;
      overflow: hidden;
      position: relative;
    }

    .filter-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, transparent 0 46%, rgba(240,90,40,.16) 46% 48%, transparent 48%),
        radial-gradient(circle at 20% 20%, rgba(248,244,234,.10), transparent 30%);
      pointer-events: none;
    }

    .board-head,
    .board-list,
    .board-note {
      position: relative;
      z-index: 1;
    }

    .board-head {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--white-line);
    }

    .board-title {
      font-size: 20px;
      font-weight: 950;
    }

    .board-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 18px;
    }

    .board-cell {
      min-height: 104px;
      border-radius: 16px;
      background: rgba(248,244,234,.08);
      border: 1px solid rgba(248,244,234,.14);
      padding: 14px;
      transition: transform var(--fast), background var(--fast), border-color var(--fast);
    }

    .board-cell:hover {
      transform: translateY(-3px);
      background: rgba(248,244,234,.12);
      border-color: rgba(240,90,40,.46);
    }

    .cell-code {
      color: var(--yellow);
      font-weight: 950;
      font-size: 13px;
      letter-spacing: .08em;
    }

    .cell-title {
      margin-top: 8px;
      font-weight: 900;
      font-size: 17px;
    }

    .cell-desc {
      margin-top: 4px;
      color: rgba(248,244,234,.68);
      font-size: 13px;
      line-height: 1.55;
    }

    .board-note {
      margin-top: 16px;
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(240, 90, 40, .15);
      color: rgba(248,244,234,.86);
      font-size: 14px;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 22px;
    }

    .breadcrumb a {
      font-weight: 800;
      color: var(--score-black);
    }

    .breadcrumb span {
      color: rgba(116,104,92,.76);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(280px, .45fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-kicker {
      color: var(--orange);
      font-weight: 950;
      letter-spacing: .08em;
      font-size: 13px;
      margin-bottom: 8px;
    }

    h2 {
      font-size: clamp(27px, 3vw, 36px);
      line-height: 1.2;
      letter-spacing: -.03em;
      color: var(--score-black);
      font-weight: 950;
    }

    h3 {
      font-size: 21px;
      line-height: 1.35;
      color: var(--score-black);
      font-weight: 950;
    }

    .section-summary {
      color: var(--muted);
      font-size: 16px;
    }

    .filter-strip {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 12px;
      background: rgba(255,255,255,.68);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-soft);
      margin-bottom: 26px;
      scrollbar-width: thin;
    }

    .filter-pill {
      flex: 0 0 auto;
      border: 1px solid rgba(18,18,18,.12);
      background: var(--cream);
      color: #3c332c;
      border-radius: 999px;
      padding: 10px 15px;
      font-weight: 850;
      transition: background var(--fast), color var(--fast), border-color var(--fast), transform var(--fast);
    }

    .filter-pill:hover,
    .filter-pill.active {
      background: var(--score-black);
      color: var(--cream);
      border-color: var(--score-black);
      transform: translateY(-1px);
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 28px;
      align-items: start;
    }

    .index-panel {
      display: grid;
      gap: 18px;
    }

    .group-card {
      position: relative;
      display: grid;
      grid-template-columns: 86px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 22px;
      background: rgba(255, 250, 241, .88);
      border: 1px solid var(--line);
      border-left: 5px solid var(--orange);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast);
    }

    .group-card:nth-child(2n) {
      border-left-color: var(--wood);
      background: linear-gradient(135deg, rgba(255,250,241,.94), rgba(239,227,210,.74));
    }

    .group-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
      border-color: rgba(240, 90, 40, .34);
    }

    .group-number {
      display: grid;
      place-items: center;
      width: 74px;
      height: 74px;
      border-radius: 22px;
      background:
        linear-gradient(135deg, var(--score-black), #2a211b);
      color: var(--cream);
      font-size: 24px;
      font-weight: 950;
      box-shadow: inset 0 -4px 0 var(--orange);
    }

    .group-copy p {
      margin-top: 8px;
      color: var(--muted);
    }

    .group-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .group-action {
      display: grid;
      gap: 10px;
      justify-items: end;
      min-width: 128px;
    }

    .mini-time {
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
    }

    .link-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 15px;
      border-radius: 999px;
      background: rgba(240, 90, 40, .10);
      color: #c84016;
      font-weight: 900;
      border: 1px solid rgba(240, 90, 40, .26);
      transition: background var(--fast), color var(--fast), transform var(--fast);
    }

    .link-button:hover {
      background: var(--orange);
      color: #fff;
      transform: translateY(-2px);
    }

    .side-stack {
      display: grid;
      gap: 16px;
      position: sticky;
      top: 154px;
    }

    .side-card {
      background: var(--cream);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 20px;
      box-shadow: var(--shadow-soft);
    }

    .side-card.dark {
      color: var(--cream);
      background:
        linear-gradient(145deg, var(--score-black), #251b14);
      border-color: rgba(248,244,234,.14);
    }

    .side-title {
      font-size: 18px;
      font-weight: 950;
      margin-bottom: 12px;
    }

    .step-list,
    .check-list {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .step-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .side-card.dark .step-list li {
      color: rgba(248,244,234,.72);
    }

    .step-list strong {
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      font-size: 13px;
    }

    .check-list li {
      position: relative;
      padding-left: 26px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: #168b45;
      font-weight: 950;
    }

    .spotlight {
      background:
        radial-gradient(circle at 12% 0%, rgba(240,90,40,.20), transparent 32%),
        radial-gradient(circle at 88% 20%, rgba(244,196,48,.20), transparent 28%),
        linear-gradient(135deg, var(--score-black), var(--score-black-2));
      color: var(--cream);
      border-radius: 32px;
      padding: 34px;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .spotlight::after {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -100px;
      width: 260px;
      height: 260px;
      border: 24px solid rgba(248,244,234,.08);
      border-radius: 50%;
    }

    .spot-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 24px;
      align-items: center;
    }

    .spotlight h2 {
      color: var(--cream);
    }

    .spotlight p {
      margin-top: 12px;
      color: rgba(248,244,234,.72);
    }

    .meter-list {
      display: grid;
      gap: 14px;
    }

    .meter-item {
      background: rgba(248,244,234,.08);
      border: 1px solid rgba(248,244,234,.14);
      border-radius: 16px;
      padding: 14px;
    }

    .meter-top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .meter-bar {
      height: 8px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(248,244,234,.13);
    }

    .meter-bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--orange), var(--yellow));
    }

    .scene-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 22px;
    }

    .scene-card {
      background: rgba(255,250,241,.86);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-soft);
    }

    .scene-card.feature {
      min-height: 100%;
      background:
        linear-gradient(135deg, rgba(184,117,50,.16), rgba(255,250,241,.92)),
        repeating-linear-gradient(90deg, rgba(18,18,18,.04) 0 1px, transparent 1px 34px);
    }

    .scene-card p {
      margin-top: 10px;
      color: var(--muted);
    }

    .scene-links {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .scene-link {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding: 13px 14px;
      border-radius: 14px;
      background: rgba(18,18,18,.04);
      border: 1px solid rgba(18,18,18,.08);
      font-weight: 850;
      transition: background var(--fast), border-color var(--fast), transform var(--fast);
    }

    .scene-link:hover {
      background: rgba(240,90,40,.10);
      border-color: rgba(240,90,40,.28);
      transform: translateX(3px);
    }

    .scene-link span {
      color: var(--orange);
      font-weight: 950;
    }

    .notice-band {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .notice-item {
      padding: 18px;
      border-radius: var(--radius-md);
      background: var(--cream);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .notice-item strong {
      display: block;
      font-size: 18px;
      margin-bottom: 6px;
      color: var(--score-black);
    }

    .notice-item p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .faq-wrap {
      display: grid;
      gap: 12px;
      max-width: 920px;
      margin: 0 auto;
    }

    details.faq-item {
      background: rgba(255,250,241,.9);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    details.faq-item[open] {
      border-color: rgba(240,90,40,.32);
    }

    .faq-item summary {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 20px;
      cursor: pointer;
      font-weight: 950;
      color: var(--score-black);
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(240,90,40,.12);
      color: var(--orange);
      font-size: 20px;
      line-height: 1;
      transition: transform var(--fast), background var(--fast);
    }

    .faq-item[open] summary::after {
      content: "−";
      background: var(--orange);
      color: #fff;
      transform: rotate(180deg);
    }

    .faq-item p {
      padding: 0 20px 18px;
      color: var(--muted);
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      padding: 42px;
      color: var(--cream);
      background:
        radial-gradient(circle at 15% 0%, rgba(240,90,40,.34), transparent 32%),
        radial-gradient(circle at 85% 10%, rgba(244,196,48,.20), transparent 30%),
        linear-gradient(135deg, #121212, #241810);
      box-shadow: var(--shadow);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(118deg, transparent 0 45%, rgba(248,244,234,.10) 45% 47%, transparent 47%),
        radial-gradient(circle, rgba(248,244,234,.08) 1px, transparent 1px);
      background-size: auto, 20px 20px;
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(300px, .55fr);
      gap: 28px;
      align-items: center;
    }

    .cta-panel h2 {
      color: var(--cream);
    }

    .cta-panel p {
      margin-top: 12px;
      color: rgba(248,244,234,.74);
    }

    .assurance {
      display: grid;
      gap: 10px;
    }

    .assurance div {
      padding: 13px 14px;
      border-radius: 14px;
      background: rgba(248,244,234,.08);
      border: 1px solid rgba(248,244,234,.13);
      font-weight: 850;
    }

    .site-footer {
      margin-top: 72px;
      padding: 46px 0 24px;
      color: var(--cream);
      background:
        linear-gradient(90deg, rgba(240,90,40,.20), transparent 34%),
        radial-gradient(circle at 90% 0%, rgba(184,117,50,.24), transparent 30%),
        var(--score-black);
      border-top: 5px solid var(--orange);
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(248,244,234,.08) 1px, transparent 1px);
      background-size: 18px 18px;
      opacity: .35;
      pointer-events: none;
    }

    .footer-grid,
    .copyright {
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.15fr .7fr 1fr;
      gap: 34px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(248,244,234,.14);
    }

    .footer-brand {
      font-size: 21px;
      font-weight: 950;
      margin-bottom: 10px;
    }

    .footer-title {
      font-weight: 950;
      margin-bottom: 12px;
      color: #fff;
    }

    .footer-text {
      color: rgba(248,244,234,.70);
      font-size: 14px;
      line-height: 1.75;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(248,244,234,.74);
      transition: color var(--fast), transform var(--fast);
    }

    .footer-links a:hover {
      color: var(--yellow);
      transform: translateX(3px);
    }

    .copyright {
      padding-top: 18px;
      color: rgba(248,244,234,.58);
      font-size: 13px;
    }

    @media (max-width: 1080px) {
      .brand-row-inner {
        grid-template-columns: 1fr auto;
      }

      .search-shell {
        grid-column: 1 / -1;
        order: 3;
        margin-bottom: 14px;
      }

      .hero-grid,
      .content-layout,
      .spot-grid,
      .scene-grid,
      .cta-content {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
        grid-template-columns: repeat(3, 1fr);
      }

      .notice-band {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 820px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .section {
        padding: 52px 0;
      }

      .brand-row-inner {
        min-height: auto;
        padding: 14px 0;
        gap: 14px;
      }

      .logo {
        min-width: 0;
      }

      .logo-main {
        font-size: 16px;
      }

      .logo-sub {
        display: none;
      }

      .header-cta {
        min-height: 40px;
        padding: 0 14px;
        font-size: 13px;
      }

      .channel-inner {
        width: 100%;
        padding: 0 14px;
      }

      .page-hero {
        padding-top: 42px;
      }

      .board-list {
        grid-template-columns: 1fr;
      }

      .section-head {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .group-card {
        grid-template-columns: 1fr;
      }

      .group-number {
        width: 62px;
        height: 62px;
        border-radius: 18px;
      }

      .group-action {
        justify-items: start;
      }

      .side-stack {
        grid-template-columns: 1fr;
      }

      .spotlight,
      .cta-panel {
        border-radius: 24px;
        padding: 26px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    @media (max-width: 520px) {
      body {
        font-size: 15px;
      }

      .brand-row-inner {
        grid-template-columns: 1fr;
      }

      .header-cta,
      .search-shell {
        width: 100%;
      }

      .header-cta {
        justify-self: stretch;
      }

      .search-chip {
        display: none;
      }

      .channel-link {
        padding: 10px 14px;
        font-size: 14px;
      }

      h1 {
        font-size: 31px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .filter-board {
        padding: 18px;
      }

      .board-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .filter-strip {
        margin-left: -14px;
        margin-right: -14px;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
      }

      .group-card,
      .scene-card,
      .notice-item,
      .side-card {
        border-radius: 18px;
        padding: 18px;
        box-shadow: 0 8px 20px rgba(18,18,18,.08);
      }

      .notice-band {
        grid-template-columns: 1fr;
      }

      .faq-item summary {
        min-height: 50px;
        padding: 14px 16px;
        font-size: 16px;
      }

      .faq-item p {
        padding: 0 16px 16px;
      }

      .spotlight,
      .cta-panel {
        padding: 22px;
      }

      .site-footer {
        margin-top: 48px;
      }
    }

/* roulang page: category2 */
:root {
      --score-black: #121212;
      --deep-black: #18130f;
      --wood: #b87532;
      --wood-soft: #d7a15e;
      --orange: #f05a28;
      --orange-dark: #cc431a;
      --cream: #f8f4ea;
      --warm-bg: #f6f0e7;
      --muted-bg: #eee3d4;
      --green: #35c46a;
      --yellow: #f4c430;
      --text: #211b16;
      --muted: #6f6257;
      --line: rgba(33, 27, 22, 0.13);
      --line-dark: rgba(248, 244, 234, 0.16);
      --shadow: 0 16px 40px rgba(18, 18, 18, 0.12);
      --shadow-soft: 0 10px 28px rgba(18, 18, 18, 0.08);
      --radius-sm: 12px;
      --radius: 18px;
      --radius-lg: 28px;
      --container: 1180px;
      --fast: 180ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      background:
        radial-gradient(circle at 15% 8%, rgba(240, 90, 40, 0.13), transparent 30%),
        linear-gradient(180deg, #fbf7ef 0%, var(--warm-bg) 44%, #fffaf1 100%);
      color: var(--text);
      line-height: 1.75;
      font-size: 16px;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
      background: none;
    }

    :focus-visible {
      outline: 3px solid rgba(240, 90, 40, 0.58);
      outline-offset: 3px;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--score-black);
      box-shadow: 0 12px 34px rgba(18, 18, 18, 0.2);
    }

    .brand-row {
      background:
        linear-gradient(115deg, rgba(240, 90, 40, 0.18), transparent 36%),
        radial-gradient(circle at 80% 0%, rgba(248, 244, 234, 0.14), transparent 30%),
        var(--score-black);
      border-bottom: 1px solid var(--line-dark);
    }

    .brand-row-inner {
      min-height: 76px;
      display: grid;
      grid-template-columns: auto minmax(260px, 1fr) auto;
      gap: 26px;
      align-items: center;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      min-width: 238px;
    }

    .logo-mark {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background:
        linear-gradient(135deg, transparent 42%, rgba(18, 18, 18, 0.38) 43% 50%, transparent 51%),
        radial-gradient(circle at 34% 30%, #fff1d5, var(--wood) 38%, var(--orange) 72%);
      position: relative;
      box-shadow: 0 0 0 5px rgba(248, 244, 234, 0.08), 0 10px 26px rgba(240, 90, 40, 0.28);
      flex: 0 0 auto;
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      inset: 9px;
      border: 2px solid rgba(18, 18, 18, 0.42);
      border-left: 0;
      border-right: 0;
      border-radius: 50%;
      transform: rotate(-22deg);
    }

    .logo-mark::after {
      inset: 12px 5px;
      border-color: rgba(248, 244, 234, 0.45);
      transform: rotate(22deg);
    }

    .logo-text {
      display: grid;
      gap: 2px;
    }

    .logo-main {
      color: var(--cream);
      font-size: 19px;
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.15;
    }

    .logo-sub {
      color: rgba(248, 244, 234, 0.68);
      font-size: 12px;
      letter-spacing: 0.12em;
    }

    .search-shell {
      height: 44px;
      border: 1px solid var(--line-dark);
      background: rgba(248, 244, 234, 0.08);
      border-radius: 999px;
      display: flex;
      align-items: center;
      padding: 4px 5px 4px 18px;
      box-shadow: inset 0 0 0 1px rgba(248, 244, 234, 0.03);
    }

    .search-shell:focus-within {
      border-color: rgba(240, 90, 40, 0.82);
      box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.15);
    }

    .search-shell input {
      width: 100%;
      min-width: 0;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--cream);
      font-size: 14px;
    }

    .search-shell input::placeholder {
      color: rgba(248, 244, 234, 0.58);
    }

    .search-chip {
      flex: 0 0 auto;
      background: var(--cream);
      color: var(--score-black);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      padding: 7px 11px;
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--orange);
      color: #fff;
      font-weight: 900;
      box-shadow: 0 12px 24px rgba(240, 90, 40, 0.28);
      transition: transform var(--fast), background var(--fast), box-shadow var(--fast);
      white-space: nowrap;
    }

    .header-cta:hover {
      transform: translateY(-2px);
      background: #ff6b36;
      box-shadow: 0 16px 30px rgba(240, 90, 40, 0.36);
    }

    .channel-row {
      background: rgba(246, 240, 231, 0.96);
      border-bottom: 1px solid rgba(184, 117, 50, 0.22);
    }

    .channel-inner {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 54px;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(240, 90, 40, 0.6) transparent;
    }

    .channel-link {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 17px;
      border-radius: 999px;
      color: #3b3028;
      font-weight: 800;
      border: 1px solid transparent;
      transition: background var(--fast), color var(--fast), border var(--fast), transform var(--fast);
    }

    .channel-link:hover {
      background: #fff7ec;
      border-color: rgba(240, 90, 40, 0.28);
      transform: translateY(-1px);
    }

    .channel-link.active {
      background: var(--score-black);
      color: var(--cream);
      border-color: rgba(240, 90, 40, 0.5);
      box-shadow: 0 10px 22px rgba(18, 18, 18, 0.16);
    }

    main {
      position: relative;
    }

    .section {
      padding: 70px 0;
    }

    .section-tight {
      padding: 48px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 900;
      color: var(--orange-dark);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 4px;
      border-radius: 999px;
      background: var(--orange);
      transform: skewX(-24deg);
    }

    .page-hero {
      padding: 58px 0 44px;
      background:
        linear-gradient(120deg, rgba(18, 18, 18, 0.9), rgba(24, 19, 15, 0.98)),
        radial-gradient(circle at 18% 0%, rgba(240, 90, 40, 0.28), transparent 34%),
        radial-gradient(circle at 84% 16%, rgba(248, 244, 234, 0.18), transparent 30%);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(112deg, rgba(248, 244, 234, 0.05) 0 1px, transparent 1px 30px),
        radial-gradient(ellipse at 50% -10%, rgba(248, 244, 234, 0.22), transparent 44%);
      pointer-events: none;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -210px;
      bottom: -310px;
      border: 2px solid rgba(184, 117, 50, 0.36);
      border-radius: 50%;
      box-shadow: inset 0 0 0 18px rgba(240, 90, 40, 0.05);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 34px;
      align-items: stretch;
      z-index: 1;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      color: rgba(248, 244, 234, 0.72);
      font-size: 14px;
      margin-bottom: 20px;
    }

    .breadcrumb a {
      color: rgba(248, 244, 234, 0.82);
    }

    .breadcrumb a:hover {
      color: #fff;
    }

    .hero-copy h1 {
      max-width: 760px;
      margin-top: 14px;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.13;
      letter-spacing: -0.05em;
      font-weight: 950;
    }

    .hero-copy p {
      max-width: 680px;
      margin-top: 20px;
      color: rgba(248, 244, 234, 0.82);
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 900;
      transition: transform var(--fast), box-shadow var(--fast), background var(--fast), color var(--fast), border-color var(--fast);
      position: relative;
      overflow: hidden;
    }

    .btn::after {
      content: "";
      width: 18px;
      height: 3px;
      border-radius: 999px;
      background: currentColor;
      opacity: 0.58;
      transform: skewX(-28deg);
    }

    .btn-primary {
      background: var(--orange);
      color: #fff;
      box-shadow: 0 14px 28px rgba(240, 90, 40, 0.32);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: #ff6b36;
      box-shadow: 0 18px 36px rgba(240, 90, 40, 0.4);
    }

    .btn-secondary {
      border: 1px solid rgba(248, 244, 234, 0.34);
      color: var(--cream);
      background: rgba(248, 244, 234, 0.06);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      background: var(--cream);
      color: var(--score-black);
      border-color: var(--cream);
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 28px;
      padding: 4px 11px;
      border-radius: 999px;
      font-size: 13px;
      line-height: 1;
      font-weight: 900;
      border: 1px solid rgba(18, 18, 18, 0.08);
    }

    .badge::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
    }

    .badge-live {
      background: rgba(240, 90, 40, 0.16);
      color: #ff7a42;
      border-color: rgba(240, 90, 40, 0.28);
    }

    .badge-safe {
      background: rgba(53, 196, 106, 0.16);
      color: #46de7e;
      border-color: rgba(53, 196, 106, 0.28);
    }

    .badge-check {
      background: rgba(244, 196, 48, 0.18);
      color: #ffe27a;
      border-color: rgba(244, 196, 48, 0.3);
    }

    .badge-dark {
      background: var(--score-black);
      color: var(--cream);
      border-color: rgba(248, 244, 234, 0.18);
    }

    .badge-light {
      background: #fff7ed;
      color: var(--orange-dark);
      border-color: rgba(240, 90, 40, 0.18);
    }

    .notice-board {
      border-radius: var(--radius-lg);
      background:
        linear-gradient(145deg, rgba(248, 244, 234, 0.1), rgba(248, 244, 234, 0.04)),
        rgba(18, 18, 18, 0.66);
      border: 1px solid rgba(248, 244, 234, 0.18);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .notice-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(240, 90, 40, 0.16), transparent);
      transform: translateX(-55%) skewX(-18deg);
      width: 60%;
      pointer-events: none;
    }

    .board-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(248, 244, 234, 0.16);
    }

    .board-title strong {
      font-size: 20px;
      font-weight: 950;
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 18px;
    }

    .time-box {
      border-radius: 16px;
      background: rgba(248, 244, 234, 0.08);
      border: 1px solid rgba(248, 244, 234, 0.14);
      padding: 14px 10px;
      text-align: center;
    }

    .time-box b {
      display: block;
      font-size: 31px;
      line-height: 1;
      color: #fff;
      letter-spacing: -0.04em;
    }

    .time-box span {
      display: block;
      margin-top: 7px;
      font-size: 12px;
      color: rgba(248, 244, 234, 0.62);
    }

    .alert-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .alert-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 13px;
      border-radius: 16px;
      background: rgba(248, 244, 234, 0.07);
      border: 1px solid rgba(248, 244, 234, 0.1);
    }

    .alert-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin-top: 7px;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(53, 196, 106, 0.13);
      flex: 0 0 auto;
    }

    .alert-item:nth-child(2) .alert-dot {
      background: var(--yellow);
      box-shadow: 0 0 0 6px rgba(244, 196, 48, 0.14);
    }

    .alert-item:nth-child(3) .alert-dot {
      background: var(--orange);
      box-shadow: 0 0 0 6px rgba(240, 90, 40, 0.14);
    }

    .alert-item strong {
      display: block;
      color: #fff;
      line-height: 1.35;
    }

    .alert-item span {
      color: rgba(248, 244, 234, 0.68);
      font-size: 14px;
    }

    .ticker {
      margin-top: 28px;
      border-radius: 999px;
      background: rgba(240, 90, 40, 0.14);
      border: 1px solid rgba(240, 90, 40, 0.24);
      color: rgba(248, 244, 234, 0.88);
      padding: 10px 18px;
      font-size: 14px;
      display: flex;
      gap: 12px;
      align-items: center;
      overflow: hidden;
    }

    .ticker b {
      flex: 0 0 auto;
      color: #fff;
    }

    .section-head {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 28px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-head h2 {
      margin-top: 10px;
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.22;
      letter-spacing: -0.04em;
      font-weight: 950;
    }

    .section-head p {
      color: var(--muted);
      font-size: 17px;
    }

    .timeline-shell {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 28px;
      align-items: start;
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 18px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 24px;
      bottom: 24px;
      left: 24px;
      width: 3px;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--orange), var(--wood), rgba(184, 117, 50, 0.12));
    }

    .timeline-card {
      position: relative;
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 16px;
      border-radius: var(--radius);
      background: rgba(255, 250, 241, 0.88);
      border: 1px solid rgba(184, 117, 50, 0.18);
      box-shadow: var(--shadow-soft);
      padding: 20px;
      transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast);
    }

    .timeline-card:hover {
      transform: translateY(-3px);
      border-color: rgba(240, 90, 40, 0.46);
      box-shadow: var(--shadow);
    }

    .timeline-index {
      position: relative;
      z-index: 1;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: var(--score-black);
      color: var(--cream);
      display: grid;
      place-items: center;
      font-weight: 950;
      box-shadow: 0 12px 24px rgba(18, 18, 18, 0.18);
    }

    .timeline-content h3 {
      font-size: 22px;
      line-height: 1.3;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .timeline-content p {
      color: var(--muted);
      margin-bottom: 12px;
    }

    .meta-line {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: #7c6b5e;
    }

    .side-stack {
      display: grid;
      gap: 16px;
      position: sticky;
      top: 154px;
    }

    .check-panel,
    .compact-card,
    .rule-card,
    .faq-card,
    .cta-panel {
      border-radius: var(--radius);
      border: 1px solid rgba(184, 117, 50, 0.18);
      background: rgba(255, 250, 241, 0.88);
      box-shadow: var(--shadow-soft);
    }

    .check-panel {
      padding: 22px;
      background:
        linear-gradient(135deg, rgba(248, 244, 234, 0.96), rgba(238, 227, 212, 0.88)),
        repeating-linear-gradient(90deg, transparent 0 26px, rgba(184, 117, 50, 0.05) 26px 27px);
    }

    .check-panel h2,
    .compact-card h3 {
      font-size: 22px;
      font-weight: 950;
      line-height: 1.25;
      margin-bottom: 14px;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #4d4037;
      padding: 11px 0;
      border-bottom: 1px dashed rgba(184, 117, 50, 0.22);
    }

    .check-list li:last-child {
      border-bottom: 0;
    }

    .check-list li::before {
      content: "✓";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: rgba(53, 196, 106, 0.16);
      color: #168940;
      font-weight: 950;
      margin-top: 3px;
      flex: 0 0 auto;
    }

    .compact-card {
      padding: 20px;
    }

    .compact-card p {
      color: var(--muted);
      margin-bottom: 14px;
    }

    .mini-links {
      display: grid;
      gap: 9px;
    }

    .mini-links a {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      min-height: 42px;
      padding: 0 13px;
      border-radius: 12px;
      background: #fff6ea;
      color: #3d3129;
      font-weight: 800;
      border: 1px solid rgba(184, 117, 50, 0.14);
      transition: transform var(--fast), background var(--fast), border-color var(--fast);
    }

    .mini-links a:hover {
      transform: translateX(3px);
      background: #fff;
      border-color: rgba(240, 90, 40, 0.36);
    }

    .mini-links a::after {
      content: "→";
      color: var(--orange);
    }

    .rule-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: stretch;
    }

    .rule-card {
      padding: 26px;
      position: relative;
      overflow: hidden;
      min-height: 265px;
      transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast);
    }

    .rule-card:hover {
      transform: translateY(-3px);
      border-color: rgba(240, 90, 40, 0.42);
      box-shadow: var(--shadow);
    }

    .rule-card.dark {
      background:
        radial-gradient(circle at 85% 0%, rgba(240, 90, 40, 0.22), transparent 32%),
        linear-gradient(135deg, var(--score-black), #24180f);
      color: var(--cream);
      border-color: rgba(248, 244, 234, 0.16);
    }

    .rule-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: var(--orange);
    }

    .rule-card h2,
    .rule-card h3 {
      font-size: 26px;
      line-height: 1.22;
      font-weight: 950;
      margin: 14px 0 10px;
    }

    .rule-card p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .rule-card.dark p {
      color: rgba(248, 244, 234, 0.76);
    }

    .rule-points {
      list-style: none;
      display: grid;
      gap: 11px;
    }

    .rule-points li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #4c3e34;
    }

    .rule-card.dark .rule-points li {
      color: rgba(248, 244, 234, 0.84);
    }

    .rule-points li::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--orange);
      margin-top: 9px;
      flex: 0 0 auto;
      box-shadow: 0 0 0 5px rgba(240, 90, 40, 0.12);
    }

    .split-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
    }

    .status-map {
      border-radius: var(--radius-lg);
      background: var(--score-black);
      color: var(--cream);
      padding: 28px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .status-map::after {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      border: 24px solid rgba(184, 117, 50, 0.18);
    }

    .status-map h2 {
      font-size: 30px;
      line-height: 1.2;
      font-weight: 950;
      margin: 10px 0 14px;
      position: relative;
      z-index: 1;
    }

    .status-map p {
      color: rgba(248, 244, 234, 0.76);
      position: relative;
      z-index: 1;
    }

    .status-legend {
      display: grid;
      gap: 12px;
      margin-top: 22px;
      position: relative;
      z-index: 1;
    }

    .legend-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px;
      border-radius: 16px;
      background: rgba(248, 244, 234, 0.07);
      border: 1px solid rgba(248, 244, 234, 0.1);
    }

    .legend-item b {
      display: inline-flex;
      min-width: 78px;
      justify-content: center;
      border-radius: 999px;
      padding: 3px 9px;
      font-size: 13px;
      background: rgba(240, 90, 40, 0.18);
      color: #ff8b5e;
    }

    .legend-item:nth-child(2) b {
      background: rgba(53, 196, 106, 0.16);
      color: #59e68b;
    }

    .legend-item:nth-child(3) b {
      background: rgba(244, 196, 48, 0.18);
      color: #ffe47d;
    }

    .notice-cards {
      display: grid;
      gap: 16px;
    }

    .notice-mini {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      align-items: start;
      padding: 20px;
      border-radius: var(--radius);
      background: rgba(255, 250, 241, 0.9);
      border: 1px solid rgba(184, 117, 50, 0.18);
      box-shadow: var(--shadow-soft);
      transition: transform var(--fast), border-color var(--fast);
    }

    .notice-mini:hover {
      transform: translateY(-3px);
      border-color: rgba(240, 90, 40, 0.38);
    }

    .notice-icon {
      width: 48px;
      height: 48px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background:
        linear-gradient(135deg, rgba(240, 90, 40, 0.18), rgba(184, 117, 50, 0.12)),
        #fff2e2;
      color: var(--orange-dark);
      font-weight: 950;
      font-size: 19px;
    }

    .notice-mini h3 {
      font-size: 21px;
      line-height: 1.25;
      font-weight: 950;
      margin-bottom: 6px;
    }

    .notice-mini p {
      color: var(--muted);
    }

    .process-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      counter-reset: step;
    }

    .process-item {
      counter-increment: step;
      border-radius: var(--radius);
      background: #fff9ef;
      border: 1px solid rgba(184, 117, 50, 0.18);
      box-shadow: var(--shadow-soft);
      padding: 22px;
      position: relative;
      overflow: hidden;
      min-height: 220px;
    }

    .process-item::before {
      content: "0" counter(step);
      position: absolute;
      right: 16px;
      top: 8px;
      font-size: 58px;
      line-height: 1;
      font-weight: 950;
      color: rgba(184, 117, 50, 0.12);
      letter-spacing: -0.08em;
    }

    .process-item::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      height: 4px;
      width: 100%;
      background: linear-gradient(90deg, var(--orange), var(--wood));
    }

    .process-item h3 {
      position: relative;
      font-size: 21px;
      font-weight: 950;
      line-height: 1.28;
      margin: 8px 0 10px;
    }

    .process-item p {
      position: relative;
      color: var(--muted);
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: 0.72fr 1.28fr;
      gap: 28px;
      align-items: start;
    }

    .faq-card {
      overflow: hidden;
    }

    details {
      border-bottom: 1px solid rgba(184, 117, 50, 0.18);
      background: rgba(255, 250, 241, 0.78);
    }

    details:last-child {
      border-bottom: 0;
    }

    summary {
      list-style: none;
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 22px;
      font-weight: 950;
      cursor: pointer;
      color: #2c231d;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: var(--score-black);
      color: var(--cream);
      flex: 0 0 auto;
      transition: transform var(--fast), background var(--fast);
    }

    details[open] summary::after {
      content: "−";
      transform: rotate(180deg);
      background: var(--orange);
    }

    details p {
      padding: 0 22px 20px 22px;
      color: var(--muted);
    }

    .cta-panel {
      border-radius: 32px;
      padding: 34px;
      background:
        radial-gradient(circle at 12% 10%, rgba(240, 90, 40, 0.28), transparent 28%),
        radial-gradient(circle at 90% 0%, rgba(248, 244, 234, 0.18), transparent 36%),
        linear-gradient(135deg, var(--score-black), #24180f);
      color: var(--cream);
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 70px rgba(18, 18, 18, 0.22);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, transparent 0 44%, rgba(248, 244, 234, 0.08) 45% 47%, transparent 48%),
        repeating-linear-gradient(90deg, rgba(248, 244, 234, 0.04) 0 1px, transparent 1px 24px);
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .cta-panel h2 {
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.18;
      font-weight: 950;
      letter-spacing: -0.04em;
      margin-bottom: 12px;
    }

    .cta-panel p {
      color: rgba(248, 244, 234, 0.78);
      max-width: 720px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .assurance {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .assurance span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 7px 12px;
      background: rgba(248, 244, 234, 0.08);
      border: 1px solid rgba(248, 244, 234, 0.13);
      color: rgba(248, 244, 234, 0.82);
      font-weight: 800;
      font-size: 14px;
    }

    .site-footer {
      background:
        radial-gradient(circle at 10% 0%, rgba(240, 90, 40, 0.2), transparent 28%),
        linear-gradient(180deg, #18130f, #0f0f0f);
      color: var(--cream);
      padding: 52px 0 28px;
      border-top: 4px solid var(--orange);
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle, rgba(248, 244, 234, 0.08) 1px, transparent 1px);
      background-size: 18px 18px;
      opacity: 0.18;
      pointer-events: none;
    }

    .footer-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.2fr 0.7fr 1fr;
      gap: 34px;
      z-index: 1;
    }

    .footer-brand {
      font-size: 22px;
      line-height: 1.2;
      font-weight: 950;
      margin-bottom: 12px;
    }

    .footer-title {
      font-weight: 950;
      margin-bottom: 12px;
      color: #fff;
    }

    .footer-text {
      color: rgba(248, 244, 234, 0.68);
      max-width: 520px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(248, 244, 234, 0.72);
      transition: color var(--fast), transform var(--fast);
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(3px);
    }

    .copyright {
      position: relative;
      z-index: 1;
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(248, 244, 234, 0.14);
      color: rgba(248, 244, 234, 0.55);
      font-size: 14px;
    }

    @media (max-width: 1100px) {
      .brand-row-inner {
        grid-template-columns: auto 1fr;
      }

      .header-cta {
        grid-column: 2;
        justify-self: end;
      }

      .hero-inner,
      .timeline-shell,
      .rule-grid,
      .split-grid,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
        grid-template-columns: repeat(2, 1fr);
      }

      .process-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-head {
        grid-template-columns: 1fr;
        gap: 12px;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .brand-row-inner {
        min-height: auto;
        padding: 14px 0;
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .logo {
        min-width: 0;
      }

      .search-shell {
        width: 100%;
      }

      .header-cta {
        grid-column: auto;
        justify-self: stretch;
      }

      .channel-inner {
        min-height: 50px;
        padding-bottom: 2px;
      }

      .channel-link {
        min-height: 34px;
        padding: 0 14px;
      }

      .page-hero {
        padding: 38px 0 34px;
      }

      .hero-copy p {
        font-size: 16px;
      }

      .notice-board {
        padding: 18px;
        border-radius: 22px;
      }

      .countdown {
        gap: 8px;
      }

      .time-box b {
        font-size: 25px;
      }

      .section {
        padding: 50px 0;
      }

      .section-tight {
        padding: 38px 0;
      }

      .timeline-card {
        grid-template-columns: 44px 1fr;
        gap: 13px;
        padding: 17px;
      }

      .timeline::before {
        left: 21px;
      }

      .timeline-index {
        width: 44px;
        height: 44px;
      }

      .side-stack,
      .process-strip,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-inner {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .rule-card,
      .status-map,
      .cta-panel {
        padding: 24px;
      }
    }

    @media (max-width: 520px) {
      .logo-main {
        font-size: 17px;
      }

      .logo-sub {
        font-size: 11px;
      }

      .search-shell {
        height: 42px;
        padding-left: 13px;
      }

      .search-chip {
        display: none;
      }

      .hero-actions,
      .cta-actions {
        width: 100%;
      }

      .btn {
        width: 100%;
      }

      .badge-row {
        gap: 8px;
      }

      .ticker {
        border-radius: 16px;
        align-items: flex-start;
      }

      .countdown {
        grid-template-columns: 1fr;
      }

      .board-title {
        align-items: flex-start;
        flex-direction: column;
      }

      .notice-mini {
        grid-template-columns: 1fr;
      }

      .process-item {
        min-height: auto;
      }

      summary {
        min-height: 56px;
        padding: 16px;
        font-size: 16px;
      }

      details p {
        padding: 0 16px 18px;
      }

      .footer-grid {
        gap: 24px;
      }
    }
