/* roulang page: index */
:root {
      --bg: #07080b;
      --bg-2: #0b0d11;
      --panel: #11141b;
      --panel-2: #151922;
      --panel-3: #1b202b;
      --line: rgba(255, 255, 255, 0.08);
      --line-2: rgba(215, 177, 90, 0.28);
      --text: #f4efe5;
      --muted: #a8afba;
      --gold: #d7b15a;
      --gold-2: #f1d08a;
      --green: #79986b;
      --wine: #732735;
      --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
      --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.25);
      --radius: 8px;
      --radius-sm: 6px;
      --space: clamp(1rem, 2vw, 1.5rem);
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(215, 177, 90, 0.09), transparent 26%),
        radial-gradient(circle at 85% 12%, rgba(121, 152, 107, 0.07), transparent 24%),
        linear-gradient(180deg, #06070a 0%, #08090c 40%, #090a0d 100%);
      font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 72px 72px;
      opacity: 0.18;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.3));
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    a:hover {
      color: var(--gold-2);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      background: var(--gold);
      color: #111;
    }

    :focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    .site-shell {
      position: relative;
      padding-bottom: 92px;
    }

    .grid-container {
      max-width: 1220px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 80;
      backdrop-filter: blur(10px);
      background: rgba(7, 8, 11, 0.93);
      border-bottom: 1px solid var(--line);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.85rem;
      min-width: 0;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      border: 1px solid rgba(215, 177, 90, 0.45);
      background:
        linear-gradient(145deg, rgba(215, 177, 90, 0.26), rgba(215, 177, 90, 0.04)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
      display: grid;
      place-items: center;
      color: var(--gold-2);
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: 0;
      flex: 0 0 auto;
    }

    .brand-text {
      min-width: 0;
    }

    .brand-name {
      display: block;
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.2;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand-sub {
      display: block;
      margin-top: 0.15rem;
      font-size: 0.78rem;
      color: var(--muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .top-links {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      flex-wrap: wrap;
    }

    .top-links a {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.62rem 0.9rem;
      border-radius: var(--radius);
      border: 1px solid transparent;
      color: var(--muted);
      background: transparent;
      font-size: 0.96rem;
      font-weight: 650;
      line-height: 1;
      white-space: nowrap;
    }

    .top-links a:hover,
    .top-links a[aria-current="page"] {
      color: var(--text);
      border-color: rgba(215, 177, 90, 0.32);
      background: rgba(215, 177, 90, 0.08);
      box-shadow: 0 0 0 1px rgba(215, 177, 90, 0.08) inset;
    }

    .top-links .nav-icon {
      width: 15px;
      height: 15px;
      stroke-width: 2.1;
      flex: 0 0 auto;
    }

    main {
      position: relative;
    }

    section {
      position: relative;
      padding: clamp(1.35rem, 3vw, 2.8rem) 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: end;
      margin-bottom: 1.15rem;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(1.45rem, 2.6vw, 2.35rem);
      line-height: 1.1;
      font-weight: 900;
      letter-spacing: 0;
      color: var(--text);
    }

    .section-head p {
      margin: 0;
      max-width: 46rem;
      color: var(--muted);
      font-size: 0.98rem;
    }

    .hero-band {
      padding-top: 1.3rem;
    }

    .hero-shell {
      position: relative;
      overflow: hidden;
      border-radius: 14px;
      border: 1px solid rgba(215, 177, 90, 0.18);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(135deg, rgba(17, 20, 27, 0.98), rgba(10, 12, 17, 0.98));
      box-shadow: var(--shadow);
    }

    .hero-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 10% 12%, rgba(215, 177, 90, 0.12), transparent 26%),
        radial-gradient(circle at 92% 15%, rgba(121, 152, 107, 0.08), transparent 28%),
        linear-gradient(90deg, transparent 0, transparent 49.7%, rgba(255, 255, 255, 0.035) 50%, transparent 50.3%);
      pointer-events: none;
      opacity: 0.7;
    }

    .hero-shell::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 30%;
      background: linear-gradient(180deg, transparent, rgba(7, 8, 11, 0.4));
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      padding: clamp(1.3rem, 3.2vw, 2.6rem);
      z-index: 1;
    }

    .brand-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.38rem 0.72rem;
      border: 1px solid rgba(215, 177, 90, 0.28);
      border-radius: 999px;
      background: rgba(215, 177, 90, 0.08);
      color: var(--gold-2);
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0;
    }

    .brand-chip .chip-icon {
      width: 14px;
      height: 14px;
      stroke-width: 2.2;
    }

    .hero-title {
      margin: 0.9rem 0 0.85rem;
      max-width: 12ch;
      font-size: clamp(2.15rem, 5.1vw, 4.45rem);
      line-height: 1.03;
      font-weight: 900;
      letter-spacing: 0;
      color: var(--text);
      text-wrap: balance;
    }

    .hero-copy {
      max-width: 44rem;
      margin: 0;
      color: #d8dde4;
      font-size: 1.03rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.4rem;
    }

    .button {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      border-radius: var(--radius);
      border: 1px solid transparent;
      padding: 0.84rem 1.06rem;
      font-weight: 800;
      line-height: 1;
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
      white-space: nowrap;
    }

    .button .btn-icon {
      width: 15px;
      height: 15px;
      stroke-width: 2.2;
      flex: 0 0 auto;
    }

    .button.gold {
      background: linear-gradient(180deg, #edd28e 0%, #d7b15a 100%);
      color: #1a150b;
      box-shadow: 0 10px 20px rgba(215, 177, 90, 0.18);
    }

    .button.gold:hover {
      color: #120f08;
      transform: translateY(-1px);
      box-shadow: 0 14px 24px rgba(215, 177, 90, 0.24);
    }

    .button.outline {
      background: transparent;
      color: var(--gold-2);
      border-color: rgba(215, 177, 90, 0.38);
    }

    .button.outline:hover {
      background: rgba(215, 177, 90, 0.08);
      transform: translateY(-1px);
      box-shadow: 0 10px 18px rgba(215, 177, 90, 0.08);
    }

    .button.subtle {
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      border-color: rgba(255, 255, 255, 0.08);
    }

    .button.subtle:hover {
      background: rgba(255, 255, 255, 0.06);
      transform: translateY(-1px);
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.7rem;
      margin-top: 1.45rem;
    }

    .stat-chip {
      padding: 0.84rem 0.94rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.025);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
    }

    .stat-chip strong {
      display: block;
      margin-bottom: 0.16rem;
      color: var(--gold-2);
      font-size: 1.18rem;
      line-height: 1.1;
      font-weight: 900;
      letter-spacing: 0;
    }

    .stat-chip span {
      color: var(--muted);
      font-size: 0.83rem;
      line-height: 1.35;
    }

    .hero-panel {
      position: relative;
      margin-top: 0.2rem;
      padding: 1rem;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(19, 22, 29, 0.98), rgba(16, 18, 24, 0.98));
      box-shadow: var(--shadow-soft);
    }

    .hero-panel-top {
      display: flex;
      justify-content: space-between;
      gap: 0.75rem;
      align-items: center;
      margin-bottom: 0.9rem;
      padding-bottom: 0.85rem;
      border-bottom: 1px solid var(--line);
    }

    .panel-kicker {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      color: var(--gold-2);
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0;
    }

    .panel-kicker .kicker-icon {
      width: 15px;
      height: 15px;
      stroke-width: 2.2;
    }

    .panel-status {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.35rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(121, 152, 107, 0.3);
      color: #bdd1b2;
      background: rgba(121, 152, 107, 0.08);
      font-size: 0.76rem;
      white-space: nowrap;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #89b56f;
      box-shadow: 0 0 0 4px rgba(121, 152, 107, 0.14);
      flex: 0 0 auto;
    }

    .hero-bento {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 0.8rem;
    }

    .bento-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.02);
      padding: 0.9rem;
    }

    .bento-card.big {
      min-height: 210px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(180deg, rgba(215, 177, 90, 0.07), transparent 34%),
        rgba(255, 255, 255, 0.02);
    }

    .big-card-title {
      margin: 0;
      font-size: 1.18rem;
      line-height: 1.2;
      font-weight: 900;
      color: var(--text);
    }

    .big-card-sub {
      margin: 0.4rem 0 0;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .bullet-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 0.5rem;
    }

    .bullet-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      color: #d7dce3;
      font-size: 0.88rem;
      line-height: 1.45;
    }

    .bullet-list li .mini-icon {
      width: 14px;
      height: 14px;
      stroke-width: 2.25;
      color: var(--gold-2);
      margin-top: 0.14rem;
      flex: 0 0 auto;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .mini-tile {
      padding: 0.82rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(0, 0, 0, 0.18);
    }

    .mini-tile strong {
      display: block;
      font-size: 1rem;
      color: var(--text);
      line-height: 1.2;
      margin-bottom: 0.18rem;
    }

    .mini-tile span {
      display: block;
      color: var(--muted);
      font-size: 0.8rem;
      line-height: 1.35;
    }

    .countdown-band {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    }

    .countdown-grid {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 1rem;
      align-items: stretch;
    }

    .countdown-core,
    .countdown-aside {
      border-radius: 12px;
      border: 1px solid var(--line);
      background: rgba(17, 20, 27, 0.85);
      padding: 1rem;
      box-shadow: var(--shadow-soft);
    }

    .countdown-headline {
      display: flex;
      justify-content: space-between;
      gap: 0.85rem;
      align-items: center;
      margin-bottom: 0.9rem;
    }

    .countdown-headline h3 {
      margin: 0;
      font-size: 1.18rem;
      line-height: 1.2;
      font-weight: 900;
    }

    .countdown-headline .desc {
      margin: 0.18rem 0 0;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .countdown-label {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.36rem 0.62rem;
      border: 1px solid rgba(215, 177, 90, 0.3);
      border-radius: 999px;
      background: rgba(215, 177, 90, 0.08);
      color: var(--gold-2);
      font-size: 0.76rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .timer-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .timer-box {
      padding: 0.95rem 0.8rem;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
      text-align: center;
    }

    .timer-box strong {
      display: block;
      color: var(--gold-2);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
      font-weight: 900;
      letter-spacing: 0;
    }

    .timer-box span {
      display: block;
      margin-top: 0.35rem;
      color: var(--muted);
      font-size: 0.84rem;
    }

    .timer-foot {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem 1rem;
      margin-top: 0.9rem;
      color: var(--muted);
      font-size: 0.85rem;
    }

    .timer-foot span {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .timer-foot i {
      width: 14px;
      height: 14px;
      stroke-width: 2.2;
      color: var(--gold-2);
    }

    .countdown-aside {
      display: grid;
      gap: 0.8rem;
    }

    .aside-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.7rem;
    }

    .aside-card {
      padding: 0.82rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.02);
    }

    .aside-card strong {
      display: block;
      font-size: 1rem;
      line-height: 1.2;
      color: var(--text);
      margin-bottom: 0.16rem;
    }

    .aside-card span {
      display: block;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.35;
    }

    .aside-stack {
      display: grid;
      gap: 0.55rem;
    }

    .stack-item {
      display: flex;
      gap: 0.55rem;
      align-items: flex-start;
      padding: 0.72rem 0.78rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(255, 255, 255, 0.02);
    }

    .stack-item i {
      width: 15px;
      height: 15px;
      margin-top: 0.18rem;
      stroke-width: 2.2;
      color: var(--gold-2);
      flex: 0 0 auto;
    }

    .stack-item strong {
      display: block;
      font-size: 0.93rem;
      line-height: 1.2;
      color: var(--text);
      margin-bottom: 0.15rem;
    }

    .stack-item p {
      margin: 0;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.45;
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 1rem;
      align-items: start;
    }

    .timeline {
      list-style: none;
      padding: 0;
      margin: 0;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: rgba(17, 20, 27, 0.88);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .timeline li {
      display: grid;
      grid-template-columns: 96px 1fr;
      gap: 0.85rem;
      padding: 0.95rem 1rem;
      border-bottom: 1px solid var(--line);
      align-items: start;
    }

    .timeline li:last-child {
      border-bottom: 0;
    }

    .timeline time {
      color: var(--gold-2);
      font-weight: 900;
      font-size: 0.96rem;
      line-height: 1.3;
    }

    .timeline h4 {
      margin: 0 0 0.15rem;
      font-size: 1rem;
      line-height: 1.25;
      font-weight: 800;
      color: var(--text);
    }

    .timeline p {
      margin: 0;
      color: #d3d8e0;
      font-size: 0.88rem;
      line-height: 1.55;
    }

    .timeline-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-top: 0.45rem;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 0.28rem;
      padding: 0.22rem 0.52rem;
      border-radius: 999px;
      border: 1px solid rgba(215, 177, 90, 0.25);
      background: rgba(215, 177, 90, 0.08);
      color: var(--gold-2);
      font-size: 0.72rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .signal-grid {
      display: grid;
      gap: 0.7rem;
    }

    .signal-card {
      padding: 0.95rem;
      border-radius: 12px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(215, 177, 90, 0.06), transparent 36%),
        rgba(255, 255, 255, 0.02);
      box-shadow: var(--shadow-soft);
    }

    .signal-card strong {
      display: block;
      font-size: 1.02rem;
      line-height: 1.2;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 0.2rem;
    }

    .signal-card span {
      display: block;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.5;
      margin-bottom: 0.8rem;
    }

    .signal-card ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0.45rem;
    }

    .signal-card li {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      color: #dbe0e8;
      font-size: 0.84rem;
      line-height: 1.35;
    }

    .signal-card li i {
      width: 14px;
      height: 14px;
      stroke-width: 2.2;
      color: var(--gold-2);
      flex: 0 0 auto;
    }

    .subscribe-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1rem;
      align-items: start;
    }

    .form-panel,
    .info-panel {
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(17, 20, 27, 0.9);
      box-shadow: var(--shadow-soft);
      padding: 1rem;
    }

    .form-panel h3,
    .info-panel h3 {
      margin: 0 0 0.35rem;
      font-size: 1.15rem;
      line-height: 1.2;
      font-weight: 900;
    }

    .form-panel p,
    .info-panel p {
      margin: 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.6;
    }

    .reminder-form {
      margin-top: 0.9rem;
      display: grid;
      gap: 0.85rem;
    }

    .field-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.7rem;
    }

    .field-row input {
      min-width: 0;
      padding: 0.88rem 0.95rem;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: var(--bg-2);
      color: var(--text);
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .field-row input::placeholder {
      color: #798290;
    }

    .field-row input:focus {
      border-color: rgba(215, 177, 90, 0.52);
      box-shadow: 0 0 0 3px rgba(215, 177, 90, 0.1);
      background: #0d1015;
    }

    .mode-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .mode-btn {
      padding: 0.52rem 0.78rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      background: rgba(255, 255, 255, 0.02);
      color: var(--muted);
      font-weight: 750;
      font-size: 0.82rem;
      transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
    }

    .mode-btn:hover {
      transform: translateY(-1px);
      color: var(--text);
      border-color: rgba(215, 177, 90, 0.24);
    }

    .mode-btn.active {
      color: var(--gold-2);
      background: rgba(215, 177, 90, 0.09);
      border-color: rgba(215, 177, 90, 0.42);
    }

    .form-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      align-items: center;
    }

    .form-note {
      font-size: 0.82rem;
      color: var(--muted);
    }

    .status-bar {
      margin-top: 0.8rem;
      padding: 0.8rem 0.9rem;
      border-radius: var(--radius);
      border: 1px solid rgba(121, 152, 107, 0.24);
      background: rgba(121, 152, 107, 0.07);
      color: #cce0bf;
      font-size: 0.84rem;
      line-height: 1.5;
      min-height: 2.6rem;
    }

    .info-stack {
      display: grid;
      gap: 0.7rem;
      margin-top: 0.9rem;
    }

    .info-row {
      display: flex;
      gap: 0.7rem;
      align-items: flex-start;
      padding: 0.82rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.02);
    }

    .info-row i {
      width: 16px;
      height: 16px;
      margin-top: 0.15rem;
      stroke-width: 2.2;
      color: var(--gold-2);
      flex: 0 0 auto;
    }

    .info-row strong {
      display: block;
      margin-bottom: 0.15rem;
      color: var(--text);
      font-size: 0.93rem;
      line-height: 1.2;
    }

    .info-row span {
      display: block;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.45;
    }

    .entries-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .entry-card {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      min-height: 100%;
      padding: 1rem;
      border-radius: 12px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(17, 20, 27, 0.92);
      box-shadow: var(--shadow-soft);
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(215, 177, 90, 0.28);
      box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
    }

    .entry-top {
      display: flex;
      justify-content: space-between;
      gap: 0.7rem;
      align-items: flex-start;
    }

    .entry-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(215, 177, 90, 0.2);
      background: rgba(215, 177, 90, 0.08);
      display: grid;
      place-items: center;
      color: var(--gold-2);
      flex: 0 0 auto;
    }

    .entry-icon i {
      width: 18px;
      height: 18px;
      stroke-width: 2.2;
    }

    .entry-title {
      margin: 0;
      font-size: 1.04rem;
      line-height: 1.25;
      font-weight: 900;
      color: var(--text);
    }

    .entry-copy {
      margin: 0;
      color: #d7dce3;
      font-size: 0.88rem;
      line-height: 1.55;
      flex: 1 1 auto;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.24rem 0.5rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.02);
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 750;
      white-space: nowrap;
    }

    .badge.gold {
      color: var(--gold-2);
      border-color: rgba(215, 177, 90, 0.28);
      background: rgba(215, 177, 90, 0.08);
    }

    .badge.green {
      color: #c8e0bf;
      border-color: rgba(121, 152, 107, 0.26);
      background: rgba(121, 152, 107, 0.08);
    }

    .entry-footer {
      display: flex;
      justify-content: space-between;
      gap: 0.6rem;
      align-items: center;
      border-top: 1px solid var(--line);
      padding-top: 0.82rem;
      margin-top: 0.15rem;
      color: var(--muted);
      font-size: 0.8rem;
    }

    .entry-footer a {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      color: var(--gold-2);
      font-weight: 800;
      white-space: nowrap;
    }

    .entry-footer i {
      width: 14px;
      height: 14px;
      stroke-width: 2.2;
    }

    .routes-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .route-card {
      position: relative;
      overflow: hidden;
      padding: 1rem;
      border-radius: 12px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(215, 177, 90, 0.08), transparent 24%),
        rgba(17, 20, 27, 0.92);
      box-shadow: var(--shadow-soft);
    }

    .route-card::after {
      content: "";
      position: absolute;
      inset: auto -10% -12% auto;
      width: 140px;
      height: 140px;
      background: radial-gradient(circle, rgba(215, 177, 90, 0.1), transparent 68%);
      pointer-events: none;
    }

    .route-card h3 {
      margin: 0 0 0.35rem;
      font-size: 1.16rem;
      line-height: 1.15;
      font-weight: 900;
      color: var(--text);
    }

    .route-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.55;
    }

    .route-list {
      list-style: none;
      margin: 0.85rem 0 0;
      padding: 0;
      display: grid;
      gap: 0.5rem;
    }

    .route-list li {
      display: flex;
      justify-content: space-between;
      gap: 0.7rem;
      align-items: center;
      padding: 0.6rem 0.7rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(0, 0, 0, 0.14);
      color: #dbe0e7;
      font-size: 0.84rem;
      line-height: 1.35;
    }

    .route-list li span {
      color: var(--gold-2);
      font-weight: 800;
      white-space: nowrap;
    }

    .route-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-top: 0.9rem;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .proof-card {
      padding: 0.95rem;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: rgba(17, 20, 27, 0.88);
      box-shadow: var(--shadow-soft);
    }

    .proof-card i {
      width: 17px;
      height: 17px;
      stroke-width: 2.2;
      color: var(--gold-2);
    }

    .proof-card strong {
      display: block;
      margin: 0.55rem 0 0.2rem;
      font-size: 1.02rem;
      font-weight: 900;
      line-height: 1.2;
    }

    .proof-card span {
      display: block;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.55;
    }

    .faq-wrap {
      display: grid;
      gap: 0.7rem;
    }

    details.faq-item {
      border-radius: 12px;
      border: 1px solid var(--line);
      background: rgba(17, 20, 27, 0.92);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    details.faq-item[open] {
      border-color: rgba(215, 177, 90, 0.26);
      background: rgba(19, 22, 29, 0.96);
    }

    details.faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      gap: 0.9rem;
      align-items: center;
      padding: 1rem 1rem;
      font-weight: 800;
      font-size: 0.98rem;
      line-height: 1.35;
      color: var(--text);
      user-select: none;
    }

    details.faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-q {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      min-width: 0;
    }

    .faq-q i {
      width: 16px;
      height: 16px;
      stroke-width: 2.2;
      color: var(--gold-2);
      flex: 0 0 auto;
    }

    .faq-toggle {
      width: 16px;
      height: 16px;
      stroke-width: 2.2;
      color: var(--gold-2);
      flex: 0 0 auto;
      transition: transform var(--ease);
    }

    details[open] .faq-toggle {
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 1rem 1rem 2.1rem;
      color: #d3d8e0;
      font-size: 0.9rem;
      line-height: 1.7;
      margin: 0;
    }

    .site-footer {
      margin-top: 0.5rem;
      padding: 2.2rem 0 6.2rem;
      border-top: 1px solid var(--line);
      background: rgba(6, 7, 10, 0.98);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr 0.9fr 0.75fr;
      gap: 1rem;
      align-items: start;
    }

    .footer-brand {
      display: grid;
      gap: 0.75rem;
    }

    .footer-brand p {
      margin: 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.7;
    }

    .footer-links {
      display: grid;
      gap: 0.55rem;
    }

    .footer-links h4 {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.2;
      font-weight: 850;
      color: var(--text);
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      width: fit-content;
      padding: 0.36rem 0.65rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.02);
      color: var(--muted);
      font-size: 0.8rem;
      line-height: 1;
    }

    .footer-links a:hover {
      color: var(--gold-2);
      border-color: rgba(215, 177, 90, 0.26);
      background: rgba(215, 177, 90, 0.08);
    }

    .footer-meta {
      display: grid;
      gap: 0.55rem;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.6;
    }

    .footer-meta strong {
      color: var(--text);
      font-size: 0.92rem;
    }

    .mobile-tabs {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 90;
      background: rgba(7, 8, 11, 0.98);
      border-top: 1px solid var(--line);
      box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.28);
    }

    .mobile-tabs nav {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 0;
      padding: 0.35rem 0.35rem 0.5rem;
    }

    .mobile-tabs a {
      flex: 1 1 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.18rem;
      color: var(--muted);
      padding: 0.52rem 0.25rem 0.4rem;
      border-radius: 10px;
      font-size: 0.71rem;
      font-weight: 700;
      line-height: 1;
      min-width: 0;
    }

    .mobile-tabs a[aria-current="page"] {
      color: var(--gold-2);
      background: rgba(215, 177, 90, 0.08);
    }

    .mobile-tabs i {
      width: 17px;
      height: 17px;
      stroke-width: 2.1;
    }

    .hide-mobile {
      display: inline-flex;
    }

    .sr-only {
      position: absolute !important;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .countdown-grid,
      .highlights-grid,
      .subscribe-grid,
      .routes-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .entries-grid,
      .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero-panel {
        margin-top: 0.8rem;
      }
    }

    @media (max-width: 768px) {
      .top-links {
        display: none;
      }

      .mobile-tabs {
        display: block;
      }

      .hero-title {
        max-width: 100%;
      }

      .hero-meta {
        grid-template-columns: 1fr;
      }

      .timer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .timeline li {
        grid-template-columns: 1fr;
        gap: 0.35rem;
      }

      .section-head {
        flex-direction: column;
        align-items: start;
      }

      .field-row {
        grid-template-columns: 1fr;
      }

      .entries-grid,
      .proof-grid {
        grid-template-columns: 1fr;
      }

      .aside-row {
        grid-template-columns: 1fr;
      }

      .hero-actions,
      .route-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .button {
        justify-content: center;
      }

      .site-shell {
        padding-bottom: 110px;
      }
    }

    @media (max-width: 520px) {
      .grid-container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
      }

      .hero-grid,
      .countdown-core,
      .countdown-aside,
      .form-panel,
      .info-panel,
      .timeline li,
      .entry-card,
      .route-card,
      .proof-card,
      details.faq-item summary {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
      }

      .hero-grid {
        padding-top: 1rem;
        padding-bottom: 1rem;
      }

      .hero-copy,
      .section-head p {
        font-size: 0.92rem;
      }

      .countdown-headline {
        flex-direction: column;
        align-items: start;
      }

      .timer-box strong {
        font-size: 1.8rem;
      }

      .faq-answer {
        padding-left: 0.85rem;
      }
    }

/* roulang page: category2 */
:root {
      --bg: #080806;
      --bg-soft: #11100c;
      --panel: #15130e;
      --panel-strong: #1d1911;
      --gold: #d7b46a;
      --gold-bright: #f1d58b;
      --gold-soft: rgba(215, 180, 106, .14);
      --wine: #641d2b;
      --green: #123d32;
      --text: #f7f1df;
      --muted: #b7ad94;
      --dim: #837963;
      --line: rgba(215, 180, 106, .24);
      --line-strong: rgba(241, 213, 139, .48);
      --danger: #c65555;
      --shadow: 0 18px 46px rgba(0, 0, 0, .36);
      --radius: 8px;
      --radius-sm: 6px;
      --max: 1180px;
      --fast: 180ms ease;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
      color: var(--text);
      line-height: 1.72;
      background:
        linear-gradient(90deg, rgba(215, 180, 106, .035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(215, 180, 106, .028) 1px, transparent 1px),
        radial-gradient(circle at 50% -20%, rgba(100, 29, 43, .34), transparent 34rem),
        var(--bg);
      background-size: 44px 44px, 44px 44px, auto;
      overflow-x: hidden;
      padding-bottom: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--fast), border-color var(--fast), background var(--fast), transform var(--fast), opacity var(--fast);
    }

    a:hover,
    a:focus {
      color: var(--gold-bright);
      outline: none;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    input,
    select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      color: var(--text);
      background: rgba(8, 8, 6, .78);
      min-height: 46px;
      padding: 0 14px;
      transition: border-color var(--fast), box-shadow var(--fast), background var(--fast);
    }

    input::placeholder {
      color: rgba(183, 173, 148, .72);
    }

    input:focus,
    select:focus {
      outline: none;
      border-color: var(--gold-bright);
      box-shadow: 0 0 0 3px rgba(215, 180, 106, .14);
      background: rgba(12, 11, 8, .96);
    }

    .grid-container {
      max-width: var(--max);
      padding-left: 20px;
      padding-right: 20px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 40;
      border-bottom: 1px solid var(--line);
      background: rgba(8, 8, 6, .88);
      backdrop-filter: blur(14px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    }

    .topbar-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      flex: 0 0 46px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      border: 1px solid var(--line-strong);
      color: #211708;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold));
      font-weight: 900;
      letter-spacing: 0;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 10px 26px rgba(215, 180, 106, .18);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.25;
      min-width: 0;
    }

    .brand-name {
      color: var(--text);
      font-size: 17px;
      font-weight: 800;
      white-space: nowrap;
    }

    .brand-sub {
      color: var(--muted);
      font-size: 12px;
      margin-top: 3px;
      white-space: nowrap;
    }

    .top-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .top-links a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 42px;
      padding: 0 14px;
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
    }

    .top-links a:hover {
      color: var(--gold-bright);
      border-color: var(--line);
      background: rgba(215, 180, 106, .08);
      transform: translateY(-1px);
    }

    .top-links a[aria-current="page"] {
      color: var(--gold-bright);
      border-color: var(--line-strong);
      background: var(--gold-soft);
    }

    .nav-icon,
    .top-links i,
    .footer-links i,
    .mobile-tab i {
      width: 17px;
      height: 17px;
      stroke-width: 2;
    }

    main {
      position: relative;
    }

    .section {
      padding: 72px 0;
    }

    .section-tight {
      padding: 46px 0;
    }

    .crumbs {
      padding: 26px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .crumbs a {
      color: var(--muted);
      border-bottom: 1px solid transparent;
    }

    .crumbs a:hover {
      color: var(--gold-bright);
      border-color: var(--gold);
    }

    .crumbs span {
      color: var(--gold-bright);
    }

    .hero {
      padding: 38px 0 54px;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(100, 29, 43, .22), transparent 62%),
        linear-gradient(135deg, rgba(215, 180, 106, .08), transparent 42%);
    }

    .hero-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 34px 0 20px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-bright);
      border: 1px solid var(--line);
      background: rgba(215, 180, 106, .08);
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #31d98b;
      box-shadow: 0 0 0 5px rgba(49, 217, 139, .13);
    }

    h1,
    h2,
    h3,
    h4 {
      margin: 0;
      color: var(--text);
      line-height: 1.16;
      font-weight: 900;
      letter-spacing: 0;
    }

    h1 {
      max-width: 760px;
      font-size: clamp(34px, 5vw, 62px);
    }

    h2 {
      font-size: clamp(25px, 3.1vw, 38px);
    }

    h3 {
      font-size: 20px;
    }

    p {
      margin: 0;
    }

    .hero-lead {
      max-width: 740px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 18px;
    }

    .search-panel {
      margin-top: 28px;
      max-width: 720px;
      border: 1px solid var(--line-strong);
      background: rgba(17, 16, 12, .76);
      border-radius: var(--radius);
      padding: 12px;
      box-shadow: var(--shadow);
    }

    .search-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: center;
    }

    .search-row input {
      min-height: 54px;
      font-size: 15px;
      border-color: rgba(241, 213, 139, .32);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      font-weight: 900;
      color: var(--gold-bright);
      background: rgba(215, 180, 106, .07);
      box-shadow: none;
      transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast), background var(--fast), color var(--fast);
      white-space: nowrap;
    }

    .btn:hover,
    .btn:focus {
      color: var(--gold-bright);
      border-color: var(--gold-bright);
      background: rgba(215, 180, 106, .13);
      box-shadow: 0 0 0 3px rgba(215, 180, 106, .12);
      transform: translateY(-1px);
    }

    .btn-primary {
      color: #1f1608;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold));
      border-color: var(--gold-bright);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      color: #120d05;
      background: linear-gradient(135deg, #ffe6a2, #ddb96d);
    }

    .quick-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .quick-tags a,
    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(8, 8, 6, .36);
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.2;
    }

    .quick-tags a:hover,
    .tag:hover {
      color: var(--gold-bright);
      border-color: var(--line-strong);
      background: rgba(215, 180, 106, .1);
      transform: translateY(-1px);
    }

    .hero-board {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(29, 25, 17, .94), rgba(14, 13, 10, .96)),
        var(--panel);
      overflow: hidden;
      box-shadow: var(--shadow);
      align-self: end;
    }

    .board-top {
      min-height: 188px;
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(18, 61, 50, .86), rgba(100, 29, 43, .68)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0, rgba(255, 255, 255, .06) 1px, transparent 1px, transparent 12px);
      border-bottom: 1px solid var(--line);
    }

    .board-label {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--text);
      font-weight: 900;
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #dffbe9;
      font-size: 12px;
      font-weight: 900;
      border: 1px solid rgba(223, 251, 233, .38);
      background: rgba(18, 61, 50, .62);
      border-radius: 999px;
      padding: 5px 9px;
    }

    .status::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #39e18e;
    }

    .board-title {
      font-size: 30px;
      line-height: 1.14;
      color: #fff8df;
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      padding: 16px;
      background: rgba(8, 8, 6, .46);
    }

    .count-box {
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      padding: 12px 10px;
      text-align: center;
      background: rgba(8, 8, 6, .48);
    }

    .count-box strong {
      display: block;
      color: var(--gold-bright);
      font-size: 27px;
      line-height: 1;
      font-weight: 950;
      font-variant-numeric: tabular-nums;
    }

    .count-box span {
      display: block;
      color: var(--dim);
      font-size: 12px;
      margin-top: 6px;
      font-weight: 800;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 24px;
    }

    .section-head p {
      max-width: 620px;
      color: var(--muted);
      margin-top: 10px;
    }

    .sortbar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(21, 19, 14, .72);
    }

    .sortbar button {
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(8, 8, 6, .3);
      color: var(--muted);
      padding: 8px 13px;
      font-size: 13px;
      font-weight: 900;
      transition: all var(--fast);
    }

    .sortbar button:hover,
    .sortbar button:focus {
      color: var(--gold-bright);
      border-color: var(--line-strong);
      outline: none;
      transform: translateY(-1px);
    }

    .sortbar button.is-active {
      color: #1b1306;
      border-color: var(--gold-bright);
      background: var(--gold);
    }

    .featured-strip {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 18px;
    }

    .feature-card {
      position: relative;
      min-height: 310px;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius);
      overflow: hidden;
      background:
        linear-gradient(120deg, rgba(100, 29, 43, .82), rgba(18, 61, 50, .72)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0, rgba(255, 255, 255, .06) 1px, transparent 1px, transparent 18px);
      box-shadow: var(--shadow);
    }

    .feature-card::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 48%;
      background: linear-gradient(180deg, transparent, rgba(8, 8, 6, .88));
      pointer-events: none;
    }

    .feature-content {
      position: absolute;
      inset: auto 0 0;
      z-index: 1;
      padding: 24px;
    }

    .feature-content h2 {
      max-width: 720px;
    }

    .feature-content p {
      max-width: 720px;
      color: #eadfbd;
      margin-top: 10px;
    }

    .side-stack {
      display: grid;
      gap: 18px;
    }

    .mini-card,
    .entry-card,
    .timeline-card,
    .cta-panel,
    .faq-item,
    .subscribe-box,
    .summary-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(21, 19, 14, .82);
      box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
    }

    .mini-card {
      padding: 18px;
      min-height: 146px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .mini-card strong {
      display: block;
      color: var(--text);
      font-size: 20px;
      line-height: 1.24;
    }

    .mini-card p {
      color: var(--muted);
      margin-top: 8px;
      font-size: 14px;
    }

    .layout-main {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 22px;
      align-items: start;
    }

    .rank-list {
      display: grid;
      gap: 12px;
    }

    .entry-card {
      display: grid;
      grid-template-columns: 72px 1fr auto;
      gap: 16px;
      padding: 16px;
      align-items: center;
    }

    .entry-card:hover {
      border-color: var(--line-strong);
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(0, 0, 0, .3);
    }

    .rank-num {
      width: 72px;
      height: 72px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius-sm);
      color: var(--gold-bright);
      background:
        linear-gradient(145deg, rgba(215, 180, 106, .16), rgba(8, 8, 6, .2)),
        var(--panel-strong);
      font-size: 24px;
      font-weight: 950;
      font-variant-numeric: tabular-nums;
    }

    .entry-main h3 {
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      font-size: 19px;
    }

    .entry-main p {
      color: var(--muted);
      margin-top: 6px;
      font-size: 14px;
    }

    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }

    .entry-action {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 9px;
      min-width: 120px;
    }

    .badge.gold {
      color: #201506;
      border-color: var(--gold-bright);
      background: var(--gold);
    }

    .badge.green {
      color: #dffbe9;
      border-color: rgba(49, 217, 139, .32);
      background: rgba(18, 61, 50, .56);
    }

    .badge.wine {
      color: #ffdfe5;
      border-color: rgba(180, 78, 96, .36);
      background: rgba(100, 29, 43, .48);
    }

    .summary-panel {
      position: sticky;
      top: 98px;
      padding: 18px;
    }

    .summary-panel h3 {
      margin-bottom: 14px;
    }

    .summary-line {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      border-top: 1px solid rgba(215, 180, 106, .16);
      color: var(--muted);
      font-size: 14px;
    }

    .summary-line strong {
      color: var(--gold-bright);
      font-weight: 950;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .timeline-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 18px;
      align-items: stretch;
    }

    .timeline-card {
      padding: 22px;
    }

    .timeline {
      display: grid;
      gap: 0;
      margin-top: 12px;
    }

    .time-row {
      display: grid;
      grid-template-columns: 82px 1fr;
      gap: 14px;
      padding: 14px 0;
      border-top: 1px solid rgba(215, 180, 106, .16);
    }

    .time-row time {
      color: var(--gold-bright);
      font-weight: 950;
      font-variant-numeric: tabular-nums;
    }

    .time-row strong {
      display: block;
      color: var(--text);
      line-height: 1.35;
    }

    .time-row span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      margin-top: 4px;
    }

    .matrix {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .matrix-item {
      min-height: 168px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(17, 16, 12, .78);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform var(--fast), border-color var(--fast), background var(--fast), box-shadow var(--fast);
    }

    .matrix-item:hover {
      border-color: var(--line-strong);
      background: rgba(29, 25, 17, .92);
      box-shadow: 0 16px 38px rgba(0, 0, 0, .26);
      transform: translateY(-2px);
    }

    .matrix-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      color: var(--gold-bright);
      background: rgba(215, 180, 106, .08);
    }

    .matrix-icon i {
      width: 21px;
      height: 21px;
    }

    .matrix-item h3 {
      margin-top: 18px;
      font-size: 18px;
    }

    .matrix-item p {
      color: var(--muted);
      font-size: 14px;
      margin-top: 8px;
    }

    .subscribe-box {
      padding: 24px;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 24px;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(100, 29, 43, .26), rgba(18, 61, 50, .24)),
        rgba(21, 19, 14, .86);
    }

    .subscribe-box p {
      color: var(--muted);
      margin-top: 10px;
    }

    .subscribe-form {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
    }

    .form-note {
      color: var(--dim);
      font-size: 13px;
      margin-top: 10px;
    }

    .faq-wrap {
      display: grid;
      gap: 12px;
      max-width: 900px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 20px;
      color: var(--text);
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      width: 26px;
      height: 26px;
      flex: 0 0 26px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--gold-bright);
      transition: transform var(--fast), background var(--fast);
    }

    .faq-item[open] summary::after {
      content: "−";
      background: rgba(215, 180, 106, .1);
      transform: rotate(180deg);
    }

    .faq-item p {
      color: var(--muted);
      padding: 0 20px 18px;
      border-top: 1px solid rgba(215, 180, 106, .12);
      padding-top: 14px;
    }

    .cta-panel {
      padding: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      background:
        linear-gradient(135deg, rgba(215, 180, 106, .12), rgba(100, 29, 43, .22)),
        rgba(21, 19, 14, .9);
      border-color: var(--line-strong);
    }

    .cta-panel p {
      color: var(--muted);
      margin-top: 8px;
      max-width: 680px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: #070705;
      padding: 46px 0 34px;
      color: var(--muted);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr .8fr 1fr;
      gap: 34px;
      align-items: start;
    }

    .footer-brand p {
      max-width: 500px;
      margin-top: 14px;
      font-size: 14px;
    }

    .footer-links,
    .footer-meta {
      display: grid;
      gap: 10px;
    }

    .footer-links h4,
    .footer-meta strong {
      color: var(--text);
      font-size: 15px;
      margin: 0 0 4px;
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover,
    .footer-links a[aria-current="page"] {
      color: var(--gold-bright);
    }

    .footer-meta span {
      display: block;
      font-size: 14px;
    }

    .mobile-tabbar {
      display: none;
    }

    @media (max-width: 1024px) {
      .hero-shell,
      .featured-strip,
      .layout-main,
      .timeline-grid,
      .subscribe-box {
        grid-template-columns: 1fr;
      }

      .summary-panel {
        position: static;
      }

      .matrix {
        grid-template-columns: repeat(2, 1fr);
      }

      .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
        gap: 12px;
      }

      .top-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
      }

      .top-links a {
        flex: 0 0 auto;
      }
    }

    @media (max-width: 768px) {
      body {
        padding-bottom: 74px;
      }

      .grid-container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .section {
        padding: 54px 0;
      }

      .hero {
        padding: 26px 0 42px;
      }

      .hero-copy {
        padding-top: 18px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .top-links {
        display: none;
      }

      .topbar-inner {
        min-height: 68px;
        flex-direction: row;
        align-items: center;
      }

      .brand-name {
        font-size: 15px;
        max-width: 230px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .brand-sub {
        max-width: 230px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .search-row,
      .subscribe-form {
        grid-template-columns: 1fr;
      }

      .entry-card {
        grid-template-columns: 58px 1fr;
      }

      .rank-num {
        width: 58px;
        height: 58px;
        font-size: 20px;
      }

      .entry-action {
        grid-column: 1 / -1;
        align-items: stretch;
        min-width: 0;
      }

      .entry-action .btn {
        width: 100%;
      }

      .section-head,
      .cta-panel {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-actions {
        width: 100%;
        justify-content: flex-start;
      }

      .cta-actions .btn {
        flex: 1 1 180px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .mobile-tabbar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 50;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        min-height: 64px;
        border-top: 1px solid var(--line);
        background: rgba(8, 8, 6, .94);
        backdrop-filter: blur(14px);
      }

      .mobile-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 800;
      }

      .mobile-tab:hover,
      .mobile-tab[aria-current="page"] {
        color: var(--gold-bright);
        background: rgba(215, 180, 106, .08);
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 32px;
      }

      h2 {
        font-size: 25px;
      }

      .hero-board,
      .feature-card,
      .mini-card,
      .entry-card,
      .timeline-card,
      .subscribe-box,
      .cta-panel {
        border-radius: 7px;
      }

      .board-top {
        min-height: 166px;
        padding: 18px;
      }

      .board-title {
        font-size: 25px;
      }

      .countdown {
        gap: 8px;
        padding: 12px;
      }

      .count-box strong {
        font-size: 22px;
      }

      .feature-card {
        min-height: 286px;
      }

      .feature-content {
        padding: 18px;
      }

      .matrix {
        grid-template-columns: 1fr;
      }

      .time-row {
        grid-template-columns: 70px 1fr;
        gap: 10px;
      }

      .sortbar {
        overflow-x: auto;
        flex-wrap: nowrap;
      }

      .sortbar button {
        flex: 0 0 auto;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #090909;
      --bg-soft: #10110f;
      --panel: #15130f;
      --panel-2: #1b1710;
      --text: #f7f1df;
      --muted: #b8ac91;
      --muted-2: #827963;
      --gold: #d9aa45;
      --gold-2: #f2d07a;
      --red: #7b2028;
      --green: #164d38;
      --line: rgba(217, 170, 69, 0.25);
      --line-strong: rgba(242, 208, 122, 0.45);
      --shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
      --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.28);
      --radius: 8px;
      --radius-sm: 6px;
      --container: 1180px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        linear-gradient(90deg, rgba(217, 170, 69, 0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(217, 170, 69, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(123, 32, 40, 0.24), transparent 34%),
        var(--bg);
      background-size: 42px 42px, 42px 42px, 100% 620px, auto;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
      line-height: 1.65;
      letter-spacing: 0;
      padding-bottom: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease);
    }

    a:hover,
    a:focus {
      color: var(--gold-2);
      outline: none;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button,
    .button {
      cursor: pointer;
      border-radius: var(--radius-sm);
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
    }

    input,
    select {
      width: 100%;
      color: var(--text);
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(217, 170, 69, 0.24);
      border-radius: var(--radius-sm);
      min-height: 48px;
      padding: 0 14px;
      box-shadow: none;
    }

    input::placeholder {
      color: rgba(184, 172, 145, 0.78);
    }

    input:focus,
    select:focus,
    button:focus,
    .button:focus,
    summary:focus {
      outline: 2px solid rgba(242, 208, 122, 0.62);
      outline-offset: 3px;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .grid-container {
      max-width: var(--container);
      padding-left: 22px;
      padding-right: 22px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 80;
      background: rgba(9, 9, 9, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(217, 170, 69, 0.2);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    }

    .topbar-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      color: #130f08;
      background: linear-gradient(145deg, var(--gold-2), var(--gold));
      border: 1px solid rgba(255, 235, 169, 0.7);
      border-radius: 8px;
      font-weight: 900;
      font-size: 18px;
      box-shadow: 0 0 0 4px rgba(217, 170, 69, 0.12), 0 10px 24px rgba(0, 0, 0, 0.35);
    }

    .brand-text {
      display: grid;
      gap: 1px;
      min-width: 0;
    }

    .brand-name {
      color: var(--text);
      font-size: 18px;
      font-weight: 850;
      white-space: nowrap;
    }

    .brand-sub {
      color: var(--muted);
      font-size: 12px;
      white-space: nowrap;
    }

    .top-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .top-links a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 42px;
      padding: 0 14px;
      color: var(--muted);
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 700;
    }

    .top-links a:hover {
      color: var(--gold-2);
      border-color: rgba(217, 170, 69, 0.32);
      background: rgba(217, 170, 69, 0.08);
      transform: translateY(-1px);
    }

    .top-links a[aria-current="page"] {
      color: #171107;
      background: linear-gradient(145deg, var(--gold-2), var(--gold));
      border-color: rgba(255, 235, 169, 0.8);
      box-shadow: 0 8px 20px rgba(217, 170, 69, 0.22);
    }

    .nav-icon,
    .top-links i,
    .footer-links i,
    .mobile-tab i {
      width: 17px;
      height: 17px;
      stroke-width: 2.1;
    }

    .mobile-tabs {
      display: none;
    }

    main {
      position: relative;
    }

    .section {
      padding: 72px 0;
    }

    .section.compact {
      padding: 48px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-2);
      border: 1px solid rgba(217, 170, 69, 0.36);
      background: rgba(217, 170, 69, 0.08);
      border-radius: 999px;
      padding: 6px 11px;
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #35d07f;
      box-shadow: 0 0 0 5px rgba(53, 208, 127, 0.12);
    }

    .page-hero {
      padding: 54px 0 42px;
      border-bottom: 1px solid rgba(217, 170, 69, 0.18);
      background:
        linear-gradient(135deg, rgba(217, 170, 69, 0.11), transparent 34%),
        linear-gradient(90deg, rgba(22, 77, 56, 0.16), rgba(123, 32, 40, 0.1));
    }

    .crumbs {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
      color: var(--muted);
      font-size: 13px;
    }

    .crumbs a {
      color: var(--gold-2);
    }

    .crumbs span {
      color: var(--muted-2);
    }

    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr) minmax(240px, 0.75fr);
      gap: 24px;
      align-items: center;
    }

    .hero-copy h1 {
      margin: 16px 0 14px;
      color: var(--text);
      font-size: clamp(32px, 4.6vw, 58px);
      line-height: 1.08;
      font-weight: 950;
      letter-spacing: 0;
    }

    .hero-copy p {
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 16px;
      max-width: 560px;
    }

    .hero-actions,
    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn-gold,
    .btn-dark,
    .btn-line {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: var(--radius-sm);
      font-weight: 850;
      font-size: 14px;
      line-height: 1;
    }

    .btn-gold {
      color: #151007;
      background: linear-gradient(145deg, var(--gold-2), var(--gold));
      border: 1px solid rgba(255, 235, 169, 0.82);
      box-shadow: 0 12px 26px rgba(217, 170, 69, 0.22);
    }

    .btn-gold:hover {
      color: #100c06;
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(217, 170, 69, 0.3);
    }

    .btn-dark,
    .btn-line {
      color: var(--gold-2);
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(217, 170, 69, 0.32);
    }

    .btn-dark:hover,
    .btn-line:hover {
      color: var(--text);
      border-color: rgba(242, 208, 122, 0.64);
      background: rgba(217, 170, 69, 0.1);
      transform: translateY(-2px);
    }

    .stage {
      position: relative;
      min-height: 430px;
      padding: 18px;
      border: 1px solid rgba(217, 170, 69, 0.32);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        #0f0f0d;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 0 48%, rgba(217, 170, 69, 0.09) 49% 51%, transparent 52%),
        linear-gradient(0deg, transparent 0 48%, rgba(217, 170, 69, 0.07) 49% 51%, transparent 52%);
      opacity: 0.55;
      pointer-events: none;
    }

    .stage-top {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(217, 170, 69, 0.18);
    }

    .stage-title {
      display: grid;
      gap: 2px;
    }

    .stage-title strong {
      font-size: 17px;
      font-weight: 900;
    }

    .stage-title span {
      color: var(--muted);
      font-size: 12px;
    }

    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #daf7e8;
      background: rgba(22, 77, 56, 0.7);
      border: 1px solid rgba(77, 214, 142, 0.42);
      border-radius: 999px;
      padding: 7px 10px;
      font-size: 12px;
      font-weight: 850;
    }

    .live-dot::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #43e58a;
      box-shadow: 0 0 0 5px rgba(67, 229, 138, 0.14);
    }

    .stage-cover {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 18px;
    }

    .cover-tile {
      min-height: 118px;
      border: 1px solid rgba(217, 170, 69, 0.22);
      border-radius: var(--radius-sm);
      padding: 14px;
      background:
        linear-gradient(145deg, rgba(217, 170, 69, 0.18), rgba(123, 32, 40, 0.12)),
        rgba(255, 255, 255, 0.035);
    }

    .cover-tile.wide {
      grid-column: span 2;
      min-height: 150px;
      background:
        linear-gradient(130deg, rgba(123, 32, 40, 0.4), rgba(22, 77, 56, 0.2)),
        linear-gradient(90deg, rgba(217, 170, 69, 0.18), transparent);
    }

    .cover-tile span {
      display: inline-flex;
      color: var(--gold-2);
      font-size: 12px;
      font-weight: 850;
      border: 1px solid rgba(217, 170, 69, 0.28);
      border-radius: 999px;
      padding: 4px 8px;
      margin-bottom: 12px;
    }

    .cover-tile strong {
      display: block;
      font-size: 22px;
      line-height: 1.18;
      font-weight: 950;
    }

    .cover-tile p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 13px;
    }

    .hero-points {
      display: grid;
      gap: 12px;
    }

    .point-card {
      border: 1px solid rgba(217, 170, 69, 0.24);
      border-radius: var(--radius);
      background: rgba(18, 17, 14, 0.82);
      padding: 16px;
      box-shadow: var(--shadow-soft);
    }

    .point-card strong {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-2);
      font-size: 15px;
      margin-bottom: 6px;
    }

    .point-card p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
    }

    .quick-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 26px;
    }

    .stat-card {
      padding: 18px;
      border: 1px solid rgba(217, 170, 69, 0.22);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.035);
    }

    .stat-card strong {
      display: block;
      color: var(--gold-2);
      font-size: 26px;
      line-height: 1;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .stat-card span {
      color: var(--muted);
      font-size: 13px;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 24px;
    }

    .section-head h2 {
      margin: 0;
      color: var(--text);
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.18;
      font-weight: 950;
    }

    .section-head p {
      margin: 8px 0 0;
      color: var(--muted);
      max-width: 620px;
    }

    .filter-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px;
      border: 1px solid rgba(217, 170, 69, 0.22);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.035);
      margin-bottom: 22px;
    }

    .filter-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-tab {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 13px;
      border: 1px solid rgba(217, 170, 69, 0.26);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(8, 8, 8, 0.45);
      font-size: 13px;
      font-weight: 800;
    }

    .filter-tab.active,
    .filter-tab:hover {
      color: #120e07;
      background: linear-gradient(145deg, var(--gold-2), var(--gold));
      border-color: rgba(255, 235, 169, 0.7);
    }

    .sort-box {
      min-width: 166px;
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 22px;
      align-items: start;
    }

    .update-list {
      display: grid;
      gap: 12px;
    }

    .update-item {
      display: grid;
      grid-template-columns: 142px minmax(0, 1fr) auto;
      gap: 16px;
      align-items: center;
      padding: 14px;
      border: 1px solid rgba(217, 170, 69, 0.2);
      border-radius: var(--radius);
      background: rgba(19, 17, 13, 0.88);
      box-shadow: var(--shadow-soft);
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .update-item:hover {
      transform: translateY(-2px);
      border-color: rgba(242, 208, 122, 0.46);
      background: rgba(28, 24, 17, 0.92);
    }

    .thumb {
      position: relative;
      aspect-ratio: 16 / 10;
      border-radius: var(--radius-sm);
      overflow: hidden;
      border: 1px solid rgba(217, 170, 69, 0.26);
      background:
        linear-gradient(135deg, rgba(217, 170, 69, 0.34), rgba(123, 32, 40, 0.2)),
        #15120e;
    }

    .thumb::after {
      content: attr(data-label);
      position: absolute;
      left: 10px;
      bottom: 9px;
      color: var(--gold-2);
      font-size: 12px;
      font-weight: 900;
      padding: 4px 7px;
      border-radius: 999px;
      border: 1px solid rgba(242, 208, 122, 0.42);
      background: rgba(0, 0, 0, 0.52);
    }

    .item-main {
      min-width: 0;
    }

    .item-main h3 {
      margin: 0 0 8px;
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      color: var(--text);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .item-main p {
      margin: 0 0 10px;
      color: var(--muted);
      font-size: 13px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      border-radius: 999px;
      border: 1px solid rgba(217, 170, 69, 0.28);
      color: var(--muted);
      background: rgba(255, 255, 255, 0.035);
      padding: 5px 8px;
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
    }

    .badge.gold {
      color: #171107;
      background: linear-gradient(145deg, var(--gold-2), var(--gold));
      border-color: rgba(255, 235, 169, 0.72);
    }

    .badge.green {
      color: #dffcec;
      background: rgba(22, 77, 56, 0.72);
      border-color: rgba(83, 220, 148, 0.4);
    }

    .item-side {
      display: grid;
      justify-items: end;
      gap: 8px;
      min-width: 106px;
    }

    .time {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .side-stack {
      display: grid;
      gap: 14px;
    }

    .side-card,
    .flow-card,
    .faq-card,
    .subscribe-panel,
    .cta-panel {
      border: 1px solid rgba(217, 170, 69, 0.24);
      border-radius: var(--radius);
      background: rgba(19, 17, 13, 0.9);
      box-shadow: var(--shadow-soft);
    }

    .side-card {
      padding: 18px;
    }

    .side-card h3 {
      margin: 0 0 12px;
      color: var(--text);
      font-size: 18px;
      font-weight: 950;
    }

    .side-card p {
      margin: 0 0 14px;
      color: var(--muted);
      font-size: 13px;
    }

    .medal {
      display: grid;
      gap: 10px;
      padding: 14px;
      border-radius: var(--radius-sm);
      background:
        linear-gradient(135deg, rgba(217, 170, 69, 0.18), rgba(22, 77, 56, 0.14)),
        rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(217, 170, 69, 0.22);
      margin-bottom: 12px;
    }

    .medal strong {
      color: var(--gold-2);
      font-size: 15px;
    }

    .mini-list {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .mini-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: var(--muted);
      font-size: 13px;
      padding-bottom: 9px;
      border-bottom: 1px solid rgba(217, 170, 69, 0.12);
    }

    .mini-list li:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .mini-list em {
      color: var(--gold-2);
      font-style: normal;
      font-weight: 850;
    }

    .flow-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 22px;
      align-items: stretch;
    }

    .countdown-strip {
      padding: 22px;
      border: 1px solid rgba(217, 170, 69, 0.28);
      border-radius: var(--radius);
      background:
        linear-gradient(110deg, rgba(123, 32, 40, 0.38), rgba(22, 77, 56, 0.16)),
        rgba(18, 16, 12, 0.92);
      box-shadow: var(--shadow-soft);
    }

    .countdown-strip h2 {
      margin: 0 0 12px;
      font-size: 28px;
      line-height: 1.18;
      font-weight: 950;
    }

    .timer {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 9px;
      margin: 18px 0;
    }

    .timer div {
      min-height: 86px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(242, 208, 122, 0.28);
      border-radius: var(--radius-sm);
      background: rgba(0, 0, 0, 0.28);
    }

    .timer strong {
      display: block;
      color: var(--gold-2);
      font-size: 28px;
      line-height: 1;
      font-weight: 950;
    }

    .timer span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .flow-list {
      display: grid;
      gap: 12px;
    }

    .flow-card {
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      gap: 14px;
      padding: 16px;
      align-items: center;
    }

    .flow-num {
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      color: #171107;
      background: linear-gradient(145deg, var(--gold-2), var(--gold));
      font-weight: 950;
      font-size: 18px;
    }

    .flow-card h3 {
      margin: 0 0 4px;
      color: var(--text);
      font-size: 17px;
      font-weight: 900;
    }

    .flow-card p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
    }

    .subscribe-panel {
      padding: 24px;
      background:
        linear-gradient(145deg, rgba(217, 170, 69, 0.1), rgba(123, 32, 40, 0.16)),
        rgba(19, 17, 13, 0.94);
    }

    .subscribe-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 390px;
      gap: 24px;
      align-items: center;
    }

    .subscribe-copy h2 {
      margin: 0 0 10px;
      font-size: 31px;
      line-height: 1.2;
      font-weight: 950;
    }

    .subscribe-copy p {
      margin: 0;
      color: var(--muted);
    }

    .subscribe-form {
      display: grid;
      gap: 10px;
    }

    .form-line {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
    }

    .choice-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .choice {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      border: 1px solid rgba(217, 170, 69, 0.22);
      border-radius: 999px;
      padding: 7px 9px;
      background: rgba(0, 0, 0, 0.22);
    }

    .choice input {
      width: 14px;
      height: 14px;
      min-height: auto;
      accent-color: var(--gold);
      padding: 0;
    }

    .faq-list {
      display: grid;
      gap: 10px;
    }

    .faq-card {
      overflow: hidden;
    }

    .faq-card summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      padding: 17px 18px;
      color: var(--text);
      font-weight: 900;
    }

    .faq-card summary::-webkit-details-marker {
      display: none;
    }

    .faq-card summary i {
      width: 18px;
      height: 18px;
      color: var(--gold-2);
      transition: transform var(--ease);
      flex: 0 0 auto;
    }

    .faq-card[open] summary i {
      transform: rotate(45deg);
    }

    .faq-card p {
      margin: 0;
      padding: 0 18px 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .cta-panel {
      padding: 28px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 20px;
      align-items: center;
      background:
        linear-gradient(115deg, rgba(217, 170, 69, 0.18), rgba(22, 77, 56, 0.18) 48%, rgba(123, 32, 40, 0.18)),
        rgba(18, 16, 12, 0.92);
    }

    .cta-panel h2 {
      margin: 0 0 8px;
      font-size: 30px;
      line-height: 1.2;
      font-weight: 950;
    }

    .cta-panel p {
      margin: 0;
      color: var(--muted);
      max-width: 690px;
    }

    .site-footer {
      padding: 48px 0 86px;
      border-top: 1px solid rgba(217, 170, 69, 0.2);
      background: #070707;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) 220px minmax(240px, 0.8fr);
      gap: 30px;
      align-items: start;
    }

    .footer-brand p {
      margin: 16px 0 0;
      color: var(--muted);
      max-width: 560px;
      font-size: 14px;
    }

    .footer-links,
    .footer-meta {
      display: grid;
      gap: 10px;
    }

    .footer-links h4,
    .footer-meta strong {
      margin: 0 0 4px;
      color: var(--text);
      font-size: 15px;
      font-weight: 950;
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 14px;
      width: max-content;
    }

    .footer-links a[aria-current="page"],
    .footer-links a:hover {
      color: var(--gold-2);
    }

    .footer-meta span {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-meta a {
      color: var(--gold-2);
    }

    @media (max-width: 1024px) {
      .hero-layout {
        grid-template-columns: 1fr;
      }

      .stage {
        min-height: 390px;
      }

      .hero-points {
        grid-template-columns: repeat(3, 1fr);
      }

      .content-layout,
      .flow-grid,
      .subscribe-grid,
      .cta-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .side-stack {
        grid-template-columns: repeat(3, 1fr);
      }

      .quick-stats {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      body {
        padding-bottom: 72px;
      }

      .grid-container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .topbar-inner {
        min-height: 66px;
      }

      .brand-mark {
        width: 40px;
        height: 40px;
      }

      .brand-name {
        font-size: 15px;
        max-width: 56vw;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .brand-sub {
        display: none;
      }

      .top-links {
        display: none;
      }

      .mobile-tabs {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 90;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        background: rgba(9, 9, 9, 0.94);
        border-top: 1px solid rgba(217, 170, 69, 0.28);
        backdrop-filter: blur(16px);
        box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.32);
      }

      .mobile-tab {
        min-height: 64px;
        display: grid;
        place-items: center;
        align-content: center;
        gap: 3px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 800;
        border-top: 2px solid transparent;
      }

      .mobile-tab[aria-current="page"] {
        color: var(--gold-2);
        border-top-color: var(--gold);
        background: rgba(217, 170, 69, 0.08);
      }

      .section {
        padding: 50px 0;
      }

      .page-hero {
        padding: 34px 0 32px;
      }

      .hero-copy h1 {
        font-size: 34px;
      }

      .stage {
        min-height: auto;
      }

      .stage-cover {
        grid-template-columns: 1fr;
      }

      .cover-tile.wide {
        grid-column: auto;
      }

      .hero-points,
      .side-stack {
        grid-template-columns: 1fr;
      }

      .filter-bar {
        align-items: stretch;
        flex-direction: column;
      }

      .sort-box {
        min-width: 0;
      }

      .update-item {
        grid-template-columns: 112px minmax(0, 1fr);
      }

      .item-side {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        justify-items: stretch;
        min-width: 0;
        border-top: 1px solid rgba(217, 170, 69, 0.13);
        padding-top: 10px;
      }

      .timer {
        grid-template-columns: repeat(2, 1fr);
      }

      .form-line {
        grid-template-columns: 1fr;
      }

      .site-footer {
        padding-bottom: 92px;
      }
    }

    @media (max-width: 520px) {
      .hero-actions,
      .button-row {
        flex-direction: column;
      }

      .btn-gold,
      .btn-dark,
      .btn-line {
        width: 100%;
      }

      .quick-stats {
        grid-template-columns: 1fr;
      }

      .section-head {
        display: block;
      }

      .update-item {
        grid-template-columns: 1fr;
        padding: 12px;
      }

      .thumb {
        aspect-ratio: 16 / 8;
      }

      .flow-card {
        grid-template-columns: 44px minmax(0, 1fr);
      }

      .flow-num {
        width: 44px;
        height: 44px;
      }

      .subscribe-panel,
      .cta-panel {
        padding: 20px;
      }

      .footer-grid {
        gap: 22px;
      }
    }
