/* roulang page: index */
:root {
      --bg: #17130f;
      --bg-soft: #211b16;
      --bg-line: rgba(255, 245, 220, .08);
      --panel: #fff7e8;
      --panel-2: #fff0d0;
      --ink: #221712;
      --muted: #705f55;
      --muted-dark: #c9b8a6;
      --primary: #ff6a21;
      --primary-2: #e83d2f;
      --accent: #ffe147;
      --green: #38c172;
      --border: rgba(34, 23, 18, .14);
      --border-dark: rgba(255, 247, 232, .16);
      --shadow: 0 14px 0 rgba(0, 0, 0, .22);
      --shadow-soft: 0 18px 45px rgba(0, 0, 0, .22);
      --radius: 8px;
      --radius-sm: 6px;
      --side: 112px;
      --max: 1240px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
      line-height: 1.7;
      color: var(--panel);
      background:
        linear-gradient(90deg, var(--bg-line) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(var(--bg-line) 1px, transparent 1px) 0 0 / 28px 28px,
        radial-gradient(circle at 74% 8%, rgba(255, 106, 33, .18), transparent 30%),
        var(--bg);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
    }

    a:hover,
    a:focus {
      color: var(--accent);
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button:focus,
    input:focus,
    select:focus,
    textarea:focus,
    a:focus {
      outline: 3px solid rgba(255, 225, 71, .45);
      outline-offset: 3px;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .site-shell {
      min-height: 100vh;
      padding-left: var(--side);
    }

    .side-nav {
      position: fixed;
      inset: 0 auto 0 0;
      z-index: 50;
      width: var(--side);
      padding: 18px 12px;
      background: #0f0c09;
      border-right: 1px dashed rgba(255, 225, 71, .28);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 8px 0 24px rgba(0, 0, 0, .26);
    }

    .brand-mark {
      display: grid;
      gap: 8px;
      color: var(--panel);
      font-weight: 900;
      letter-spacing: 0;
    }

    .brand-badge {
      display: grid;
      place-items: center;
      width: 56px;
      height: 56px;
      border-radius: var(--radius-sm);
      background: var(--primary);
      color: #1b100a;
      font-size: 22px;
      box-shadow: 0 8px 0 rgba(232, 61, 47, .6);
    }

    .brand-text {
      font-size: 13px;
      line-height: 1.35;
      color: var(--panel);
      word-break: break-all;
    }

    .vertical-menu {
      margin: 28px 0;
      gap: 10px;
    }

    .vertical-menu a {
      display: grid;
      place-items: center;
      min-height: 54px;
      padding: 8px 6px;
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-sm);
      color: var(--muted-dark);
      font-size: 13px;
      font-weight: 700;
      text-align: center;
      background: rgba(255, 247, 232, .035);
    }

    .vertical-menu a:hover,
    .vertical-menu a.active {
      color: #1b100a;
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-2px);
    }

    .side-cta {
      display: grid;
      gap: 10px;
    }

    .pulse-dot {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      min-height: 42px;
      padding: 8px;
      border-radius: var(--radius-sm);
      background: rgba(56, 193, 114, .12);
      color: #a6ffd0;
      border: 1px solid rgba(56, 193, 114, .3);
      font-size: 12px;
      font-weight: 800;
    }

    .pulse-dot::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(56, 193, 114, .13);
    }

    .mobile-top {
      display: none;
      position: sticky;
      top: 0;
      z-index: 60;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 16px;
      background: rgba(15, 12, 9, .96);
      border-bottom: 1px dashed rgba(255, 225, 71, .24);
      backdrop-filter: blur(12px);
    }

    .mobile-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--panel);
      max-width: calc(100% - 58px);
    }

    .mobile-brand span:last-child {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .menu-toggle {
      width: 46px;
      height: 46px;
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-sm);
      background: var(--primary);
      color: #180e08;
      font-weight: 900;
      cursor: pointer;
    }

    .mobile-panel {
      display: none;
      position: sticky;
      top: 71px;
      z-index: 55;
      padding: 12px 16px 16px;
      background: #100c09;
      border-bottom: 1px dashed rgba(255, 225, 71, .24);
    }

    .mobile-panel.is-open {
      display: block;
    }

    .mobile-panel .menu {
      display: grid;
      gap: 8px;
    }

    .mobile-panel a {
      min-height: 44px;
      border-radius: var(--radius-sm);
      padding: 10px 12px;
      background: rgba(255, 247, 232, .06);
      color: var(--panel);
      border: 1px solid var(--border-dark);
      font-weight: 800;
    }

    .main-wrap {
      width: min(var(--max), calc(100% - 36px));
      margin: 0 auto;
    }

    .section {
      padding: 68px 0;
      position: relative;
    }

    .section-tight {
      padding: 42px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 24px;
    }

    .section-kicker,
    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      min-height: 28px;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-kicker {
      background: rgba(255, 106, 33, .16);
      color: var(--accent);
      border: 1px solid rgba(255, 225, 71, .22);
      margin-bottom: 10px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 900px;
      margin-bottom: 18px;
      font-size: clamp(38px, 6vw, 76px);
      line-height: 1.04;
      letter-spacing: 0;
      color: var(--panel);
    }

    h2 {
      margin-bottom: 8px;
      font-size: 34px;
      line-height: 1.18;
      color: var(--panel);
      letter-spacing: 0;
    }

    h3 {
      margin-bottom: 8px;
      font-size: 20px;
      line-height: 1.35;
      color: var(--ink);
      letter-spacing: 0;
    }

    .section-desc {
      max-width: 720px;
      color: var(--muted-dark);
      font-size: 16px;
    }

    .button,
    button.button {
      min-height: 46px;
      padding: 13px 18px;
      border-radius: var(--radius-sm);
      border: 2px solid transparent;
      background: var(--primary);
      color: #1c1009;
      font-weight: 900;
      letter-spacing: 0;
      box-shadow: 0 6px 0 rgba(232, 61, 47, .72);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }

    .button:hover,
    .button:focus {
      background: var(--primary-2);
      color: #fff7e8;
      transform: translateY(-2px);
      box-shadow: 0 8px 0 rgba(111, 24, 18, .72);
    }

    .button.secondary {
      background: var(--panel);
      color: var(--ink);
      border-color: rgba(34, 23, 18, .2);
      box-shadow: 0 6px 0 rgba(0, 0, 0, .16);
    }

    .button.secondary:hover {
      background: #17130f;
      color: var(--panel);
      border-color: var(--panel);
    }

    .button.hollow {
      background: transparent;
      color: var(--panel);
      border-color: rgba(255, 247, 232, .38);
      box-shadow: none;
    }

    .button.hollow:hover {
      background: var(--panel);
      color: var(--ink);
      border-color: var(--panel);
    }

    .hero {
      min-height: 720px;
      padding: 46px 0 34px;
      display: grid;
      align-items: center;
    }

    .hero-cover {
      position: relative;
      overflow: hidden;
      border: 1px dashed rgba(255, 225, 71, .34);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(255, 106, 33, .18), transparent 34%),
        linear-gradient(180deg, rgba(255, 247, 232, .08), transparent 56%),
        #120e0b;
      box-shadow: var(--shadow-soft);
      padding: 42px;
    }

    .hero-cover::before,
    .hero-cover::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 32px;
      height: 64px;
      border-radius: 999px;
      background: var(--bg);
      transform: translateY(-50%);
      border: 1px dashed rgba(255, 225, 71, .24);
    }

    .hero-cover::before {
      left: -17px;
    }

    .hero-cover::after {
      right: -17px;
    }

    .hero-ribbon {
      position: absolute;
      top: 22px;
      right: -48px;
      width: 220px;
      padding: 8px 20px;
      text-align: center;
      background: var(--accent);
      color: #1b100a;
      font-size: 13px;
      font-weight: 900;
      transform: rotate(18deg);
      box-shadow: 0 8px 0 rgba(0, 0, 0, .24);
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }

    .hero-copy p {
      max-width: 760px;
      margin-bottom: 22px;
      color: #f4ddc5;
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 24px 0 26px;
    }

    .data-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 780px;
    }

    .data-item {
      min-height: 86px;
      padding: 14px;
      border-radius: var(--radius-sm);
      background: rgba(255, 247, 232, .08);
      border: 1px solid var(--border-dark);
    }

    .data-item strong {
      display: block;
      color: var(--accent);
      font-size: 26px;
      font-variant-numeric: tabular-nums;
      line-height: 1.1;
    }

    .data-item span {
      display: block;
      margin-top: 6px;
      color: var(--muted-dark);
      font-size: 13px;
    }

    .hero-board {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 22px;
      margin-top: 34px;
      align-items: stretch;
    }

    .matrix {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .matrix-card,
    .status-panel,
    .ticket-card,
    .quote-card,
    .news-panel,
    .form-panel,
    .entry-card {
      border-radius: var(--radius);
      background: var(--panel);
      color: var(--ink);
      border: 1px solid rgba(34, 23, 18, .15);
      box-shadow: 0 10px 0 rgba(0, 0, 0, .18);
    }

    .matrix-card {
      position: relative;
      min-height: 154px;
      padding: 18px;
      overflow: hidden;
    }

    .matrix-card::after {
      content: attr(data-num);
      position: absolute;
      right: 12px;
      bottom: -12px;
      color: rgba(232, 61, 47, .13);
      font-size: 58px;
      font-weight: 900;
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .matrix-card p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 0;
    }

    .status-panel {
      padding: 20px;
      background:
        repeating-linear-gradient(90deg, rgba(34, 23, 18, .05) 0 10px, transparent 10px 18px),
        var(--panel-2);
    }

    .step-row {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px dashed rgba(34, 23, 18, .22);
    }

    .step-row:last-child {
      border-bottom: 0;
    }

    .step-num {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: var(--radius-sm);
      background: var(--ink);
      color: var(--accent);
      font-weight: 900;
      font-variant-numeric: tabular-nums;
    }

    .step-row strong {
      display: block;
      line-height: 1.3;
    }

    .step-row span {
      color: var(--muted);
      font-size: 13px;
    }

    .count-band {
      margin-top: -44px;
      position: relative;
      z-index: 5;
    }

    .count-wrap {
      border-radius: var(--radius);
      background: var(--primary-2);
      color: var(--panel);
      border: 1px solid rgba(255, 247, 232, .18);
      box-shadow: var(--shadow);
      padding: 20px;
    }

    .timer-grid {
      display: grid;
      grid-template-columns: repeat(4, 88px);
      gap: 10px;
    }

    .timer-box {
      height: 88px;
      display: grid;
      place-items: center;
      border-radius: var(--radius-sm);
      background: #15100d;
      border: 1px dashed rgba(255, 225, 71, .42);
      color: var(--accent);
      font-weight: 900;
      font-size: 34px;
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .timer-box span {
      display: block;
      margin-top: 8px;
      color: var(--panel);
      font-size: 12px;
      font-weight: 800;
    }

    .count-copy {
      color: #ffe9d6;
    }

    .count-copy h2 {
      color: var(--panel);
      font-size: 26px;
    }

    .count-copy p {
      margin-bottom: 0;
    }

    .highlight-list {
      display: grid;
      gap: 16px;
    }

    .ticket-card {
      position: relative;
      display: grid;
      grid-template-columns: 96px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px;
      overflow: hidden;
    }

    .ticket-card:hover,
    .entry-card:hover,
    .matrix-card:hover,
    .quote-card:hover {
      transform: translateY(-3px);
      border-color: var(--primary);
      box-shadow: 0 13px 0 rgba(255, 106, 33, .2);
    }

    .ticket-no {
      display: grid;
      place-items: center;
      width: 74px;
      height: 74px;
      border-radius: var(--radius-sm);
      background: var(--ink);
      color: var(--accent);
      font-size: 24px;
      font-weight: 900;
      font-variant-numeric: tabular-nums;
    }

    .ticket-card p {
      color: var(--muted);
      margin-bottom: 10px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      background: rgba(255, 106, 33, .12);
      color: #b33120;
      border: 1px solid rgba(232, 61, 47, .24);
    }

    .badge {
      background: var(--accent);
      color: #1b100a;
    }

    .small-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 9px 12px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(34, 23, 18, .2);
      color: var(--ink);
      font-weight: 900;
      white-space: nowrap;
    }

    .small-link:hover {
      background: var(--ink);
      color: var(--panel);
      border-color: var(--ink);
    }

    .seed-section {
      padding-top: 32px;
    }

    .vertical-strip {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 18px;
      align-items: stretch;
    }

    .poster-card {
      min-height: 420px;
      border-radius: var(--radius);
      padding: 24px;
      color: var(--ink);
      background:
        linear-gradient(160deg, rgba(255, 225, 71, .96), rgba(255, 106, 33, .92)),
        var(--accent);
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
    }

    .poster-card::after {
      content: "重点";
      position: absolute;
      right: 20px;
      top: 20px;
      width: 78px;
      height: 78px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #17130f;
      color: var(--accent);
      font-weight: 900;
      transform: rotate(12deg);
    }

    .poster-card h2 {
      color: var(--ink);
      max-width: 360px;
    }

    .poster-card p {
      max-width: 430px;
      color: rgba(34, 23, 18, .78);
      font-weight: 700;
    }

    .quote-grid {
      display: grid;
      gap: 14px;
    }

    .quote-card {
      padding: 18px;
    }

    .quote-card blockquote {
      margin: 0;
      padding: 0;
      border-left: 4px solid var(--primary);
      color: var(--ink);
      font-weight: 800;
      line-height: 1.65;
    }

    .quote-card blockquote p {
      margin: 0 0 0 14px;
    }

    .quote-card cite {
      display: block;
      margin-top: 12px;
      color: var(--muted);
      font-style: normal;
      font-size: 13px;
    }

    .form-band {
      border-radius: var(--radius);
      background:
        linear-gradient(90deg, rgba(255, 106, 33, .15), transparent),
        #100c09;
      border: 1px dashed rgba(255, 225, 71, .28);
      padding: 28px;
    }

    .form-panel {
      padding: 20px;
    }

    .form-panel label {
      color: var(--ink);
      font-weight: 900;
      margin-bottom: 6px;
    }

    .form-panel input,
    .form-panel select,
    .form-panel textarea {
      min-height: 48px;
      border-radius: var(--radius-sm);
      border: 2px solid rgba(34, 23, 18, .16);
      background: #fffdf7;
      color: var(--ink);
      box-shadow: none;
    }

    .form-panel input:focus,
    .form-panel select:focus,
    .form-panel textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(255, 106, 33, .16);
    }

    .promise-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .promise-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      align-items: start;
      color: var(--muted-dark);
    }

    .promise-list b {
      display: grid;
      place-items: center;
      width: 24px;
      height: 24px;
      background: var(--accent);
      color: var(--ink);
      border-radius: var(--radius-sm);
      font-size: 13px;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .entry-card {
      position: relative;
      min-height: 230px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    .entry-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 8px;
      background: repeating-linear-gradient(90deg, var(--primary) 0 18px, var(--accent) 18px 30px);
    }

    .entry-no {
      color: var(--primary-2);
      font-size: 34px;
      font-weight: 900;
      font-variant-numeric: tabular-nums;
    }

    .entry-card p {
      color: var(--muted);
      margin-bottom: 12px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 18px;
    }

    .news-panel {
      padding: 20px;
    }

    .news-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0;
    }

    .news-list li {
      display: grid;
      grid-template-columns: 104px 1fr;
      gap: 14px;
      padding: 15px 0;
      border-bottom: 1px dashed rgba(34, 23, 18, .18);
    }

    .news-list li:last-child {
      border-bottom: 0;
    }

    .news-date {
      color: var(--primary-2);
      font-weight: 900;
      font-variant-numeric: tabular-nums;
    }

    .news-list a {
      color: var(--ink);
      font-weight: 900;
    }

    .news-list a:hover {
      color: var(--primary-2);
    }

    .news-list p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .progress-box {
      display: grid;
      gap: 14px;
    }

    .progress-item {
      padding: 14px;
      border-radius: var(--radius-sm);
      background: rgba(255, 106, 33, .09);
      border: 1px solid rgba(232, 61, 47, .16);
    }

    .progress-meter {
      height: 10px;
      border-radius: 999px;
      background: rgba(34, 23, 18, .12);
      overflow: hidden;
      margin-top: 10px;
    }

    .progress-meter span {
      display: block;
      height: 100%;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: inherit;
    }

    .faq-wrap .accordion {
      background: transparent;
    }

    .faq-wrap .accordion-item {
      margin-bottom: 12px;
      border-radius: var(--radius);
      background: var(--panel);
      overflow: hidden;
      box-shadow: 0 8px 0 rgba(0, 0, 0, .16);
      border: 1px solid rgba(34, 23, 18, .14);
    }

    .faq-wrap .accordion-title {
      border: 0;
      color: var(--ink);
      font-weight: 900;
      font-size: 17px;
      padding: 18px 52px 18px 18px;
      background: var(--panel);
    }

    .faq-wrap .accordion-title:hover,
    .faq-wrap .accordion-title:focus {
      background: #ffe2b5;
      color: var(--ink);
    }

    .faq-wrap .is-active > .accordion-title {
      background: var(--primary);
      color: #1b100a;
    }

    .faq-wrap .accordion-title::before {
      right: 18px;
      color: var(--primary-2);
      font-size: 22px;
      margin-top: -12px;
    }

    .faq-wrap .accordion-content {
      border: 0;
      border-top: 1px dashed rgba(34, 23, 18, .18);
      background: #fffaf0;
      color: var(--muted);
      padding: 18px;
    }

    .final-cta {
      border-radius: var(--radius);
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(255, 225, 71, .16), transparent 42%),
        var(--primary);
      color: #1b100a;
      box-shadow: var(--shadow);
    }

    .final-cta h2 {
      color: #1b100a;
    }

    .final-cta p {
      max-width: 720px;
      color: rgba(27, 16, 10, .82);
      font-weight: 700;
    }

    .site-footer {
      margin-top: 40px;
      padding: 36px 0;
      background: #0f0c09;
      border-top: 1px dashed rgba(255, 225, 71, .26);
      color: var(--muted-dark);
    }

    .footer-brand {
      color: var(--panel);
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .footer-links a {
      display: inline-flex;
      min-height: 38px;
      align-items: center;
      padding: 7px 10px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-dark);
      color: var(--panel);
      font-weight: 800;
      font-size: 13px;
    }

    .footer-links a:hover {
      background: var(--accent);
      color: var(--ink);
      border-color: var(--accent);
    }

    .copyright {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 247, 232, .08);
      font-size: 13px;
      color: rgba(201, 184, 166, .72);
    }

    @media (max-width: 1024px) {
      :root {
        --side: 92px;
      }

      .side-nav {
        width: var(--side);
        padding: 14px 9px;
      }

      .brand-badge {
        width: 50px;
        height: 50px;
      }

      .brand-text {
        font-size: 12px;
      }

      .hero-cover {
        padding: 32px;
      }

      .hero-board,
      .vertical-strip,
      .news-layout {
        grid-template-columns: 1fr;
      }

      .timer-grid {
        grid-template-columns: repeat(4, minmax(72px, 1fr));
      }

      .timer-box {
        width: 100%;
      }

      .entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .ticket-card {
        grid-template-columns: 82px 1fr;
      }

      .ticket-card .small-link {
        grid-column: 2;
        width: max-content;
      }
    }

    @media (max-width: 768px) {
      .site-shell {
        padding-left: 0;
      }

      .side-nav {
        display: none;
      }

      .mobile-top {
        display: flex;
      }

      .main-wrap {
        width: min(100% - 28px, var(--max));
      }

      .section {
        padding: 48px 0;
      }

      .hero {
        min-height: auto;
        padding-top: 26px;
      }

      .hero-cover {
        padding: 26px 18px;
      }

      .hero-ribbon {
        top: 14px;
        right: -58px;
        font-size: 12px;
      }

      h1 {
        font-size: 40px;
        line-height: 1.12;
      }

      h2 {
        font-size: 28px;
      }

      .hero-copy p {
        font-size: 16px;
      }

      .data-strip,
      .matrix,
      .entry-grid {
        grid-template-columns: 1fr;
      }

      .count-band {
        margin-top: 0;
      }

      .count-wrap {
        padding: 16px;
      }

      .timer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .timer-box {
        height: 78px;
        font-size: 28px;
      }

      .section-head {
        display: block;
      }

      .ticket-card {
        grid-template-columns: 1fr;
      }

      .ticket-card .small-link {
        grid-column: auto;
        width: 100%;
      }

      .ticket-no {
        width: 60px;
        height: 60px;
        font-size: 20px;
      }

      .poster-card {
        min-height: 330px;
      }

      .form-band,
      .final-cta {
        padding: 22px 16px;
      }

      .news-list li {
        grid-template-columns: 1fr;
        gap: 4px;
      }

      .footer-links {
        justify-content: flex-start;
        margin-top: 18px;
      }
    }

    @media (max-width: 520px) {
      .hero-actions .button {
        width: 100%;
      }

      .hero-cover {
        border-radius: var(--radius-sm);
      }

      .count-copy .button {
        width: 100%;
        margin-top: 14px;
      }

      .button {
        width: 100%;
      }

      .form-panel .button {
        width: 100%;
      }

      .footer-links a {
        width: 100%;
        justify-content: center;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#111111;
      --bg-deep:#0a0a0a;
      --panel:#171717;
      --panel-2:#1d1d1d;
      --paper:#f7f1e7;
      --paper-2:#efe6d7;
      --text:#f5f2ec;
      --muted:#b9b0a3;
      --line:#3a342f;
      --line-soft:#27221e;
      --accent:#f25a22;
      --accent-2:#d64022;
      --accent-dark:#a72f17;
      --warn:#f6d94d;
      --ok:#9ed36b;
      --shadow:0 10px 24px rgba(0,0,0,.35);
      --shadow-hard:0 8px 0 rgba(0,0,0,.25);
      --radius:8px;
      --radius-sm:6px;
      --max:1240px;
      --sidebar:108px;
      --topbar:70px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px, transparent 1px, transparent 48px),
        var(--bg);
      color:var(--text);
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
      line-height:1.7;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(242,90,34,.28);color:var(--text)}
    :focus-visible{outline:2px solid var(--warn);outline-offset:2px}

    .site-shell{min-height:100vh}
    .side-nav{
      position:fixed;
      inset:0 auto 0 0;
      width:var(--sidebar);
      padding:18px 12px 16px;
      display:flex;
      flex-direction:column;
      gap:14px;
      background:linear-gradient(180deg, rgba(14,14,14,.98), rgba(11,11,11,.98));
      border-right:1px solid rgba(255,255,255,.06);
      box-shadow:var(--shadow);
      z-index:60;
    }
    .side-nav-logo{
      display:flex;
      flex-direction:column;
      gap:6px;
      padding:10px 8px 12px;
      border:1px solid rgba(255,255,255,.07);
      border-radius:var(--radius);
      background:rgba(255,255,255,.02);
    }
    .logo-main{
      font-size:15px;
      line-height:1.25;
      font-weight:800;
      letter-spacing:0;
      color:var(--paper);
    }
    .logo-sub{
      font-size:11px;
      color:var(--muted);
      line-height:1.2;
    }
    .side-nav-links{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:8px;
      flex:1;
    }
    .side-nav-link{
      display:flex;
      align-items:center;
      gap:8px;
      min-height:44px;
      padding:10px 9px;
      border-radius:var(--radius-sm);
      border:1px solid transparent;
      color:var(--muted);
      background:transparent;
      transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    }
    .side-nav-link .nav-icon{
      width:14px;
      flex:0 0 14px;
      color:var(--accent);
      text-align:center;
    }
    .side-nav-link:hover,
    .side-nav-link:focus-visible{
      color:var(--paper);
      background:rgba(242,90,34,.1);
      border-color:rgba(242,90,34,.28);
      transform:translateX(2px);
    }
    .side-nav-link.active{
      color:var(--bg-deep);
      background:var(--warn);
      border-color:transparent;
      font-weight:700;
      box-shadow:var(--shadow-hard);
    }
    .side-nav-footer{
      padding:10px 8px 6px;
      font-size:11px;
      line-height:1.4;
      color:var(--muted);
      border-top:1px solid rgba(255,255,255,.08);
    }

    .mobile-bar{
      display:none;
      position:sticky;
      top:0;
      z-index:55;
      background:rgba(13,13,13,.96);
      backdrop-filter:blur(8px);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .mobile-bar-inner{
      min-height:var(--topbar);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 16px;
    }
    .mobile-brand{
      display:flex;
      flex-direction:column;
      gap:4px;
      min-width:0;
    }
    .mobile-brand strong{
      font-size:16px;
      line-height:1.2;
      color:var(--paper);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .mobile-brand span{
      font-size:11px;
      color:var(--muted);
    }
    .menu-toggle.button{
      margin:0;
      min-height:44px;
      padding:0 14px;
      border-radius:var(--radius-sm);
      background:var(--accent);
      color:#fff;
      box-shadow:var(--shadow-hard);
    }
    .menu-toggle.button:hover,
    .menu-toggle.button:focus-visible{
      background:var(--accent-2);
      color:#fff;
    }
    .mobile-drawer{
      display:none;
      padding:0 16px 16px;
    }
    .mobile-drawer.is-open{display:block}
    .mobile-drawer .menu{
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
      border-radius:var(--radius);
      overflow:hidden;
    }
    .mobile-drawer .menu a{
      color:var(--paper);
      padding:14px 14px;
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .mobile-drawer .menu a:last-child{border-bottom:none}
    .mobile-drawer .menu a.is-active{
      background:rgba(246,217,77,.14);
      color:var(--warn);
      font-weight:700;
    }

    .content-shell{
      padding-left:var(--sidebar);
    }
    .main-wrap{
      width:min(var(--max), calc(100vw - var(--sidebar)));
      margin:0 auto;
      padding:22px 22px 0;
    }
    .page-head{
      display:grid;
      grid-template-columns:minmax(0, 1.4fr) minmax(320px, .9fr);
      gap:18px;
      align-items:stretch;
      margin-top:6px;
    }
    .page-head-panel{
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(135deg, rgba(242,90,34,.18), rgba(242,90,34,0) 44%),
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
        var(--panel);
      border:1px solid rgba(255,255,255,.08);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:24px 24px 22px;
    }
    .page-head-panel::before{
      content:"";
      position:absolute;
      inset:12px;
      border:1px dashed rgba(255,255,255,.11);
      border-radius:calc(var(--radius) - 2px);
      pointer-events:none;
    }
    .kicker-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:14px;
      position:relative;
      z-index:1;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.03);
      color:var(--paper);
      font-size:12px;
      line-height:1;
      letter-spacing:0;
    }
    .pill.warn{
      border-color:rgba(246,217,77,.25);
      background:rgba(246,217,77,.13);
      color:var(--warn);
    }
    .pill.accent{
      border-color:rgba(242,90,34,.28);
      background:rgba(242,90,34,.12);
      color:#ffd0bf;
    }
    h1{
      margin:0 0 12px;
      font-size:clamp(30px, 3vw, 48px);
      line-height:1.16;
      letter-spacing:0;
      color:var(--paper);
      max-width:12em;
      position:relative;
      z-index:1;
    }
    .head-copy{
      margin:0;
      max-width:58ch;
      color:#d8d1c4;
      font-size:16px;
      position:relative;
      z-index:1;
    }
    .head-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
      position:relative;
      z-index:1;
    }
    .button{
      min-height:44px;
      border-radius:var(--radius-sm);
      font-weight:700;
      letter-spacing:0;
      transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .button.primary{
      background:var(--accent);
      color:#fff;
      box-shadow:var(--shadow-hard);
    }
    .button.primary:hover,
    .button.primary:focus-visible{
      background:var(--accent-2);
      color:#fff;
      transform:translateY(-1px);
    }
    .button.secondary{
      background:var(--paper);
      color:var(--bg-deep);
      border:1px solid rgba(255,255,255,.15);
      box-shadow:var(--shadow-hard);
    }
    .button.secondary:hover,
    .button.secondary:focus-visible{
      background:transparent;
      color:var(--paper);
      border-color:rgba(255,255,255,.18);
      transform:translateY(-1px);
    }
    .head-meta{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:10px;
      margin-top:18px;
      position:relative;
      z-index:1;
    }
    .meta-box{
      padding:12px 12px 11px;
      border-radius:var(--radius-sm);
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      min-height:72px;
    }
    .meta-box strong{
      display:block;
      font-size:18px;
      line-height:1.2;
      color:var(--paper);
      margin-bottom:4px;
    }
    .meta-box span{
      color:var(--muted);
      font-size:12px;
      line-height:1.45;
    }

    .intro-panel{
      background:linear-gradient(180deg, rgba(247,241,231,.98), rgba(239,230,215,.98));
      color:var(--bg-deep);
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .intro-panel::before{
      content:"";
      position:absolute;
      inset:auto -18px -18px auto;
      width:96px;
      height:96px;
      border:12px solid rgba(242,90,34,.14);
      border-radius:50%;
      transform:rotate(12deg);
    }
    .intro-panel .tagline{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(242,90,34,.12);
      color:var(--accent-2);
      font-size:12px;
      font-weight:700;
      margin-bottom:14px;
    }
    .intro-panel h2{
      margin:0 0 10px;
      color:var(--bg-deep);
      font-size:22px;
      line-height:1.2;
    }
    .intro-panel p{
      margin:0;
      color:#3d352d;
      font-size:15px;
      line-height:1.75;
    }
    .intro-note{
      display:flex;
      gap:10px;
      align-items:flex-start;
      margin-top:16px;
      padding:12px 12px 11px;
      border-radius:var(--radius-sm);
      background:#fff;
      border:1px solid rgba(0,0,0,.08);
    }
    .intro-note b{
      color:var(--accent-2);
      white-space:nowrap;
    }
    .intro-note span{
      color:#4b443d;
      font-size:13px;
      line-height:1.6;
    }

    .ticker-band{
      margin-top:18px;
      background:linear-gradient(135deg, rgba(242,90,34,.95), rgba(214,64,34,.98));
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow);
      padding:18px 18px 16px;
      overflow:hidden;
      position:relative;
    }
    .ticker-band::after{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:10px;
      background:repeating-linear-gradient(90deg, rgba(255,255,255,.22) 0 14px, rgba(255,255,255,0) 14px 22px);
      opacity:.55;
    }
    .ticker-grid{
      display:grid;
      grid-template-columns:minmax(0, 1.1fr) minmax(340px, .9fr);
      gap:16px;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .ticker-copy h2{
      margin:0 0 8px;
      color:#fff8ef;
      font-size:22px;
      line-height:1.2;
    }
    .ticker-copy p{
      margin:0;
      color:rgba(255,255,255,.9);
      max-width:48ch;
      font-size:15px;
      line-height:1.7;
    }
    .countdown{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:10px;
    }
    .count-box{
      min-height:92px;
      border-radius:var(--radius-sm);
      background:rgba(16,16,16,.24);
      border:1px solid rgba(255,255,255,.18);
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      padding:10px 8px;
      text-align:center;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
    }
    .count-box strong{
      display:block;
      font-size:30px;
      line-height:1;
      color:var(--warn);
      font-variant-numeric:tabular-nums;
      letter-spacing:0;
    }
    .count-box span{
      margin-top:7px;
      color:#fff;
      font-size:12px;
      line-height:1;
      opacity:.92;
    }
    .count-cta{
      display:flex;
      gap:10px;
      align-items:center;
      margin-top:14px;
      flex-wrap:wrap;
    }
    .count-cta .button{
      box-shadow:none;
      border:1px solid rgba(255,255,255,.24);
    }
    .count-cta .button.primary{
      background:#111;
      color:#fff7ed;
    }
    .count-cta .button.secondary{
      background:rgba(255,255,255,.92);
      color:var(--bg-deep);
    }

    .section{
      margin-top:24px;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      line-height:1.2;
      color:var(--paper);
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
      max-width:52ch;
    }

    .filter-row{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      padding:12px 14px;
      border-radius:var(--radius);
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
      margin-bottom:14px;
    }
    .filter-label{
      color:var(--muted);
      font-size:13px;
      white-space:nowrap;
    }
    .menu.filter-menu{
      gap:8px;
      flex-wrap:wrap;
    }
    .menu.filter-menu > li{margin:0}
    .menu.filter-menu a{
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.09);
      color:var(--paper);
      font-size:13px;
      line-height:1;
      transition:transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .menu.filter-menu a:hover,
    .menu.filter-menu a:focus-visible{
      background:rgba(242,90,34,.14);
      border-color:rgba(242,90,34,.25);
      transform:translateY(-1px);
    }
    .menu.filter-menu a.is-active{
      background:var(--warn);
      color:var(--bg-deep);
      border-color:transparent;
      font-weight:700;
    }

    .ticket-grid{
      display:grid;
      grid-template-columns:minmax(0, 1.2fr) minmax(300px, .8fr);
      gap:18px;
      align-items:start;
    }
    .ticket-list{
      display:grid;
      gap:14px;
    }
    .ticket-card{
      position:relative;
      background:linear-gradient(180deg, rgba(247,241,231,.98), rgba(239,230,215,.98));
      color:var(--bg-deep);
      border:1px solid rgba(255,255,255,.1);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:18px 18px 16px;
      overflow:hidden;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .ticket-card::before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      bottom:0;
      width:8px;
      background:linear-gradient(180deg, var(--accent), var(--accent-2));
    }
    .ticket-card:hover{
      transform:translateY(-2px);
      border-color:rgba(242,90,34,.18);
      box-shadow:0 14px 28px rgba(0,0,0,.25);
    }
    .ticket-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      margin-bottom:10px;
    }
    .ticket-num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:38px;
      height:32px;
      padding:0 10px;
      border-radius:999px;
      background:var(--bg-deep);
      color:var(--warn);
      font-size:13px;
      font-weight:800;
      font-variant-numeric:tabular-nums;
    }
    .ticket-stamp{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(242,90,34,.12);
      color:var(--accent-2);
      font-size:12px;
      font-weight:700;
      white-space:nowrap;
    }
    .ticket-card h3{
      margin:0 0 8px;
      font-size:21px;
      line-height:1.25;
      color:var(--bg-deep);
    }
    .ticket-card p{
      margin:0 0 12px;
      color:#4b443d;
      font-size:15px;
      line-height:1.75;
    }
    .ticket-tags{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-bottom:12px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(0,0,0,.08);
      color:#5b5148;
      font-size:12px;
      line-height:1;
    }
    .tag.hot{
      background:rgba(242,90,34,.11);
      color:var(--accent-2);
      border-color:rgba(242,90,34,.18);
    }
    .ticket-foot{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      padding-top:12px;
      border-top:1px dashed rgba(0,0,0,.12);
    }
    .ticket-foot .updated{
      color:#665d55;
      font-size:12px;
      line-height:1.4;
    }
    .ticket-foot .button{
      margin:0;
      min-height:40px;
    }

    .side-stack{
      display:grid;
      gap:14px;
    }
    .info-box{
      background:linear-gradient(180deg, rgba(28,28,28,.98), rgba(19,19,19,.98));
      color:var(--text);
      border:1px solid rgba(255,255,255,.08);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .info-box h3{
      margin:0 0 10px;
      font-size:18px;
      line-height:1.25;
      color:var(--paper);
    }
    .info-box p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .info-list{
      margin:12px 0 0;
      list-style:none;
      padding:0;
      display:grid;
      gap:10px;
    }
    .info-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 11px;
      border-radius:var(--radius-sm);
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.06);
    }
    .info-list b{
      color:var(--warn);
      min-width:56px;
      flex:0 0 56px;
    }
    .info-list span{
      color:#d8d1c4;
      font-size:13px;
      line-height:1.6;
    }
    .mini-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:10px;
      margin-top:12px;
    }
    .mini-card{
      padding:12px 12px 11px;
      border-radius:var(--radius-sm);
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      min-height:88px;
    }
    .mini-card strong{
      display:block;
      color:var(--paper);
      font-size:18px;
      line-height:1.2;
      margin-bottom:4px;
      font-variant-numeric:tabular-nums;
    }
    .mini-card span{
      display:block;
      color:var(--muted);
      font-size:12px;
      line-height:1.5;
    }
    .mini-link{
      display:block;
      margin-top:12px;
      color:var(--warn);
      font-size:13px;
    }

    .subscribe-band{
      background:linear-gradient(135deg, rgba(247,241,231,.98), rgba(239,230,215,.98));
      color:var(--bg-deep);
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.1);
      box-shadow:var(--shadow);
      padding:22px;
    }
    .subscribe-grid{
      display:grid;
      grid-template-columns:minmax(0, 1.05fr) minmax(300px, .95fr);
      gap:18px;
      align-items:start;
    }
    .subscribe-copy h2{
      margin:0 0 10px;
      color:var(--bg-deep);
      font-size:22px;
      line-height:1.2;
    }
    .subscribe-copy p{
      margin:0 0 14px;
      color:#4b443d;
      font-size:15px;
      line-height:1.75;
    }
    .promise-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .promise-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#4e463d;
      font-size:14px;
      line-height:1.65;
    }
    .promise-dot{
      width:9px;
      height:9px;
      border-radius:50%;
      margin-top:7px;
      background:var(--accent);
      flex:0 0 9px;
      box-shadow:0 0 0 4px rgba(242,90,34,.12);
    }
    .subscribe-form{
      background:#fff;
      border:1px solid rgba(0,0,0,.08);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:0 6px 18px rgba(0,0,0,.08);
    }
    .subscribe-form .grid-x{gap:12px}
    .subscribe-form label{
      display:block;
      margin-bottom:8px;
      font-size:13px;
      color:#554b42;
      font-weight:700;
    }
    .subscribe-form input,
    .subscribe-form select,
    .subscribe-form textarea{
      width:100%;
      min-height:44px;
      border-radius:var(--radius-sm);
      border:1px solid #d7cec1;
      background:#fff;
      color:var(--bg-deep);
      padding:11px 12px;
      box-shadow:none;
      transition:border-color .18s ease, box-shadow .18s ease;
    }
    .subscribe-form textarea{min-height:100px;resize:vertical}
    .subscribe-form input:focus,
    .subscribe-form select:focus,
    .subscribe-form textarea:focus{
      border-color:var(--accent);
      box-shadow:0 0 0 3px rgba(242,90,34,.12);
      outline:none;
    }
    .form-hint{
      margin-top:10px;
      color:#76695d;
      font-size:12px;
      line-height:1.6;
    }
    .form-actions{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      margin-top:12px;
    }

    .entry-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .entry-card{
      position:relative;
      background:linear-gradient(180deg, rgba(28,28,28,.98), rgba(18,18,18,.98));
      color:var(--paper);
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow);
      overflow:hidden;
      padding:16px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:rgba(242,90,34,.24);
      box-shadow:0 14px 24px rgba(0,0,0,.28);
    }
    .entry-card::after{
      content:"";
      position:absolute;
      right:12px;
      top:12px;
      width:54px;
      height:54px;
      border:1px solid rgba(246,217,77,.18);
      border-radius:12px;
      transform:rotate(12deg);
      background:rgba(246,217,77,.06);
    }
    .entry-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
    }
    .entry-no{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:38px;
      height:32px;
      border-radius:999px;
      background:var(--warn);
      color:var(--bg-deep);
      font-size:13px;
      font-weight:800;
      box-shadow:var(--shadow-hard);
    }
    .entry-badge{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(242,90,34,.13);
      color:#ffd2c2;
      font-size:12px;
      border:1px solid rgba(242,90,34,.2);
    }
    .entry-card h3{
      margin:0 0 8px;
      font-size:18px;
      line-height:1.3;
    }
    .entry-card p{
      margin:0 0 12px;
      color:#d5cec0;
      font-size:14px;
      line-height:1.7;
    }
    .entry-footer{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      border-top:1px solid rgba(255,255,255,.08);
      padding-top:12px;
    }
    .entry-footer .mini{
      color:var(--muted);
      font-size:12px;
    }
    .entry-footer .button{
      margin:0;
      min-height:40px;
      background:var(--paper);
      color:var(--bg-deep);
    }
    .entry-footer .button:hover,
    .entry-footer .button:focus-visible{
      background:transparent;
      color:var(--paper);
      border-color:rgba(255,255,255,.2);
    }

    .faq-band{
      margin-top:24px;
      background:rgba(255,255,255,.03);
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .accordion{
      margin-bottom:0;
      background:transparent;
    }
    .accordion-title{
      color:var(--paper);
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
      border-radius:var(--radius-sm);
      font-weight:700;
      padding:14px 16px;
      line-height:1.35;
      transition:background .18s ease, border-color .18s ease, color .18s ease;
    }
    .accordion-title:hover,
    .accordion-title:focus-visible{
      background:rgba(242,90,34,.12);
      border-color:rgba(242,90,34,.22);
      color:var(--paper);
    }
    .accordion-item.is-active > .accordion-title{
      background:rgba(246,217,77,.16);
      color:var(--warn);
      border-color:rgba(246,217,77,.18);
    }
    .accordion-content{
      background:rgba(255,255,255,.02);
      border:1px solid rgba(255,255,255,.08);
      border-top:none;
      color:#ded6c9;
      padding:14px 16px 16px;
      border-radius:0 0 var(--radius-sm) var(--radius-sm);
    }
    .accordion-content p{
      margin:0;
      font-size:14px;
      line-height:1.75;
    }

    .site-footer{
      margin-top:28px;
      background:linear-gradient(180deg, rgba(12,12,12,.98), rgba(8,8,8,.98));
      border-top:1px solid rgba(255,255,255,.08);
      padding:24px 0 20px;
    }
    .site-footer .main-wrap{
      padding-top:0;
      padding-bottom:0;
    }
    .footer-brand{
      font-size:20px;
      line-height:1.2;
      font-weight:800;
      color:var(--paper);
      margin-bottom:8px;
    }
    .site-footer p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
      max-width:54ch;
    }
    .footer-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
      align-items:center;
    }
    .footer-links a{
      min-height:36px;
      display:inline-flex;
      align-items:center;
      padding:0 12px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:var(--paper);
      font-size:13px;
      transition:transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .footer-links a:hover,
    .footer-links a:focus-visible{
      background:rgba(242,90,34,.13);
      border-color:rgba(242,90,34,.22);
      transform:translateY(-1px);
    }
    .copyright{
      margin-top:18px;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.08);
      color:var(--muted);
      font-size:12px;
      line-height:1.65;
    }

    .section-divider{
      height:1px;
      background:linear-gradient(90deg, rgba(242,90,34,.7), rgba(255,255,255,.08));
      margin:22px 0;
      opacity:.8;
    }

    @media (max-width: 1100px){
      .page-head,
      .ticker-grid,
      .ticket-grid,
      .subscribe-grid{
        grid-template-columns:1fr;
      }
      .entry-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 768px){
      .side-nav{display:none}
      .mobile-bar{display:block}
      .content-shell{padding-left:0}
      .main-wrap{
        width:100%;
        padding:16px 16px 0;
      }
      .page-head-panel,
      .ticker-band,
      .ticket-card,
      .info-box,
      .subscribe-band,
      .faq-band{
        padding:16px;
      }
      h1{font-size:clamp(28px, 7vw, 36px);max-width:none}
      .head-meta{grid-template-columns:1fr}
      .countdown{grid-template-columns:repeat(2, minmax(0, 1fr))}
      .entry-grid{grid-template-columns:1fr}
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .footer-links{justify-content:flex-start}
      .site-footer .grid-x{gap:14px}
    }
    @media (max-width: 520px){
      .mobile-bar-inner{padding:10px 14px}
      .mobile-brand strong{font-size:15px}
      .head-actions,
      .count-cta,
      .form-actions{
        width:100%;
      }
      .head-actions .button,
      .count-cta .button,
      .form-actions .button{
        width:100%;
        justify-content:center;
      }
      .countdown{gap:8px}
      .count-box{min-height:84px}
      .count-box strong{font-size:25px}
      .ticket-top,
      .entry-top,
      .ticket-foot,
      .entry-footer{
        flex-direction:column;
        align-items:flex-start;
      }
      .mini-grid{grid-template-columns:1fr}
      .menu.filter-menu{
        width:100%;
      }
      .menu.filter-menu a{
        width:100%;
        justify-content:center;
      }
    }

/* roulang page: category2 */
:root{
      --bg:#161616;
      --bg-2:#1c1c1c;
      --bg-3:#222222;
      --paper:#f6f0e4;
      --paper-2:#fffaf0;
      --ink:#191919;
      --ink-2:#3c352d;
      --text:#f4efe6;
      --muted:#c2b7a7;
      --muted-2:#8f8578;
      --line:rgba(255,255,255,.10);
      --line-2:rgba(0,0,0,.10);
      --accent:#ff5b1f;
      --accent-2:#ff3648;
      --accent-3:#f5df4d;
      --shadow:0 12px 26px rgba(0,0,0,.28);
      --shadow-soft:0 8px 18px rgba(0,0,0,.18);
      --radius:8px;
      --radius-sm:6px;
      --sidebar:108px;
      --content-max:1320px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
      line-height:1.7;
      color:var(--text);
      background:
        linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,0)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.022) 0 1px, transparent 1px 34px),
        var(--bg);
      letter-spacing:0;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(135deg, rgba(255,91,31,.06), transparent 40%),
        linear-gradient(315deg, rgba(245,223,77,.05), transparent 42%);
      opacity:.85;
    }
    img{max-width:100%;display:block}
    a{color:inherit;text-decoration:none;transition:color .18s var(--ease), opacity .18s var(--ease), transform .18s var(--ease)}
    a:hover{color:inherit}
    button,input,select,textarea{
      font:inherit;
      letter-spacing:0;
    }
    h1,h2,h3,h4,p,ul,ol{margin-top:0}
    h1,h2,h3,h4{line-height:1.18}
    p:last-child{margin-bottom:0}
    :focus-visible{
      outline:3px solid rgba(245,223,77,.95);
      outline-offset:2px;
    }

    .page-shell{
      min-height:100vh;
      position:relative;
    }

    .side-nav{
      position:fixed;
      left:0;
      top:0;
      width:var(--sidebar);
      height:100vh;
      padding:18px 12px 16px;
      background:rgba(14,14,14,.96);
      border-right:1px solid rgba(255,255,255,.08);
      z-index:40;
      display:flex;
      flex-direction:column;
      backdrop-filter:saturate(120%);
    }
    .side-nav-logo{
      display:flex;
      flex-direction:column;
      gap:6px;
      padding:8px 8px 14px;
      min-height:92px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .logo-main{
      font-size:17px;
      font-weight:800;
      color:#fff;
      line-height:1.2;
      word-break:break-word;
    }
    .logo-sub{
      font-size:11px;
      color:var(--muted-2);
      letter-spacing:0;
      line-height:1.2;
    }
    .side-nav-links{
      list-style:none;
      margin:14px 0 0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:4px;
    }
    .side-nav-link{
      display:flex;
      align-items:center;
      gap:10px;
      min-height:44px;
      padding:10px 8px;
      border-radius:8px;
      color:var(--muted);
      font-size:13px;
      line-height:1.2;
      border:1px solid transparent;
    }
    .side-nav-link .nav-icon{
      width:12px;
      flex:0 0 12px;
      color:var(--accent-3);
      font-size:15px;
      line-height:1;
      transform:translateY(-1px);
    }
    .side-nav-link:hover{
      color:#fff;
      background:rgba(255,255,255,.04);
      border-color:rgba(255,255,255,.06);
      transform:translateX(2px);
    }
    .side-nav-link.active{
      color:#fff;
      background:linear-gradient(90deg, rgba(255,91,31,.20), rgba(255,91,31,.06));
      border-color:rgba(255,91,31,.35);
      box-shadow:inset 3px 0 0 rgba(255,91,31,.95);
    }
    .side-nav-link.active .nav-icon{
      color:var(--accent);
    }
    .side-nav-footer{
      margin-top:auto;
      padding:12px 8px 6px;
      font-size:11px;
      color:var(--muted-2);
      border-top:1px solid rgba(255,255,255,.08);
      letter-spacing:0;
    }

    .mobile-bar{
      display:none;
      position:fixed;
      left:0;
      top:0;
      right:0;
      z-index:60;
      height:64px;
      padding:10px 14px;
      align-items:center;
      justify-content:space-between;
      background:rgba(14,14,14,.96);
      border-bottom:1px solid rgba(255,255,255,.08);
      backdrop-filter:saturate(120%);
    }
    .mobile-brand{
      display:flex;
      flex-direction:column;
      gap:2px;
      color:#fff;
      min-width:0;
      max-width:72%;
    }
    .mobile-brand span{
      display:block;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
      line-height:1.2;
    }
    .mobile-brand .brand-main{
      font-size:15px;
      font-weight:800;
    }
    .mobile-brand .brand-sub{
      font-size:11px;
      color:var(--muted-2);
    }
    .menu-toggle{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:10px 14px;
      border-radius:6px;
      border:1px solid rgba(255,255,255,.14);
      background:#f6f0e4;
      color:#161616;
      font-weight:700;
      box-shadow:var(--shadow-soft);
      cursor:pointer;
      transition:transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
    }
    .menu-toggle:hover{
      transform:translateY(-1px);
      background:#fff7ec;
    }

    .mobile-menu{
      display:none;
      position:fixed;
      top:64px;
      left:0;
      right:0;
      z-index:55;
      padding:12px 14px 16px;
      background:rgba(18,18,18,.98);
      border-bottom:1px solid rgba(255,255,255,.08);
      box-shadow:0 16px 24px rgba(0,0,0,.24);
    }
    .mobile-menu.is-open{
      display:block;
    }
    .mobile-menu .menu{
      margin:0;
    }
    .mobile-menu .menu.vertical a{
      min-height:44px;
      padding:12px 10px;
      color:var(--text);
      border-radius:8px;
      font-size:14px;
      border:1px solid transparent;
    }
    .mobile-menu .menu.vertical a:hover,
    .mobile-menu .menu.vertical a.active{
      background:rgba(255,255,255,.05);
      border-color:rgba(255,255,255,.08);
      color:#fff;
    }

    .content-area{
      margin-left:var(--sidebar);
      padding:24px 28px 40px;
      position:relative;
      z-index:1;
    }
    .main-wrap{
      max-width:var(--content-max);
      margin:0 auto;
      width:100%;
    }

    .hero-panel{
      position:relative;
      padding:28px;
      background:
        linear-gradient(140deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
        linear-gradient(180deg, #1d1d1d, #121212);
      border:1px solid rgba(255,255,255,.10);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:14px;
      border:1px dashed rgba(245,223,77,.22);
      border-radius:8px;
      pointer-events:none;
    }
    .hero-panel:after{
      content:"";
      position:absolute;
      left:-2px;
      right:-2px;
      top:58px;
      height:16px;
      background:linear-gradient(90deg, rgba(255,91,31,.92), rgba(255,54,72,.92));
      opacity:.96;
      transform:skewX(-12deg);
      box-shadow:0 8px 14px rgba(0,0,0,.26);
      pointer-events:none;
      clip-path:polygon(0 0, 100% 0, 98% 100%, 0 100%);
    }
    .hero-grid{
      position:relative;
      z-index:1;
      align-items:center;
    }
    .hero-kicker{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:10px;
      margin-bottom:14px;
      font-size:12px;
      color:var(--muted);
      letter-spacing:0;
    }
    .stamp-badge{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      background:var(--accent-3);
      color:#211d11;
      font-weight:800;
      line-height:1;
      box-shadow:0 4px 0 rgba(0,0,0,.16);
    }
    .hero-copy h1{
      margin:0;
      max-width:11.5ch;
      font-size:48px;
      line-height:1.04;
      color:#fff;
      letter-spacing:0;
      text-wrap:balance;
      word-break:break-word;
    }
    .hero-copy p{
      margin:18px 0 0;
      max-width:56ch;
      color:var(--muted);
      font-size:16px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
    }
    .button{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 18px;
      border-radius:6px;
      font-weight:800;
      line-height:1.2;
      transition:transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
      letter-spacing:0;
      box-shadow:none;
      white-space:normal;
      text-align:center;
    }
    .button.primary-btn{
      background:var(--accent);
      color:#fff;
      border:1px solid rgba(255,255,255,.08);
      box-shadow:0 10px 18px rgba(255,91,31,.20);
    }
    .button.primary-btn:hover{
      background:var(--accent-2);
      color:#fff;
      transform:translateY(-1px);
      box-shadow:0 12px 20px rgba(255,54,72,.22);
    }
    .button.secondary-btn{
      background:var(--paper);
      color:var(--ink);
      border:1px solid rgba(0,0,0,.12);
    }
    .button.secondary-btn:hover{
      background:#fff;
      border-color:rgba(255,91,31,.38);
      transform:translateY(-1px);
    }
    .button.dark-btn{
      background:#121212;
      color:#fff;
      border:1px solid rgba(255,255,255,.12);
    }
    .button.dark-btn:hover{
      border-color:rgba(245,223,77,.42);
      background:#1b1b1b;
      transform:translateY(-1px);
    }
    .button.small-btn{
      min-height:38px;
      padding:10px 14px;
      font-size:13px;
    }

    .hero-pills{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:18px;
    }
    .mini-pill{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.05);
      color:#fff;
      font-size:12px;
      line-height:1;
    }

    .hero-visual{
      position:relative;
      margin-top:8px;
      padding:18px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(246,240,228,.98), rgba(255,250,240,.96));
      color:var(--ink);
      border:1px solid rgba(0,0,0,.10);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-visual .visual-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
      padding-bottom:12px;
      border-bottom:1px solid rgba(0,0,0,.10);
    }
    .hero-visual .visual-head strong{
      font-size:15px;
      color:var(--ink);
    }
    .hero-visual .visual-head span{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(255,91,31,.10);
      color:#b93513;
      font-size:12px;
      font-weight:800;
    }
    .status-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
    }
    .status-card{
      padding:14px;
      border-radius:var(--radius-sm);
      background:#fff;
      border:1px solid rgba(0,0,0,.08);
      box-shadow:0 8px 16px rgba(0,0,0,.06);
    }
    .status-card.wide{
      grid-column:span 2;
    }
    .status-card .tag{
      display:inline-flex;
      align-items:center;
      min-height:24px;
      padding:0 8px;
      border-radius:999px;
      background:rgba(255,91,31,.12);
      color:#b33b18;
      font-size:12px;
      font-weight:800;
      margin-bottom:10px;
    }
    .status-card h3{
      margin:0 0 6px;
      font-size:18px;
      color:var(--ink);
    }
    .status-card p{
      margin:0;
      color:var(--ink-2);
      font-size:14px;
      line-height:1.6;
    }
    .status-card .link-line{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-top:10px;
      color:#b33b18;
      font-size:13px;
      font-weight:800;
    }

    .section-gap{
      margin-top:24px;
    }
    .promo-callout{
      padding:0;
      border:0;
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .promo-strip{
      position:relative;
      padding:18px 20px;
      background:linear-gradient(90deg, #22120d, #2d1811 54%, #3b1d16);
      border:1px solid rgba(255,255,255,.10);
      border-radius:var(--radius);
      overflow:hidden;
    }
    .promo-strip:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 100%),
        linear-gradient(315deg, rgba(245,223,77,.12), transparent 38%);
      opacity:.6;
      pointer-events:none;
    }
    .promo-strip .strip-inner{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:minmax(0,1.15fr) minmax(240px,.95fr) minmax(180px,.75fr);
      gap:18px;
      align-items:center;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      min-height:26px;
      padding:0 10px;
      margin-bottom:8px;
      border-radius:999px;
      background:rgba(245,223,77,.14);
      color:#f5df4d;
      font-size:12px;
      font-weight:800;
    }
    .strip-title{
      margin:0 0 8px;
      color:#fff;
      font-size:26px;
      line-height:1.16;
    }
    .strip-desc{
      margin:0;
      color:rgba(255,255,255,.78);
      font-size:15px;
      max-width:46ch;
    }
    .countdown-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:10px;
    }
    .count-box{
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      min-height:86px;
      padding:10px 8px;
      border-radius:8px;
      background:#101010;
      border:1px solid rgba(245,223,77,.18);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }
    .count-num{
      color:var(--accent-3);
      font-size:32px;
      font-weight:900;
      line-height:1;
      font-variant-numeric:tabular-nums;
    }
    .count-label{
      margin-top:8px;
      color:rgba(255,255,255,.72);
      font-size:12px;
      line-height:1;
    }
    .strip-actions{
      display:flex;
      flex-direction:column;
      align-items:stretch;
      gap:10px;
    }
    .strip-note{
      margin:0;
      color:rgba(255,255,255,.72);
      font-size:13px;
      line-height:1.6;
    }

    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:28px;
      color:#fff;
      line-height:1.15;
      letter-spacing:0;
    }
    .section-head p{
      margin:0;
      max-width:54ch;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }

    .paper-panel{
      background:linear-gradient(180deg, var(--paper), var(--paper-2));
      color:var(--ink);
      border:1px solid rgba(0,0,0,.10);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }

    .ticket-list{
      display:grid;
      gap:14px;
    }
    .ticket-item{
      position:relative;
      display:grid;
      grid-template-columns:84px minmax(0,1fr) auto;
      gap:16px;
      padding:18px 18px 18px 16px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, #fffaf0, #f7f0e5);
      color:var(--ink);
      border:1px solid rgba(0,0,0,.10);
      box-shadow:0 8px 16px rgba(0,0,0,.08);
      overflow:hidden;
    }
    .ticket-item:before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      bottom:0;
      width:8px;
      background:linear-gradient(180deg, var(--accent), var(--accent-2));
    }
    .ticket-item:hover{
      transform:translateY(-2px);
      border-color:rgba(255,91,31,.35);
      box-shadow:0 14px 22px rgba(0,0,0,.12);
    }
    .ticket-number{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:10px;
      padding-left:8px;
    }
    .ticket-number strong{
      font-size:26px;
      line-height:1;
      color:#231f1a;
    }
    .ticket-time{
      display:inline-flex;
      align-items:center;
      min-height:24px;
      padding:0 8px;
      width:max-content;
      border-radius:999px;
      background:rgba(255,91,31,.10);
      color:#b33b18;
      font-size:12px;
      font-weight:800;
    }
    .ticket-body h3{
      margin:0 0 8px;
      font-size:21px;
      line-height:1.22;
      color:var(--ink);
    }
    .ticket-body p{
      margin:0 0 10px;
      color:#4f463d;
      font-size:14px;
      line-height:1.72;
    }
    .ticket-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .tag-chip{
      display:inline-flex;
      align-items:center;
      min-height:24px;
      padding:0 8px;
      border-radius:999px;
      background:rgba(0,0,0,.06);
      color:#4e463b;
      font-size:12px;
      font-weight:700;
    }
    .ticket-action{
      display:flex;
      align-items:flex-end;
      justify-content:flex-end;
      min-width:132px;
      padding-left:8px;
    }
    .ticket-action .button{
      min-width:120px;
    }
    .ticket-item.is-current{
      border-color:rgba(255,91,31,.42);
      box-shadow:0 14px 22px rgba(0,0,0,.10);
    }
    .ticket-item.is-current .ticket-time{
      background:rgba(245,223,77,.24);
      color:#9a7a00;
    }

    .panel-dark{
      padding:18px;
      background:linear-gradient(180deg, #1b1b1b, #111);
      border:1px solid rgba(255,255,255,.10);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      color:#fff;
      overflow:hidden;
    }
    .panel-dark h3{
      margin:0 0 10px;
      font-size:20px;
      color:#fff;
    }
    .check-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .check-list li{
      position:relative;
      padding-left:22px;
      color:rgba(255,255,255,.82);
      font-size:14px;
      line-height:1.68;
    }
    .check-list li:before{
      content:"";
      position:absolute;
      left:0;
      top:9px;
      width:10px;
      height:10px;
      border-radius:999px;
      background:var(--accent-3);
      box-shadow:0 0 0 3px rgba(245,223,77,.16);
    }
    .panel-dark .button{
      margin-top:16px;
    }

    .subscribe-panel{
      padding:22px;
    }
    .subscribe-panel .panel-title{
      margin-bottom:18px;
    }
    .panel-title h2,
    .panel-title h3{
      margin:0 0 8px;
      color:#fff;
      font-size:26px;
      line-height:1.18;
    }
    .panel-title p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .form-shell{
      padding:20px;
      background:linear-gradient(180deg, #fffaf0, #f7f0e5);
      border:1px solid rgba(0,0,0,.10);
      border-radius:var(--radius);
    }
    label{
      color:var(--ink);
      font-weight:700;
      font-size:13px;
    }
    .form-shell input,
    .form-shell select,
    .form-shell textarea{
      min-height:44px;
      border-radius:6px;
      border:1px solid rgba(0,0,0,.14);
      background:#fff;
      color:var(--ink);
      box-shadow:none;
      margin-top:8px;
      margin-bottom:14px;
      transition:border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
    }
    .form-shell textarea{
      min-height:128px;
      resize:vertical;
    }
    .form-shell input:focus,
    .form-shell select:focus,
    .form-shell textarea:focus{
      border-color:rgba(255,91,31,.58);
      box-shadow:0 0 0 3px rgba(255,91,31,.10);
    }
    .field-note{
      margin:-6px 0 14px;
      color:#6b5f51;
      font-size:12px;
      line-height:1.6;
    }
    .checkbox-row{
      display:flex;
      align-items:flex-start;
      gap:10px;
      margin:2px 0 16px;
      color:var(--ink-2);
      font-size:13px;
    }
    .checkbox-row input{
      margin-top:3px;
      width:18px;
      height:18px;
      border-radius:4px;
      flex:0 0 auto;
    }
    .form-success.callout{
      margin:14px 0 0;
      background:rgba(255,91,31,.10);
      border:1px solid rgba(255,91,31,.24);
      color:#9b3416;
      border-radius:6px;
      padding:12px 14px;
      font-size:14px;
    }

    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .entry-card{
      position:relative;
      padding:18px 18px 16px;
      background:linear-gradient(180deg, #fffaf0, #f7f0e5);
      border:1px solid rgba(0,0,0,.10);
      border-radius:var(--radius);
      box-shadow:0 10px 18px rgba(0,0,0,.08);
      overflow:hidden;
      min-height:172px;
      transition:transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:rgba(255,91,31,.34);
      box-shadow:0 14px 22px rgba(0,0,0,.12);
    }
    .entry-card::after{
      content:"";
      position:absolute;
      inset:10px 10px auto auto;
      width:64px;
      height:64px;
      border-radius:50%;
      border:10px solid rgba(255,91,31,.12);
      opacity:.8;
      pointer-events:none;
    }
    .entry-index{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:34px;
      min-height:34px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(255,91,31,.12);
      color:#b33b18;
      font-weight:900;
      font-size:13px;
    }
    .entry-card h3{
      margin:12px 0 8px;
      font-size:19px;
      line-height:1.22;
      color:var(--ink);
    }
    .entry-card p{
      margin:0 0 12px;
      color:#4f463d;
      font-size:14px;
      line-height:1.68;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:14px;
    }
    .entry-actions{
      display:flex;
      justify-content:flex-start;
    }
    .entry-card.is-current{
      border-color:rgba(255,91,31,.40);
      background:linear-gradient(180deg, #fff7ea, #f7efe0);
    }
    .entry-card.is-current .entry-index{
      background:rgba(245,223,77,.26);
      color:#8a6a00;
    }

    .steps-panel{
      padding:18px;
      background:linear-gradient(180deg, #191919, #111);
      border:1px solid rgba(255,255,255,.10);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      color:#fff;
    }
    .steps-panel h3{
      margin:0 0 12px;
      font-size:20px;
      color:#fff;
    }
    .steps-panel ol{
      margin:0;
      padding-left:18px;
      color:rgba(255,255,255,.82);
      font-size:14px;
      line-height:1.72;
    }
    .steps-panel li{
      margin-bottom:10px;
    }
    .steps-panel .button{
      margin-top:8px;
    }

    .faq-wrap{
      padding:20px;
    }
    .faq-accordion{
      margin:0;
      background:transparent;
    }
    .faq-accordion .accordion-item{
      margin-bottom:12px;
      border-radius:var(--radius);
      overflow:hidden;
      border:1px solid rgba(0,0,0,.10);
      background:linear-gradient(180deg, #fffaf0, #f7f0e5);
      box-shadow:0 8px 16px rgba(0,0,0,.08);
    }
    .faq-accordion .accordion-title{
      position:relative;
      padding:16px 18px;
      color:var(--ink);
      font-weight:800;
      font-size:16px;
      line-height:1.4;
      border:none;
      background:transparent;
    }
    .faq-accordion .accordion-title:hover{
      background:rgba(255,91,31,.04);
    }
    .faq-accordion .accordion-title:before{
      top:50%;
      right:18px;
      margin-top:-9px;
      width:18px;
      height:18px;
      line-height:18px;
      border-radius:999px;
      background:var(--accent);
      color:#fff;
      text-align:center;
      font-weight:900;
    }
    .faq-accordion .is-active > .accordion-title{
      background:rgba(255,91,31,.06);
      color:#a33d1e;
    }
    .faq-accordion .accordion-content{
      padding:0 18px 16px;
      border:none;
      color:#4f463d;
      font-size:14px;
      line-height:1.78;
      background:transparent;
    }

    .site-footer{
      margin-left:var(--sidebar);
      width:calc(100% - var(--sidebar));
      margin-top:14px;
      padding:22px 28px 34px;
      background:linear-gradient(180deg, #101010, #0c0c0c);
      color:#fff;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .site-footer .main-wrap{
      max-width:var(--content-max);
    }
    .footer-brand{
      font-size:20px;
      font-weight:900;
      line-height:1.2;
      color:#fff;
      margin-bottom:10px;
    }
    .site-footer p{
      color:rgba(255,255,255,.76);
      font-size:14px;
      line-height:1.8;
      max-width:54ch;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:12px 16px;
      justify-content:flex-end;
      align-items:center;
    }
    .footer-links a{
      color:#fff;
      font-size:13px;
      line-height:1.4;
      padding:6px 0;
      border-bottom:1px solid transparent;
    }
    .footer-links a:hover{
      color:var(--accent-3);
      border-bottom-color:rgba(245,223,77,.5);
    }
    .copyright{
      margin-top:16px;
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.08);
      color:rgba(255,255,255,.52);
      font-size:12px;
      line-height:1.7;
    }

    .content-section{
      margin-top:24px;
    }
    .content-section.paper-section{
      background:transparent;
    }

    .section-note{
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    @media (max-width: 1180px){
      .hero-copy h1{font-size:42px}
      .strip-title{font-size:24px}
      .section-head h2{font-size:24px}
      .entry-grid{grid-template-columns:1fr}
      .promo-strip .strip-inner{grid-template-columns:1fr}
      .countdown-grid{max-width:420px}
    }

    @media (max-width: 1024px){
      :root{--sidebar:92px}
      .side-nav{width:var(--sidebar)}
      .content-area{margin-left:var(--sidebar);padding:20px 18px 34px}
      .site-footer{margin-left:var(--sidebar);width:calc(100% - var(--sidebar));padding-left:18px;padding-right:18px}
      .hero-copy h1{font-size:38px}
      .ticket-item{grid-template-columns:72px minmax(0,1fr);grid-template-rows:auto auto}
      .ticket-action{grid-column:1 / -1;justify-content:flex-start;padding-left:8px}
      .ticket-number{padding-left:8px}
    }

    @media (max-width: 767px){
      .side-nav,
      .site-footer{
        display:none;
      }
      .mobile-bar{
        display:flex;
      }
      .content-area{
        margin-left:0;
        padding:78px 14px 28px;
      }
      .hero-panel{
        padding:20px;
      }
      .hero-panel:after{
        top:48px;
        height:14px;
      }
      .hero-copy h1{
        max-width:100%;
        font-size:30px;
      }
      .hero-copy p{
        font-size:15px;
      }
      .hero-actions{
        flex-direction:column;
      }
      .button{
        width:100%;
      }
      .hero-visual{
        margin-top:18px;
      }
      .status-grid{
        grid-template-columns:1fr;
      }
      .status-card.wide{
        grid-column:span 1;
      }
      .promo-strip{
        padding:16px;
      }
      .countdown-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .ticket-item{
        grid-template-columns:1fr;
        gap:12px;
      }
      .ticket-number{
        padding-left:8px;
      }
      .ticket-action{
        min-width:0;
        padding-left:0;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .section-head h2{
        font-size:22px;
      }
      .subscribe-panel{
        padding:16px;
      }
      .form-shell{
        padding:16px;
      }
      .entry-grid{
        grid-template-columns:1fr;
      }
      .steps-panel{
        margin-top:14px;
      }
      .faq-wrap{
        padding:14px;
      }
    }

    @media (max-width: 520px){
      .count-box{
        min-height:78px;
      }
      .count-num{
        font-size:28px;
      }
      .ticket-body h3,
      .entry-card h3{
        font-size:18px;
      }
      .panel-title h2,
      .panel-title h3,
      .strip-title{
        font-size:22px;
      }
      .form-shell input,
      .form-shell select,
      .form-shell textarea{
        font-size:14px;
      }
      .faq-accordion .accordion-title{
        font-size:15px;
        padding-right:44px;
      }
    }
