/* roulang page: index */
:root {
      --bg: #090806;
      --bg-soft: #12100d;
      --panel: #18140f;
      --panel-2: #211a12;
      --gold: #d8ad5b;
      --gold-soft: #f0d48b;
      --gold-deep: #9b7133;
      --wine: #6b1d23;
      --green: #1f4a39;
      --text: #fff7e6;
      --muted: #c8bda5;
      --weak: #8f826b;
      --line: rgba(216, 173, 91, .28);
      --line-strong: rgba(240, 212, 139, .55);
      --shadow: 0 16px 42px rgba(0, 0, 0, .34);
      --shadow-sm: 0 8px 22px rgba(0, 0, 0, .24);
      --radius: 8px;
      --radius-sm: 6px;
      --container: 1240px;
      --ease: .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 12%, rgba(107, 29, 35, .18), transparent 34%),
        linear-gradient(135deg, #080705 0%, #15100b 50%, #090806 100%);
      line-height: 1.7;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible {
      outline: 2px solid var(--gold-soft);
      outline-offset: 3px;
    }

    .site-container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(216, 173, 91, .2);
      background: rgba(9, 8, 6, .92);
      backdrop-filter: blur(14px);
    }

    .nav-shell {
      min-height: 76px;
      display: grid;
      grid-template-columns: minmax(220px, 1fr) auto minmax(180px, 1fr);
      align-items: center;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      font-weight: 800;
      color: var(--gold-soft);
      letter-spacing: 0;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, #2d2214, #c69646);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
      display: grid;
      place-items: center;
      color: #130d07;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .brand-text {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 15px;
    }

    .seg-nav {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border: 1px solid rgba(216, 173, 91, .25);
      border-radius: var(--radius);
      background: rgba(18, 16, 13, .88);
      max-width: 100%;
    }

    .seg-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 15px;
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      color: var(--muted);
      font-size: 14px;
      white-space: nowrap;
    }

    .seg-nav a:hover {
      color: var(--gold-soft);
      border-color: rgba(216, 173, 91, .35);
      background: rgba(216, 173, 91, .08);
    }

    .seg-nav a.active {
      color: #15100a;
      background: linear-gradient(180deg, var(--gold-soft), var(--gold));
      border-color: var(--gold-soft);
      font-weight: 700;
    }

    .nav-action {
      display: flex;
      justify-content: flex-end;
    }

    .btn-gold,
    .btn-outline-gold,
    .btn-darkline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      font-weight: 750;
      line-height: 1.2;
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
      white-space: nowrap;
    }

    .btn-gold {
      color: #130d07;
      background: linear-gradient(180deg, var(--gold-soft), var(--gold));
      border-color: var(--gold-soft);
      box-shadow: 0 10px 22px rgba(216, 173, 91, .18);
    }

    .btn-gold:hover {
      color: #090806;
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(216, 173, 91, .25);
    }

    .btn-outline-gold {
      color: var(--gold-soft);
      background: rgba(216, 173, 91, .04);
      border-color: rgba(216, 173, 91, .45);
    }

    .btn-outline-gold:hover {
      color: var(--text);
      border-color: var(--gold-soft);
      background: rgba(216, 173, 91, .12);
      transform: translateY(-1px);
    }

    .btn-darkline {
      color: var(--muted);
      background: rgba(255, 247, 230, .03);
      border-color: rgba(255, 247, 230, .12);
    }

    .btn-darkline:hover {
      color: var(--gold-soft);
      border-color: rgba(216, 173, 91, .35);
      background: rgba(216, 173, 91, .08);
    }

    .section {
      padding: 76px 0;
      position: relative;
    }

    .section.tight {
      padding: 48px 0;
    }

    .section-band {
      border-top: 1px solid rgba(216, 173, 91, .16);
      border-bottom: 1px solid rgba(216, 173, 91, .16);
      background: rgba(18, 16, 13, .62);
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 28px;
    }

    .section-title {
      margin: 0 0 8px;
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.18;
      font-weight: 850;
      letter-spacing: 0;
    }

    .section-copy {
      max-width: 720px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-soft);
      font-size: 13px;
      font-weight: 750;
      margin-bottom: 14px;
    }

    .eyebrow::before {
      content: "";
      width: 22px;
      height: 1px;
      background: var(--gold);
    }

    .hero {
      padding: 54px 0 76px;
      overflow: hidden;
    }

    .hero-stage {
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(360px, .86fr);
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      position: relative;
      min-height: 520px;
      padding: clamp(30px, 5vw, 58px);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(120deg, rgba(24, 20, 15, .96) 0%, rgba(24, 20, 15, .86) 62%, rgba(107, 29, 35, .22) 100%),
        linear-gradient(135deg, rgba(216, 173, 91, .18), transparent 42%);
      box-shadow: var(--shadow);
      clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    h1 {
      max-width: 760px;
      margin: 0;
      font-size: clamp(34px, 5vw, 68px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-desc {
      max-width: 760px;
      margin: 22px 0 0;
      color: var(--muted);
      font-size: clamp(16px, 1.5vw, 19px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 34px;
      max-width: 720px;
    }

    .stat-chip {
      min-height: 86px;
      padding: 16px;
      border: 1px solid rgba(216, 173, 91, .22);
      border-radius: var(--radius-sm);
      background: rgba(9, 8, 6, .42);
    }

    .stat-num {
      display: block;
      color: var(--gold-soft);
      font-size: 26px;
      line-height: 1;
      font-weight: 900;
    }

    .stat-label {
      display: block;
      margin-top: 8px;
      color: var(--weak);
      font-size: 13px;
    }

    .preview-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(33, 26, 18, .96), rgba(13, 11, 8, .98));
      box-shadow: var(--shadow);
      padding: 18px;
      display: grid;
      gap: 16px;
    }

    .cover-card {
      min-height: 230px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(216, 173, 91, .3);
      background:
        linear-gradient(135deg, rgba(216, 173, 91, .18), rgba(107, 29, 35, .24)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 18px),
        #15100b;
      position: relative;
      overflow: hidden;
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .cover-card::after {
      content: "";
      position: absolute;
      inset: auto -8% -30% auto;
      width: 210px;
      height: 210px;
      border: 1px solid rgba(240, 212, 139, .34);
      transform: rotate(18deg);
      background: rgba(216, 173, 91, .06);
    }

    .status-row,
    .entry-row,
    .rank-row,
    .news-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .badge-soft,
    .badge-hot,
    .badge-green {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 26px;
      padding: 3px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 750;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .badge-soft {
      color: var(--gold-soft);
      background: rgba(216, 173, 91, .11);
      border-color: rgba(216, 173, 91, .28);
    }

    .badge-hot {
      color: #ffd9d9;
      background: rgba(107, 29, 35, .55);
      border-color: rgba(179, 75, 83, .48);
    }

    .badge-green {
      color: #c7f0df;
      background: rgba(31, 74, 57, .58);
      border-color: rgba(86, 160, 124, .38);
    }

    .cover-title {
      position: relative;
      z-index: 1;
      max-width: 290px;
      margin: 0;
      font-size: 24px;
      font-weight: 850;
      line-height: 1.25;
    }

    .countdown-mini {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
    }

    .time-box {
      padding: 14px 8px 12px;
      border: 1px solid rgba(216, 173, 91, .24);
      border-radius: var(--radius-sm);
      background: rgba(9, 8, 6, .58);
      text-align: center;
    }

    .time-box strong {
      display: block;
      color: var(--gold-soft);
      font-size: 28px;
      line-height: 1;
      font-weight: 900;
    }

    .time-box span {
      display: block;
      margin-top: 7px;
      color: var(--weak);
      font-size: 12px;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .entry-tile {
      min-height: 76px;
      padding: 13px;
      border: 1px solid rgba(255, 247, 230, .12);
      border-radius: var(--radius-sm);
      background: rgba(255, 247, 230, .035);
    }

    .entry-tile:hover {
      border-color: rgba(216, 173, 91, .42);
      transform: translateY(-1px);
    }

    .entry-tile b {
      display: block;
      font-size: 14px;
      margin-bottom: 4px;
    }

    .entry-tile span {
      color: var(--weak);
      font-size: 12px;
    }

    .tier-strip {
      display: grid;
      grid-template-columns: .75fr 1fr 1fr 1fr;
      gap: 12px;
      align-items: stretch;
    }

    .tier-lead,
    .tier-card,
    .plan-card,
    .assure-item,
    .highlight-card,
    .replay-card,
    .faq-shell,
    .cta-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(24, 20, 15, .92), rgba(14, 12, 9, .94));
      box-shadow: var(--shadow-sm);
    }

    .tier-lead {
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 230px;
    }

    .tier-lead .small-note {
      color: var(--weak);
      font-size: 13px;
      margin: 0;
    }

    .tier-card {
      padding: 22px;
      transition: transform var(--ease), border-color var(--ease);
    }

    .tier-card:hover,
    .plan-card:hover,
    .highlight-card:hover,
    .replay-card:hover {
      transform: translateY(-2px);
      border-color: var(--line-strong);
    }

    .tier-card h3,
    .plan-card h3,
    .highlight-card h3,
    .replay-card h3 {
      margin: 14px 0 10px;
      font-size: 20px;
      line-height: 1.25;
      font-weight: 850;
    }

    .tier-card p,
    .plan-card p,
    .highlight-card p,
    .replay-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .plan-card {
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .plan-card.featured {
      border-color: rgba(240, 212, 139, .68);
      background:
        linear-gradient(180deg, rgba(49, 38, 24, .92), rgba(18, 14, 10, .98));
    }

    .plan-price {
      margin: 18px 0;
      color: var(--gold-soft);
      font-size: 34px;
      font-weight: 900;
      line-height: 1;
    }

    .plan-list {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0 0 22px;
      list-style: none;
      color: var(--muted);
      font-size: 14px;
    }

    .plan-list li {
      display: flex;
      gap: 9px;
      align-items: flex-start;
    }

    .plan-list li::before {
      content: "";
      width: 7px;
      height: 7px;
      margin-top: 9px;
      border-radius: 50%;
      background: var(--gold);
      flex: 0 0 auto;
    }

    .assure-bar {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .assure-item {
      padding: 18px;
      min-height: 118px;
    }

    .assure-item strong {
      display: block;
      margin-bottom: 8px;
      font-size: 17px;
      color: var(--gold-soft);
    }

    .assure-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 20px;
      align-items: start;
    }

    .news-list {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: rgba(18, 16, 13, .72);
    }

    .news-row {
      min-height: 76px;
      padding: 16px 18px;
      border-bottom: 1px solid rgba(216, 173, 91, .14);
    }

    .news-row:last-child {
      border-bottom: 0;
    }

    .news-row:hover {
      background: rgba(216, 173, 91, .06);
    }

    .news-main {
      min-width: 0;
    }

    .news-main a {
      display: inline-block;
      color: var(--text);
      font-weight: 750;
      max-width: 100%;
    }

    .news-main a:hover {
      color: var(--gold-soft);
    }

    .news-main p {
      margin: 4px 0 0;
      color: var(--weak);
      font-size: 13px;
    }

    .rank-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(33, 26, 18, .9), rgba(12, 10, 8, .96));
      padding: 18px;
    }

    .rank-panel h3 {
      margin: 0 0 14px;
      font-size: 19px;
      font-weight: 850;
    }

    .rank-list {
      display: grid;
      gap: 10px;
    }

    .rank-row {
      padding: 11px 0;
      border-bottom: 1px solid rgba(255, 247, 230, .1);
      color: var(--muted);
      font-size: 14px;
    }

    .rank-row:last-child {
      border-bottom: 0;
    }

    .rank-row b {
      color: var(--gold-soft);
    }

    .highlight-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .highlight-card {
      padding: 20px;
      min-height: 180px;
    }

    .highlight-icon {
      width: 34px;
      height: 34px;
      border-radius: var(--radius-sm);
      background: rgba(216, 173, 91, .12);
      border: 1px solid rgba(216, 173, 91, .28);
      color: var(--gold-soft);
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    .cta-panel {
      padding: 28px;
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
      gap: 28px;
      align-items: center;
      background:
        linear-gradient(120deg, rgba(33, 26, 18, .98), rgba(18, 14, 10, .98)),
        linear-gradient(90deg, rgba(107, 29, 35, .18), transparent);
    }

    .cta-panel h2 {
      margin: 0 0 10px;
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 900;
      line-height: 1.18;
    }

    .cta-panel p {
      margin: 0;
      color: var(--muted);
    }

    .subscribe-form {
      display: grid;
      gap: 12px;
    }

    .form-control.club-input {
      min-height: 48px;
      color: var(--text);
      background: rgba(9, 8, 6, .62);
      border: 1px solid rgba(216, 173, 91, .32);
      border-radius: var(--radius-sm);
    }

    .form-control.club-input::placeholder {
      color: var(--weak);
    }

    .form-control.club-input:focus {
      color: var(--text);
      background: rgba(9, 8, 6, .75);
      border-color: var(--gold-soft);
      box-shadow: 0 0 0 .2rem rgba(216, 173, 91, .14);
    }

    .form-check-input {
      background-color: rgba(9, 8, 6, .74);
      border-color: rgba(216, 173, 91, .45);
    }

    .form-check-input:checked {
      background-color: var(--gold);
      border-color: var(--gold-soft);
    }

    .form-check-label {
      color: var(--muted);
      font-size: 13px;
    }

    .replay-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .replay-card {
      padding: 18px;
      min-height: 190px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .replay-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .faq-shell {
      overflow: hidden;
    }

    .accordion {
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: rgba(216, 173, 91, .16);
      --bs-accordion-btn-color: var(--text);
      --bs-accordion-active-color: var(--gold-soft);
      --bs-accordion-active-bg: rgba(216, 173, 91, .08);
      --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(216, 173, 91, .12);
    }

    .accordion-button {
      font-weight: 800;
      letter-spacing: 0;
    }

    .accordion-button:not(.collapsed) {
      box-shadow: inset 0 -1px 0 rgba(216, 173, 91, .16);
    }

    .accordion-button::after {
      filter: sepia(1) saturate(2) brightness(1.35);
    }

    .accordion-body {
      color: var(--muted);
      font-size: 15px;
    }

    .floating-cta {
      position: sticky;
      bottom: 14px;
      z-index: 45;
      width: min(100% - 28px, 960px);
      margin: 0 auto 18px;
      border: 1px solid rgba(240, 212, 139, .44);
      border-radius: var(--radius);
      background: rgba(15, 12, 9, .94);
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow);
      padding: 10px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .floating-cta span {
      color: var(--muted);
      font-size: 14px;
    }

    .floating-cta b {
      color: var(--gold-soft);
    }

    .site-footer {
      border-top: 1px solid rgba(216, 173, 91, .18);
      background: #070604;
      padding: 38px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      color: var(--gold-soft);
      font-size: 18px;
      font-weight: 850;
      margin-bottom: 8px;
    }

    .footer-copy {
      max-width: 680px;
      color: var(--weak);
      margin: 0;
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .footer-links a {
      color: var(--muted);
      padding: 6px 9px;
      border: 1px solid rgba(255, 247, 230, .1);
      border-radius: var(--radius-sm);
      font-size: 13px;
    }

    .footer-links a:hover {
      color: var(--gold-soft);
      border-color: rgba(216, 173, 91, .34);
    }

    .copyright {
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 247, 230, .08);
      color: var(--weak);
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    @media (max-width: 1100px) {
      .nav-shell {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 0;
      }

      .seg-nav {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
      }

      .nav-action {
        justify-content: flex-start;
      }

      .hero-stage,
      .news-layout,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        min-height: auto;
        clip-path: none;
      }

      .tier-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .highlight-grid,
      .replay-grid,
      .assure-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .section {
        padding: 54px 0;
      }

      .hero {
        padding: 34px 0 54px;
      }

      .hero-copy,
      .preview-panel,
      .cta-panel {
        padding: 20px;
      }

      .hero-stats,
      .plans,
      .tier-strip {
        grid-template-columns: 1fr;
      }

      .section-head {
        display: block;
      }

      .section-head .btn-outline-gold {
        margin-top: 16px;
      }

      .floating-cta {
        align-items: stretch;
        flex-direction: column;
      }

      .floating-cta .btn-gold {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      .brand-text {
        max-width: 260px;
      }

      .seg-nav a {
        padding: 0 12px;
      }

      .hero-actions,
      .cta-panel .d-flex {
        flex-direction: column;
      }

      .hero-actions a,
      .cta-panel .btn-gold,
      .cta-panel .btn-outline-gold {
        width: 100%;
      }

      .countdown-mini,
      .entry-grid,
      .highlight-grid,
      .replay-grid,
      .assure-bar {
        grid-template-columns: 1fr 1fr;
      }

      .news-row {
        align-items: flex-start;
        flex-direction: column;
      }

      .plans {
        gap: 12px;
      }

      .time-box strong {
        font-size: 24px;
      }
    }

/* roulang page: category2 */
:root {
      --bg: #090806;
      --bg-soft: #12100c;
      --bg-panel: #17140f;
      --bg-panel-2: #201b13;
      --gold: #d8b15f;
      --gold-2: #f0d58a;
      --gold-dark: #8b6a2e;
      --wine: #6f1f2a;
      --green: #1f4b38;
      --text: #f7f0df;
      --muted: #b9ad96;
      --weak: #7f735f;
      --line: rgba(216, 177, 95, .26);
      --line-soft: rgba(247, 240, 223, .1);
      --shadow: 0 16px 38px rgba(0, 0, 0, .28);
      --radius: 8px;
      --radius-sm: 6px;
      --container: 1220px;
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font);
      color: var(--text);
      background:
        linear-gradient(180deg, rgba(111, 31, 42, .18), transparent 360px),
        radial-gradient(circle at 20% 0%, rgba(216, 177, 95, .12), transparent 340px),
        var(--bg);
      line-height: 1.7;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    input[type="email"],
    input[type="text"] {
      width: 100%;
      border: 1px solid var(--line);
      background: #0f0d09;
      color: var(--text);
      border-radius: var(--radius-sm);
      padding: 13px 14px;
      outline: none;
      transition: border-color .18s ease, box-shadow .18s ease;
    }

    input::placeholder {
      color: var(--weak);
    }

    input:focus {
      border-color: var(--gold-2);
      box-shadow: 0 0 0 3px rgba(216, 177, 95, .16);
    }

    .site-container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(9, 8, 6, .92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line-soft);
    }

    .nav-shell {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      display: inline-grid;
      place-items: center;
      color: #1a1205;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      border: 1px solid rgba(240, 213, 138, .65);
      border-radius: var(--radius-sm);
      font-weight: 800;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
      flex: 0 0 auto;
    }

    .brand-text {
      font-weight: 800;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 330px;
    }

    .seg-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px;
      border: 1px solid var(--line-soft);
      background: rgba(23, 20, 15, .78);
      border-radius: var(--radius);
      overflow-x: auto;
      scrollbar-width: none;
    }

    .seg-nav::-webkit-scrollbar {
      display: none;
    }

    .seg-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 36px;
      padding: 0 15px;
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      color: var(--muted);
      white-space: nowrap;
      font-size: 14px;
      font-weight: 700;
    }

    .seg-nav a:hover,
    .seg-nav a:focus {
      color: var(--gold-2);
      border-color: var(--line);
      outline: none;
    }

    .seg-nav a.active {
      color: #191005;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      border-color: rgba(240, 213, 138, .75);
    }

    .nav-action {
      flex: 0 0 auto;
    }

    .btn-gold,
    .btn-outline-gold,
    .btn-dark-gold {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 18px;
      border-radius: var(--radius-sm);
      font-weight: 800;
      border: 1px solid var(--gold);
      transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
      cursor: pointer;
      text-align: center;
    }

    .btn-gold {
      color: #170f04;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow: 0 8px 20px rgba(216, 177, 95, .16);
    }

    .btn-outline-gold {
      color: var(--gold-2);
      background: rgba(216, 177, 95, .05);
    }

    .btn-dark-gold {
      color: var(--gold-2);
      background: #11100c;
    }

    .btn-gold:hover,
    .btn-outline-gold:hover,
    .btn-dark-gold:hover {
      transform: translateY(-1px);
      border-color: var(--gold-2);
      box-shadow: 0 10px 24px rgba(216, 177, 95, .18);
    }

    .btn-outline-gold:hover,
    .btn-dark-gold:hover {
      color: #1a1205;
      background: var(--gold);
    }

    .btn-gold:focus,
    .btn-outline-gold:focus,
    .btn-dark-gold:focus {
      outline: 3px solid rgba(216, 177, 95, .22);
      outline-offset: 2px;
    }

    .section {
      padding: 70px 0;
    }

    .section-tight {
      padding: 44px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-2);
      border: 1px solid var(--line);
      background: rgba(216, 177, 95, .08);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
    }

    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold-2);
      box-shadow: 0 0 0 4px rgba(216, 177, 95, .12);
      flex: 0 0 auto;
    }

    .page-hero {
      padding: 56px 0 36px;
      border-bottom: 1px solid var(--line-soft);
      background:
        linear-gradient(90deg, rgba(216,177,95,.12), transparent 55%),
        linear-gradient(180deg, rgba(32,27,19,.72), rgba(9,8,6,.1));
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin: 18px 0 16px;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.06;
      font-weight: 900;
      max-width: 820px;
    }

    .hero-copy p {
      color: var(--muted);
      font-size: 17px;
      max-width: 720px;
      margin-bottom: 22px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .flash-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(32, 27, 19, .96), rgba(15, 13, 9, .98));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .flash-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      padding: 16px;
      background: rgba(111, 31, 42, .28);
      border-bottom: 1px solid var(--line-soft);
    }

    .flash-title {
      font-weight: 900;
      color: var(--gold-2);
    }

    .flash-note {
      color: var(--muted);
      font-size: 13px;
    }

    .timer {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      padding: 16px;
    }

    .time-box {
      border: 1px solid var(--line);
      background: #0d0b08;
      border-radius: var(--radius-sm);
      padding: 10px 6px;
      text-align: center;
    }

    .time-num {
      display: block;
      font-size: 26px;
      line-height: 1.1;
      color: var(--gold-2);
      font-weight: 900;
    }

    .time-unit {
      display: block;
      margin-top: 4px;
      color: var(--weak);
      font-size: 12px;
      font-weight: 700;
    }

    .featured-entry {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 14px;
      padding: 16px;
      border-top: 1px solid var(--line-soft);
    }

    .cover-tile {
      aspect-ratio: 4 / 5;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background:
        linear-gradient(145deg, rgba(216,177,95,.36), transparent 42%),
        linear-gradient(180deg, #382817, #100d09);
      position: relative;
      overflow: hidden;
    }

    .cover-tile::after {
      content: "";
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(240, 213, 138, .22);
      border-radius: 4px;
    }

    .entry-info h2 {
      font-size: 22px;
      line-height: 1.25;
      margin-bottom: 8px;
    }

    .entry-info p {
      color: var(--muted);
      margin-bottom: 12px;
      font-size: 14px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 12px;
    }

    .tag,
    .badge-soft,
    .badge-wine,
    .badge-green {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 5px 9px;
      font-size: 12px;
      font-weight: 800;
      border: 1px solid var(--line);
      color: var(--gold-2);
      background: rgba(216, 177, 95, .08);
    }

    .badge-soft {
      color: var(--text);
      border-color: var(--line-soft);
      background: rgba(247, 240, 223, .06);
    }

    .badge-wine {
      color: #f0b9bd;
      border-color: rgba(111, 31, 42, .55);
      background: rgba(111, 31, 42, .18);
    }

    .badge-green {
      color: #b7dcc8;
      border-color: rgba(31, 75, 56, .65);
      background: rgba(31, 75, 56, .2);
    }

    .summary-band {
      border-top: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
      background: rgba(23, 20, 15, .72);
      padding: 18px 0;
    }

    .summary-row {
      display: grid;
      grid-template-columns: 1.1fr repeat(3, minmax(130px, .3fr));
      gap: 14px;
      align-items: center;
    }

    .summary-main {
      color: var(--muted);
      margin: 0;
    }

    .metric {
      border-left: 1px solid var(--line);
      padding-left: 16px;
    }

    .metric strong {
      display: block;
      color: var(--gold-2);
      font-size: 22px;
      line-height: 1.15;
    }

    .metric span {
      color: var(--weak);
      font-size: 13px;
      font-weight: 700;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 22px;
      align-items: end;
      margin-bottom: 24px;
    }

    .section-head h2 {
      margin-bottom: 0;
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.18;
      font-weight: 900;
    }

    .section-head p {
      color: var(--muted);
      margin-bottom: 0;
      max-width: 560px;
    }

    .layout-two {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 24px;
      align-items: start;
    }

    .pin-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(216,177,95,.12), rgba(23,20,15,.95) 36%, rgba(15,13,9,.98));
      box-shadow: var(--shadow);
      padding: 24px;
      margin-bottom: 20px;
    }

    .pin-card h2 {
      font-size: 28px;
      line-height: 1.2;
      margin: 12px 0 10px;
    }

    .pin-card p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .pin-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .topic-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .topic-card,
    .side-card,
    .step-card,
    .notice-card {
      border: 1px solid var(--line-soft);
      border-radius: var(--radius);
      background: rgba(23, 20, 15, .88);
      padding: 18px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }

    .topic-card {
      min-height: 246px;
      display: flex;
      flex-direction: column;
    }

    .topic-card:hover,
    .side-card:hover,
    .step-card:hover,
    .notice-card:hover {
      transform: translateY(-2px);
      border-color: var(--line);
      box-shadow: 0 14px 30px rgba(0, 0, 0, .26);
    }

    .topic-card h3,
    .side-card h3,
    .step-card h3,
    .notice-card h3 {
      font-size: 19px;
      line-height: 1.3;
      margin: 10px 0 8px;
      font-weight: 900;
    }

    .topic-card p,
    .side-card p,
    .step-card p,
    .notice-card p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 16px;
    }

    .topic-card .btn-outline-gold,
    .topic-card .btn-dark-gold {
      margin-top: auto;
      width: 100%;
    }

    .side-stack {
      display: grid;
      gap: 14px;
      position: sticky;
      top: 96px;
    }

    .quick-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .quick-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--line-soft);
      color: var(--muted);
      font-size: 14px;
    }

    .quick-list li:last-child {
      border-bottom: 0;
    }

    .quick-list strong {
      color: var(--text);
      font-size: 14px;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .step-num {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: var(--radius-sm);
      color: #160f04;
      background: var(--gold);
      font-weight: 900;
      margin-bottom: 12px;
    }

    .notice-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .subscribe-box {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(90deg, rgba(111, 31, 42, .24), transparent 62%),
        rgba(23, 20, 15, .94);
      padding: 24px;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 22px;
      align-items: center;
    }

    .subscribe-box h2 {
      font-size: 30px;
      margin-bottom: 10px;
      font-weight: 900;
    }

    .subscribe-box p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .form-grid {
      display: grid;
      gap: 12px;
    }

    .check-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--muted);
      font-size: 13px;
    }

    .check-row input {
      width: 16px;
      height: 16px;
      margin-top: 4px;
      accent-color: var(--gold);
      flex: 0 0 auto;
    }

    .form-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .accordion {
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: var(--line-soft);
      --bs-accordion-color: var(--text);
      --bs-accordion-btn-color: var(--text);
      --bs-accordion-active-color: var(--gold-2);
      --bs-accordion-active-bg: rgba(216, 177, 95, .08);
      --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(216, 177, 95, .16);
      --bs-accordion-border-radius: var(--radius);
      --bs-accordion-inner-border-radius: var(--radius-sm);
    }

    .accordion-item {
      background: rgba(23, 20, 15, .82);
      border: 1px solid var(--line-soft);
      margin-bottom: 10px;
      border-radius: var(--radius) !important;
      overflow: hidden;
    }

    .accordion-button {
      font-weight: 900;
      background: transparent;
      box-shadow: none;
      padding: 17px 18px;
    }

    .accordion-button::after {
      filter: invert(83%) sepia(34%) saturate(502%) hue-rotate(356deg) brightness(94%) contrast(91%);
    }

    .accordion-body {
      color: var(--muted);
      padding: 0 18px 18px;
    }

    .cta-band {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(216, 177, 95, .16), rgba(111, 31, 42, .16)),
        #15120d;
      padding: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .cta-band h2 {
      font-size: 28px;
      margin-bottom: 8px;
      font-weight: 900;
    }

    .cta-band p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .site-footer {
      border-top: 1px solid var(--line-soft);
      background: #070604;
      padding: 38px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: start;
    }

    .footer-brand {
      color: var(--gold-2);
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .footer-copy {
      color: var(--muted);
      max-width: 620px;
      margin-bottom: 0;
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .footer-links a {
      color: var(--muted);
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-sm);
      padding: 8px 10px;
      font-size: 13px;
      font-weight: 700;
    }

    .footer-links a:hover,
    .footer-links a:focus {
      color: var(--gold-2);
      border-color: var(--line);
      outline: none;
    }

    .copyright {
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid var(--line-soft);
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--weak);
      font-size: 13px;
      flex-wrap: wrap;
    }

    @media (max-width: 1024px) {
      .nav-shell {
        flex-wrap: wrap;
        padding: 14px 0;
      }

      .seg-nav {
        order: 3;
        width: 100%;
      }

      .hero-grid,
      .layout-two,
      .subscribe-box {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .summary-row {
        grid-template-columns: 1fr 1fr;
      }

      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .brand-text {
        max-width: 230px;
      }

      .nav-action {
        width: 100%;
      }

      .nav-action .btn-gold {
        width: 100%;
      }

      .page-hero {
        padding: 38px 0 28px;
      }

      h1 {
        font-size: 34px;
      }

      .hero-copy p {
        font-size: 15px;
      }

      .section {
        padding: 52px 0;
      }

      .section-head {
        display: block;
      }

      .section-head p {
        margin-top: 10px;
      }

      .topic-grid,
      .side-stack,
      .notice-row {
        grid-template-columns: 1fr;
      }

      .featured-entry {
        grid-template-columns: 92px 1fr;
      }

      .timer {
        grid-template-columns: repeat(2, 1fr);
      }

      .summary-row {
        grid-template-columns: 1fr;
      }

      .metric {
        border-left: 0;
        border-top: 1px solid var(--line-soft);
        padding: 12px 0 0;
      }

      .form-actions,
      .hero-actions,
      .pin-actions {
        flex-direction: column;
      }

      .form-actions a,
      .form-actions button,
      .hero-actions a,
      .pin-actions a {
        width: 100%;
      }

      .cta-band,
      .footer-grid {
        display: block;
      }

      .cta-band .btn-gold {
        width: 100%;
        margin-top: 18px;
      }

      .footer-links {
        justify-content: flex-start;
        margin-top: 18px;
      }
    }

    @media (max-width: 520px) {
      .brand-text {
        max-width: 190px;
        font-size: 14px;
      }

      .seg-nav a {
        padding: 0 12px;
      }

      .featured-entry {
        grid-template-columns: 1fr;
      }

      .cover-tile {
        aspect-ratio: 16 / 9;
      }

      .pin-card,
      .subscribe-box,
      .cta-band {
        padding: 18px;
      }

      .topic-card,
      .side-card,
      .step-card,
      .notice-card {
        padding: 16px;
      }

      .steps-grid {
        grid-template-columns: 1fr;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#080705;
      --bg-soft:#11100d;
      --bg-panel:#17140f;
      --bg-panel-2:#1f1a12;
      --gold:#d7ad55;
      --gold-2:#f1d28a;
      --gold-dark:#8b6729;
      --wine:#4a1418;
      --green:#153a2b;
      --text:#f7efe0;
      --muted:#b8ad9a;
      --soft:#877b68;
      --line:rgba(215,173,85,.28);
      --line-soft:rgba(255,255,255,.08);
      --shadow:0 18px 38px rgba(0,0,0,.32);
      --shadow-sm:0 8px 18px rgba(0,0,0,.22);
      --radius:8px;
      --radius-sm:6px;
      --container:1240px;
      --ease:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      line-height:1.72;
      background:
        radial-gradient(circle at 12% 0%, rgba(215,173,85,.12), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(74,20,24,.22), transparent 30%),
        linear-gradient(180deg,#070604 0%,#0b0906 45%,#080705 100%);
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--gold-2)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    input[type="text"],input[type="email"]{
      width:100%;
      border:1px solid var(--line);
      border-radius:var(--radius-sm);
      background:#0d0b08;
      color:var(--text);
      padding:13px 14px;
      outline:none;
      transition:var(--ease);
    }
    input::placeholder{color:#7f735f}
    input:focus{
      border-color:var(--gold-2);
      box-shadow:0 0 0 .22rem rgba(215,173,85,.16);
    }

    .site-container{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(8,7,5,.86);
      backdrop-filter:blur(14px);
      border-bottom:1px solid var(--line-soft);
    }
    .nav-shell{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:11px;
      min-width:0;
      color:var(--text);
      flex:0 0 auto;
    }
    .brand-mark{
      width:38px;
      height:38px;
      display:grid;
      place-items:center;
      border-radius:7px;
      color:#161008;
      font-weight:900;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.28),0 8px 18px rgba(215,173,85,.18);
    }
    .brand-text{
      font-weight:800;
      letter-spacing:.02em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:330px;
    }
    .seg-nav{
      display:flex;
      align-items:center;
      gap:8px;
      padding:6px;
      border:1px solid var(--line-soft);
      border-radius:999px;
      background:rgba(255,255,255,.035);
      overflow-x:auto;
      scrollbar-width:none;
    }
    .seg-nav::-webkit-scrollbar{display:none}
    .seg-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:36px;
      padding:7px 16px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      white-space:nowrap;
      border:1px solid transparent;
    }
    .seg-nav a:hover{
      color:var(--text);
      border-color:var(--line);
      background:rgba(215,173,85,.08);
    }
    .seg-nav a.active{
      color:#181107;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      border-color:rgba(241,210,138,.72);
      font-weight:800;
    }
    .nav-action{flex:0 0 auto}
    .btn-gold,.btn-outline-gold,.btn-dark-gold{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:42px;
      padding:11px 18px;
      border-radius:var(--radius-sm);
      border:1px solid var(--gold);
      font-weight:800;
      letter-spacing:.01em;
      transition:var(--ease);
      cursor:pointer;
      text-align:center;
    }
    .btn-gold{
      color:#151009;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      box-shadow:0 10px 20px rgba(215,173,85,.16);
    }
    .btn-gold:hover{
      color:#0e0b07;
      transform:translateY(-1px);
      border-color:var(--gold-2);
      filter:brightness(1.04);
    }
    .btn-outline-gold{
      color:var(--gold-2);
      background:rgba(215,173,85,.04);
    }
    .btn-outline-gold:hover{
      color:var(--text);
      background:rgba(215,173,85,.12);
      transform:translateY(-1px);
    }
    .btn-dark-gold{
      color:var(--text);
      background:#16120d;
      border-color:var(--line);
    }
    .btn-dark-gold:hover{
      border-color:var(--gold);
      color:var(--gold-2);
      transform:translateY(-1px);
    }

    .page-hero{
      padding:66px 0 34px;
      border-bottom:1px solid var(--line-soft);
      background:
        linear-gradient(90deg,rgba(8,7,5,.95),rgba(8,7,5,.55)),
        radial-gradient(circle at 78% 20%,rgba(215,173,85,.18),transparent 34%);
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:34px;
      align-items:stretch;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(215,173,85,.08);
      color:var(--gold-2);
      font-size:13px;
      font-weight:800;
      margin-bottom:18px;
    }
    .status-dot{
      width:7px;
      height:7px;
      border-radius:999px;
      background:var(--gold-2);
      box-shadow:0 0 0 4px rgba(215,173,85,.12);
      flex:0 0 auto;
    }
    h1{
      margin:0 0 18px;
      font-size:clamp(34px,4vw,58px);
      line-height:1.08;
      letter-spacing:-.04em;
      font-weight:900;
    }
    .hero-lead{
      max-width:720px;
      color:var(--muted);
      font-size:17px;
      margin:0 0 24px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .summary-strip{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:26px;
      max-width:780px;
    }
    .summary-item{
      border:1px solid var(--line-soft);
      background:rgba(255,255,255,.035);
      border-radius:var(--radius-sm);
      padding:13px 14px;
    }
    .summary-item strong{
      display:block;
      font-size:20px;
      color:var(--gold-2);
      line-height:1.2;
    }
    .summary-item span{
      display:block;
      color:var(--soft);
      font-size:13px;
      margin-top:4px;
    }

    .cover-panel{
      position:relative;
      min-height:380px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      overflow:hidden;
      background:
        linear-gradient(145deg,rgba(215,173,85,.18),transparent 42%),
        linear-gradient(180deg,#20180f,#0f0d0a);
      box-shadow:var(--shadow);
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .cover-panel:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(241,210,138,.16);
      border-radius:6px;
      pointer-events:none;
    }
    .cover-top,.cover-bottom{position:relative;z-index:1}
    .cover-title{
      font-size:25px;
      font-weight:900;
      line-height:1.2;
      max-width:360px;
    }
    .cover-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .tag,.badge-soft,.badge-wine,.badge-green{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:5px 10px;
      font-size:12px;
      line-height:1.2;
      border:1px solid var(--line);
      color:var(--gold-2);
      background:rgba(215,173,85,.08);
      white-space:nowrap;
    }
    .badge-soft{
      color:var(--muted);
      border-color:var(--line-soft);
      background:rgba(255,255,255,.035);
    }
    .badge-wine{
      color:#ffd8d8;
      border-color:rgba(142,54,58,.55);
      background:rgba(74,20,24,.56);
    }
    .badge-green{
      color:#bde8cf;
      border-color:rgba(68,128,95,.42);
      background:rgba(21,58,43,.5);
    }
    .time-card{
      margin-left:auto;
      width:min(330px,100%);
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:rgba(8,7,5,.76);
      padding:16px;
      backdrop-filter:blur(8px);
    }
    .time-card small{
      display:block;
      color:var(--soft);
      margin-bottom:10px;
    }
    .time-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:8px;
    }
    .time-box{
      border:1px solid rgba(215,173,85,.22);
      border-radius:6px;
      text-align:center;
      padding:10px 4px;
      background:#15110c;
    }
    .time-box b{
      display:block;
      font-size:24px;
      line-height:1;
      color:var(--gold-2);
      font-variant-numeric:tabular-nums;
    }
    .time-box span{
      display:block;
      margin-top:5px;
      color:var(--soft);
      font-size:12px;
    }

    main{position:relative}
    section{padding:58px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:24px;
    }
    .section-kicker{
      color:var(--gold-2);
      font-size:13px;
      font-weight:900;
      letter-spacing:.08em;
      margin-bottom:7px;
    }
    .section-title{
      margin:0;
      font-size:clamp(26px,2.8vw,38px);
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .section-desc{
      color:var(--muted);
      margin:8px 0 0;
      max-width:680px;
    }

    .notice-bar{
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:linear-gradient(90deg,rgba(215,173,85,.12),rgba(74,20,24,.12));
      padding:16px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      box-shadow:var(--shadow-sm);
    }
    .notice-bar strong{
      color:var(--gold-2);
    }
    .notice-bar p{
      margin:0;
      color:var(--muted);
    }

    .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 310px;
      gap:22px;
      align-items:start;
    }
    .schedule-list{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .schedule-card{
      display:grid;
      grid-template-columns:168px minmax(0,1fr);
      gap:18px;
      border:1px solid var(--line-soft);
      border-radius:var(--radius);
      background:rgba(255,255,255,.032);
      padding:12px;
      transition:var(--ease);
    }
    .schedule-card:hover{
      transform:translateY(-2px);
      border-color:var(--line);
      box-shadow:var(--shadow-sm);
      background:rgba(215,173,85,.045);
    }
    .thumb{
      min-height:132px;
      border-radius:6px;
      overflow:hidden;
      border:1px solid rgba(215,173,85,.16);
      background:
        linear-gradient(135deg,rgba(215,173,85,.24),rgba(74,20,24,.1)),
        repeating-linear-gradient(135deg,#16120d 0,#16120d 10px,#1d1710 10px,#1d1710 20px);
      position:relative;
      display:flex;
      align-items:flex-end;
      padding:12px;
    }
    .thumb:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,transparent 20%,rgba(0,0,0,.72));
    }
    .thumb-label{
      position:relative;
      z-index:1;
      color:var(--gold-2);
      font-weight:900;
      font-size:13px;
    }
    .schedule-info{
      min-width:0;
      display:flex;
      flex-direction:column;
      gap:9px;
      padding:3px 2px;
    }
    .schedule-meta{
      display:flex;
      flex-wrap:wrap;
      gap:7px;
      align-items:center;
    }
    .schedule-card h2{
      margin:0;
      font-size:22px;
      line-height:1.28;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .schedule-card p{
      color:var(--muted);
      margin:0;
      font-size:15px;
    }
    .card-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:auto;
      padding-top:4px;
    }
    .mini-btn{
      min-height:36px;
      padding:8px 13px;
      border-radius:6px;
      border:1px solid var(--line);
      color:var(--gold-2);
      background:#11100d;
      font-size:13px;
      font-weight:800;
      display:inline-flex;
      align-items:center;
      justify-content:center;
    }
    .mini-btn:hover{
      border-color:var(--gold-2);
      background:rgba(215,173,85,.1);
      color:var(--text);
    }

    .side-panel{
      position:sticky;
      top:94px;
      border:1px solid var(--line-soft);
      border-radius:var(--radius);
      background:rgba(23,20,15,.92);
      box-shadow:var(--shadow-sm);
      overflow:hidden;
    }
    .side-section{
      padding:17px;
      border-bottom:1px solid var(--line-soft);
    }
    .side-section:last-child{border-bottom:0}
    .side-title{
      margin:0 0 12px;
      font-size:16px;
      font-weight:900;
      color:var(--gold-2);
    }
    .chip-group{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .filter-chip{
      border:1px solid var(--line-soft);
      background:#0f0d0a;
      color:var(--muted);
      border-radius:999px;
      padding:7px 10px;
      font-size:13px;
      cursor:pointer;
      transition:var(--ease);
    }
    .filter-chip:hover,.filter-chip.active{
      color:#151009;
      border-color:var(--gold);
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
    }
    .side-note{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .step-grid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr 1fr;
      gap:12px;
    }
    .step-card{
      border:1px solid var(--line-soft);
      border-radius:var(--radius);
      padding:18px;
      background:#11100d;
      transition:var(--ease);
      min-height:170px;
    }
    .step-card:hover{
      border-color:var(--line);
      transform:translateY(-2px);
    }
    .step-num{
      width:34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:999px;
      color:#171007;
      background:var(--gold);
      font-weight:900;
      margin-bottom:15px;
    }
    .step-card h3{
      font-size:18px;
      font-weight:900;
      margin:0 0 8px;
    }
    .step-card p{
      color:var(--muted);
      margin:0;
      font-size:14px;
    }

    .subscribe-box{
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:
        linear-gradient(135deg,rgba(215,173,85,.14),rgba(74,20,24,.14)),
        #11100d;
      padding:24px;
      box-shadow:var(--shadow-sm);
    }
    .form-grid{
      display:grid;
      grid-template-columns:1.1fr 1.1fr auto;
      gap:12px;
      align-items:start;
      margin-top:18px;
    }
    .check-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:14px;
      color:var(--muted);
      font-size:14px;
    }
    .form-check-input{
      background-color:#0b0907;
      border-color:var(--line);
    }
    .form-check-input:checked{
      background-color:var(--gold);
      border-color:var(--gold);
    }
    .form-check-input:focus{
      box-shadow:0 0 0 .22rem rgba(215,173,85,.16);
      border-color:var(--gold-2);
    }

    .entry-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
    }
    .entry-card{
      border:1px solid var(--line-soft);
      border-radius:var(--radius);
      background:#11100d;
      padding:16px;
      min-height:170px;
      display:flex;
      flex-direction:column;
      gap:10px;
      transition:var(--ease);
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:var(--line);
      background:#17130e;
    }
    .entry-card h3{
      margin:0;
      font-size:18px;
      font-weight:900;
    }
    .entry-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .entry-card .mini-btn{margin-top:auto}

    .accordion{
      --bs-accordion-bg:transparent;
      --bs-accordion-border-color:var(--line-soft);
      --bs-accordion-color:var(--text);
      --bs-accordion-active-bg:rgba(215,173,85,.08);
      --bs-accordion-active-color:var(--gold-2);
      --bs-accordion-btn-color:var(--text);
      --bs-accordion-btn-focus-box-shadow:0 0 0 .22rem rgba(215,173,85,.14);
      --bs-accordion-border-radius:8px;
      --bs-accordion-inner-border-radius:8px;
    }
    .accordion-item{
      margin-bottom:10px;
      border-radius:var(--radius)!important;
      overflow:hidden;
      background:#11100d;
    }
    .accordion-button{
      font-weight:900;
      background:#11100d;
      color:var(--text);
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      background:rgba(215,173,85,.08);
      color:var(--gold-2);
    }
    .accordion-button::after{
      filter:invert(82%) sepia(42%) saturate(465%) hue-rotate(356deg);
    }
    .accordion-body{
      color:var(--muted);
      background:#0d0b08;
    }

    .cta-band{
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:28px;
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      align-items:center;
      gap:20px;
      background:
        linear-gradient(90deg,rgba(215,173,85,.16),rgba(21,58,43,.13)),
        #12100c;
      box-shadow:var(--shadow-sm);
    }
    .cta-band h2{
      margin:0 0 8px;
      font-size:28px;
      font-weight:900;
    }
    .cta-band p{
      margin:0;
      color:var(--muted);
    }

    .site-footer{
      border-top:1px solid var(--line-soft);
      padding:42px 0 26px;
      background:#070604;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:minmax(0,1.1fr) auto;
      gap:28px;
      align-items:start;
      padding-bottom:24px;
    }
    .footer-brand{
      font-size:20px;
      font-weight:900;
      color:var(--gold-2);
      margin-bottom:8px;
    }
    .footer-copy{
      max-width:620px;
      color:var(--muted);
      margin:0;
      font-size:14px;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:10px 18px;
    }
    .footer-links a{
      color:var(--muted);
      font-size:14px;
    }
    .footer-links a:hover{color:var(--gold-2)}
    .copyright{
      border-top:1px solid var(--line-soft);
      padding-top:18px;
      display:flex;
      justify-content:space-between;
      gap:14px;
      color:var(--soft);
      font-size:13px;
      flex-wrap:wrap;
    }

    @media (max-width:1024px){
      .nav-shell{
        flex-wrap:wrap;
        padding:14px 0;
      }
      .seg-nav{
        order:3;
        width:100%;
      }
      .hero-grid,.content-layout{
        grid-template-columns:1fr;
      }
      .side-panel{
        position:relative;
        top:auto;
      }
      .step-grid,.entry-grid{
        grid-template-columns:repeat(2,1fr);
      }
      .form-grid{
        grid-template-columns:1fr 1fr;
      }
      .form-grid .btn-gold{grid-column:1/-1}
    }

    @media (max-width:768px){
      .site-container{
        width:min(100% - 28px,var(--container));
      }
      .brand-text{max-width:230px}
      .nav-action .btn-gold{
        min-height:38px;
        padding:9px 13px;
        font-size:14px;
      }
      .page-hero{
        padding:42px 0 26px;
      }
      .summary-strip{
        grid-template-columns:1fr;
      }
      .cover-panel{
        min-height:320px;
        padding:18px;
      }
      .time-card{
        width:100%;
        margin:0;
      }
      section{padding:42px 0}
      .section-head{
        display:block;
      }
      .notice-bar{
        align-items:flex-start;
        flex-direction:column;
      }
      .schedule-card{
        grid-template-columns:1fr;
      }
      .thumb{
        min-height:160px;
      }
      .form-grid{
        grid-template-columns:1fr;
      }
      .cta-band{
        grid-template-columns:1fr;
      }
      .cta-band .btn-gold,.cta-band .btn-outline-gold{
        width:100%;
      }
      .footer-grid{
        grid-template-columns:1fr;
      }
      .footer-links{
        justify-content:flex-start;
      }
    }

    @media (max-width:520px){
      .nav-shell{
        gap:12px;
      }
      .brand-mark{
        width:34px;
        height:34px;
      }
      .brand-text{
        max-width:calc(100vw - 190px);
        font-size:14px;
      }
      .seg-nav a{
        padding:7px 13px;
        font-size:13px;
      }
      h1{
        font-size:32px;
      }
      .hero-actions{
        flex-direction:column;
      }
      .hero-actions a{
        width:100%;
      }
      .time-row{
        grid-template-columns:repeat(2,1fr);
      }
      .step-grid,.entry-grid{
        grid-template-columns:1fr;
      }
      .schedule-card h2{
        font-size:19px;
      }
      .card-actions .mini-btn{
        width:100%;
      }
      .copyright{
        flex-direction:column;
      }
    }
