/* roulang page: index */
:root {
      --bg: #09090a;
      --bg-soft: #101114;
      --surface: #15171a;
      --surface-2: #1b1d21;
      --surface-3: #202328;
      --line: rgba(255, 255, 255, 0.08);
      --line-strong: rgba(216, 177, 95, 0.28);
      --text: #f5f1e8;
      --muted: #b8b3a8;
      --muted-2: #918a7d;
      --gold: #d8b15f;
      --gold-2: #f0d38b;
      --wine: #5c2230;
      --green: #3d5b46;
      --shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
      --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.18);
      --radius: 8px;
      --radius-sm: 6px;
      --container-pad: 1rem;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      background:
        linear-gradient(180deg, #080809 0%, #0a0a0b 56%, #080809 100%);
      font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.65;
      letter-spacing: 0;
      min-height: 100vh;
      padding-bottom: 92px;
      overflow-x: hidden;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 120px),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 120px);
      opacity: 0.35;
      mix-blend-mode: screen;
    }

    ::selection {
      background: rgba(216, 177, 95, 0.26);
      color: var(--text);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
    }
    a:hover { color: var(--gold-2); }
    img { max-width: 100%; display: block; }
    button, input, textarea {
      font: inherit;
    }

    .site-shell {
      position: relative;
      z-index: 1;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(9, 9, 10, 0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 0;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--text);
      font-weight: 700;
      letter-spacing: 0;
      white-space: nowrap;
    }
    .brand-mark {
      width: 0.95rem;
      height: 0.95rem;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--gold-2), var(--gold));
      box-shadow: 0 0 0 4px rgba(216, 177, 95, 0.12);
      flex: 0 0 auto;
    }
    .brand span {
      font-size: 1.03rem;
    }
    .site-nav {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nav-link {
      position: relative;
      padding: 0.35rem 0;
      color: var(--muted);
      font-size: 0.95rem;
      border-bottom: 1px solid transparent;
      letter-spacing: 0;
    }
    .nav-link:hover {
      color: var(--text);
      border-bottom-color: rgba(216, 177, 95, 0.45);
    }
    .nav-link.active {
      color: var(--text);
      border-bottom-color: var(--gold);
    }
    .header-status {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--muted);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.02);
      padding: 0.45rem 0.75rem;
      border-radius: 999px;
      font-size: 0.84rem;
      white-space: nowrap;
    }
    .status-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 999px;
      background: #5fc78d;
      box-shadow: 0 0 0 5px rgba(95, 199, 141, 0.11);
    }

    main {
      display: block;
    }

    .section-band {
      padding: 1.4rem 0;
    }
    .section-band:first-of-type {
      padding-top: 1.6rem;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .section-title {
      margin: 0;
      font-size: 1.55rem;
      line-height: 1.15;
      letter-spacing: 0;
      color: var(--text);
    }
    .section-lead {
      margin: 0.45rem 0 0;
      color: var(--muted);
      max-width: 62rem;
      font-size: 0.98rem;
    }

    .panel {
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018)),
        linear-gradient(180deg, var(--surface), var(--bg-soft));
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    .hero-section {
      padding: 1.5rem 0 1rem;
    }
    .hero-wrap {
      display: grid;
      gap: 1rem;
    }
    .hero-cover {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
      gap: 1rem;
      align-items: stretch;
      padding: 1rem;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(216,177,95,0.08), rgba(255,255,255,0.01) 30%, rgba(255,255,255,0.02) 100%),
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .hero-cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 0 49%, rgba(255,255,255,0.04) 50%, transparent 51% 100%);
      opacity: 0.65;
      pointer-events: none;
    }
    .hero-copy {
      position: relative;
      z-index: 1;
      padding: 0.4rem 0.2rem 0.2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1rem;
      min-height: 320px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      width: fit-content;
      color: var(--gold-2);
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      text-transform: none;
      border: 1px solid rgba(216, 177, 95, 0.25);
      background: rgba(216, 177, 95, 0.06);
      padding: 0.35rem 0.65rem;
      border-radius: 999px;
    }
    .eyebrow::before {
      content: "";
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 999px;
      background: var(--gold);
      box-shadow: 0 0 0 4px rgba(216, 177, 95, 0.12);
      flex: 0 0 auto;
    }
    .hero-title {
      margin: 0.45rem 0 0;
      font-size: 3rem;
      line-height: 1.08;
      letter-spacing: 0;
      max-width: 12ch;
    }
    .hero-text {
      margin: 0;
      max-width: 40rem;
      color: var(--muted);
      font-size: 1rem;
    }
    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.02);
      color: var(--muted);
      padding: 0.38rem 0.7rem;
      border-radius: 999px;
      font-size: 0.85rem;
      white-space: nowrap;
    }
    .chip strong {
      color: var(--text);
      font-weight: 600;
    }
    .chip.dot::before {
      content: "";
      width: 0.42rem;
      height: 0.42rem;
      border-radius: 999px;
      background: var(--gold);
      flex: 0 0 auto;
    }

    .hero-stage {
      position: relative;
      z-index: 1;
      min-height: 320px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(18,19,21,0.92), rgba(14,15,17,0.98)),
        linear-gradient(135deg, rgba(216,177,95,0.12), rgba(95, 34, 48, 0.11));
      overflow: hidden;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    }
    .stage-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      color: var(--muted);
      font-size: 0.84rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .stage-flag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--gold-2);
    }
    .stage-flag::before {
      content: "";
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 999px;
      background: #78d49e;
      box-shadow: 0 0 0 5px rgba(120,212,158,0.09);
    }
    .stage-visual {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1rem;
      align-items: center;
      margin-top: 1rem;
      min-height: 220px;
    }
    .stage-ring {
      position: relative;
      width: min(100%, 280px);
      aspect-ratio: 1;
      border-radius: 50%;
      margin-inline: auto;
      border: 1px solid rgba(216, 177, 95, 0.34);
      background:
        radial-gradient(circle at 30% 30%, rgba(240, 211, 139, 0.16), transparent 35%),
        radial-gradient(circle at 60% 65%, rgba(255,255,255,0.05), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-2);
      font-size: 4rem;
      font-weight: 700;
      letter-spacing: 0;
      box-shadow:
        inset 0 0 0 10px rgba(255,255,255,0.02),
        0 16px 36px rgba(0,0,0,0.18);
    }
    .stage-ring::before,
    .stage-ring::after {
      content: "";
      position: absolute;
      inset: 0.85rem;
      border-radius: 50%;
      border: 1px solid rgba(216, 177, 95, 0.18);
    }
    .stage-ring::after {
      inset: 1.45rem;
      border-style: dashed;
      border-color: rgba(255,255,255,0.08);
    }
    .stage-side {
      display: grid;
      gap: 0.75rem;
      min-width: 0;
    }
    .stage-card {
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      border-radius: var(--radius-sm);
      padding: 0.85rem 0.9rem;
    }
    .stage-card h3 {
      margin: 0;
      font-size: 1rem;
      line-height: 1.2;
    }
    .stage-card p {
      margin: 0.35rem 0 0;
      color: var(--muted);
      font-size: 0.88rem;
    }
    .stage-mini {
      display: grid;
      gap: 0.45rem;
      margin-top: auto;
    }
    .stage-mini-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.55rem 0.7rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.02);
      color: var(--muted);
      font-size: 0.88rem;
    }
    .stage-mini-row strong {
      color: var(--text);
      font-weight: 600;
    }

    .countdown-panel {
      display: grid;
      gap: 0.8rem;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: stretch;
    }
    .countdown-card {
      padding: 1rem;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
      border-radius: var(--radius);
    }
    .countdown-title {
      margin: 0 0 0.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      color: var(--muted);
      font-size: 0.88rem;
    }
    .countdown-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.65rem;
    }
    .countdown-cell {
      border: 1px solid rgba(255,255,255,0.08);
      background:
        linear-gradient(180deg, rgba(216,177,95,0.08), rgba(255,255,255,0.02)),
        rgba(255,255,255,0.02);
      border-radius: var(--radius-sm);
      padding: 0.75rem 0.6rem;
      text-align: center;
    }
    .countdown-num {
      display: block;
      color: var(--gold-2);
      font-size: 2rem;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0;
    }
    .countdown-label {
      display: block;
      margin-top: 0.35rem;
      color: var(--muted);
      font-size: 0.8rem;
    }
    .countdown-note {
      margin: 0.65rem 0 0;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .highlights-panel {
      padding: 1rem;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border-radius: var(--radius);
    }
    .highlights-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.65rem;
    }
    .highlight-item {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      color: var(--muted);
      font-size: 0.92rem;
    }
    .highlight-item::before {
      content: "";
      width: 0.65rem;
      height: 0.65rem;
      margin-top: 0.42rem;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--gold-2), var(--gold));
      box-shadow: 0 0 0 4px rgba(216,177,95,0.08);
      flex: 0 0 auto;
    }
    .highlight-item strong {
      color: var(--text);
      font-weight: 600;
    }

    .subscribe-panel {
      display: grid;
      gap: 0.9rem;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 0.86fr);
      align-items: stretch;
    }
    .subscribe-card {
      padding: 1rem;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.014));
      border-radius: var(--radius);
    }
    .subscribe-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.8rem;
    }
    .subscribe-head h2 {
      margin: 0;
      font-size: 1.12rem;
      line-height: 1.2;
    }
    .subscribe-head p {
      margin: 0;
      color: var(--muted);
      font-size: 0.88rem;
    }
    .subscribe-form {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 0.7rem;
      align-items: center;
    }
    .form-control, .form-control:focus {
      min-height: 48px;
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text);
      box-shadow: none;
    }
    .form-control::placeholder {
      color: var(--muted-2);
    }
    .form-control:focus {
      border-color: rgba(216, 177, 95, 0.6);
      background: rgba(255,255,255,0.04);
      color: var(--text);
    }
    .btn-gold, .btn-ghost, .btn-soft {
      min-height: 48px;
      border-radius: var(--radius-sm);
      padding: 0.7rem 1rem;
      font-weight: 600;
      letter-spacing: 0;
      transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
    }
    .btn-gold {
      border: 1px solid rgba(216, 177, 95, 0.48);
      background: linear-gradient(180deg, var(--gold-2), var(--gold));
      color: #15110b;
    }
    .btn-gold:hover {
      transform: translateY(-1px);
      color: #120f08;
      border-color: rgba(255, 229, 163, 0.68);
      background: linear-gradient(180deg, #f3dd9a, #d7af57);
    }
    .btn-gold:focus-visible,
    .btn-ghost:focus-visible,
    .btn-soft:focus-visible {
      outline: 2px solid rgba(240, 211, 139, 0.45);
      outline-offset: 2px;
    }
    .btn-ghost {
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.02);
      color: var(--text);
    }
    .btn-ghost:hover {
      transform: translateY(-1px);
      border-color: rgba(216, 177, 95, 0.42);
      color: var(--gold-2);
      background: rgba(216,177,95,0.07);
    }
    .btn-soft {
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      color: var(--text);
    }

    .form-note {
      margin: 0.8rem 0 0;
      color: var(--muted);
      font-size: 0.86rem;
    }
    .feedback-line {
      min-height: 1.4rem;
      margin-top: 0.45rem;
      font-size: 0.88rem;
      color: var(--gold-2);
    }

    .replay-card {
      padding: 1rem;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(216,177,95,0.06), rgba(255,255,255,0.012)),
        rgba(255,255,255,0.02);
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }
    .replay-card h2 {
      margin: 0;
      font-size: 1.12rem;
      line-height: 1.2;
    }
    .entry-list {
      display: grid;
      gap: 0.65rem;
      margin: 0;
    }
    .entry-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      border-radius: var(--radius-sm);
      padding: 0.8rem 0.85rem;
      color: var(--text);
    }
    .entry-link:hover {
      transform: translateY(-1px);
      border-color: rgba(216,177,95,0.4);
      background: rgba(216,177,95,0.06);
      color: var(--text);
    }
    .entry-link span {
      color: var(--muted);
      font-size: 0.88rem;
    }
    .entry-link strong {
      display: block;
      font-weight: 600;
      font-size: 0.96rem;
    }
    .link-arrow {
      color: var(--gold-2);
      font-size: 1.1rem;
      flex: 0 0 auto;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1.25fr 0.9fr 0.9fr;
      gap: 0.9rem;
    }
    .feature-grid .feature-card {
      min-height: 160px;
    }
    .feature-grid .feature-card.large {
      grid-row: span 2;
      min-height: 340px;
    }
    .feature-card {
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.016)),
        rgba(255,255,255,0.01);
      border-radius: var(--radius);
      padding: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1rem;
      box-shadow: var(--shadow-soft);
      min-height: 100%;
    }
    .feature-card:hover,
    .news-item:hover,
    .quote-card:hover,
    .timeline-card:hover,
    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(216,177,95,0.36);
      box-shadow: var(--shadow);
    }
    .feature-badge {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 0.4rem;
      border-radius: 999px;
      border: 1px solid rgba(216,177,95,0.22);
      background: rgba(216,177,95,0.06);
      color: var(--gold-2);
      padding: 0.32rem 0.62rem;
      font-size: 0.82rem;
    }
    .feature-badge::before {
      content: "";
      width: 0.4rem;
      height: 0.4rem;
      border-radius: 999px;
      background: var(--gold);
    }
    .feature-card h3 {
      margin: 0;
      font-size: 1.05rem;
      line-height: 1.25;
    }
    .feature-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
    }
    .feature-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      color: var(--muted);
      font-size: 0.86rem;
    }
    .feature-foot strong {
      color: var(--text);
      font-weight: 600;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
    }
    .entry-card {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
      border-radius: var(--radius);
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      box-shadow: var(--shadow-soft);
    }
    .entry-card h3 {
      margin: 0;
      font-size: 1rem;
      line-height: 1.2;
    }
    .entry-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
    }
    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: auto;
    }

    .news-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
      gap: 0.9rem;
    }
    .news-list {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
      border-radius: var(--radius);
      overflow: hidden;
    }
    .news-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.95rem 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      color: var(--text);
    }
    .news-item:last-child { border-bottom: 0; }
    .news-item small {
      display: block;
      color: var(--muted);
      font-size: 0.82rem;
      margin-top: 0.3rem;
    }
    .news-item strong {
      display: block;
      font-weight: 600;
      font-size: 0.95rem;
      line-height: 1.35;
    }
    .news-tag {
      flex: 0 0 auto;
      border: 1px solid rgba(216,177,95,0.22);
      color: var(--gold-2);
      background: rgba(216,177,95,0.06);
      border-radius: 999px;
      font-size: 0.82rem;
      padding: 0.28rem 0.58rem;
      white-space: nowrap;
    }
    .aside-card {
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(216,177,95,0.06), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
      border-radius: var(--radius);
      padding: 1rem;
      display: grid;
      gap: 0.85rem;
    }
    .aside-card h3 {
      margin: 0;
      font-size: 1rem;
    }
    .aside-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
    }
    .meter {
      display: grid;
      gap: 0.45rem;
    }
    .meter-row {
      display: grid;
      gap: 0.35rem;
    }
    .meter-row header {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      color: var(--muted);
      font-size: 0.85rem;
    }
    .meter-bar {
      height: 0.45rem;
      background: rgba(255,255,255,0.08);
      border-radius: 999px;
      overflow: hidden;
    }
    .meter-bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
    }

    .timeline-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(280px, 0.95fr);
      gap: 0.9rem;
      align-items: stretch;
    }
    .timeline-card {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
      border-radius: var(--radius);
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      min-height: 100%;
      box-shadow: var(--shadow-soft);
    }
    .timeline-num {
      width: fit-content;
      color: var(--gold-2);
      font-size: 1.6rem;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0;
    }
    .timeline-card h3 {
      margin: 0;
      font-size: 1rem;
      line-height: 1.2;
    }
    .timeline-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
    }
    .timeline-aside {
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(216,177,95,0.06), rgba(255,255,255,0.012)),
        rgba(255,255,255,0.02);
      border-radius: var(--radius);
      padding: 1rem;
      display: grid;
      gap: 0.8rem;
    }
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.7rem;
    }
    .stat-box {
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      border-radius: var(--radius-sm);
      padding: 0.8rem 0.7rem;
      text-align: center;
    }
    .stat-box strong {
      display: block;
      color: var(--gold-2);
      font-size: 1.4rem;
      line-height: 1;
      font-weight: 700;
    }
    .stat-box span {
      display: block;
      margin-top: 0.35rem;
      color: var(--muted);
      font-size: 0.82rem;
    }
    .timeline-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.65rem;
    }
    .timeline-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      color: var(--muted);
      font-size: 0.9rem;
    }
    .timeline-list li::before {
      content: "";
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 999px;
      margin-top: 0.45rem;
      background: var(--gold);
      flex: 0 0 auto;
    }
    .timeline-list strong {
      color: var(--text);
      font-weight: 600;
    }

    .quote-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
    }
    .quote-card {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
      border-radius: var(--radius);
      padding: 1rem;
      display: grid;
      gap: 0.85rem;
      box-shadow: var(--shadow-soft);
    }
    .quote-mark {
      color: var(--gold-2);
      font-size: 1.5rem;
      line-height: 1;
    }
    .quote-card p {
      margin: 0;
      color: var(--text);
      font-size: 0.95rem;
      line-height: 1.8;
    }
    .quote-card footer {
      color: var(--muted);
      font-size: 0.86rem;
    }

    .faq-wrap .accordion-item {
      border: 1px solid var(--line);
      background: var(--surface);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 0.7rem;
    }
    .faq-wrap .accordion-button {
      background: rgba(255,255,255,0.02);
      color: var(--text);
      box-shadow: none !important;
      font-size: 0.98rem;
      padding: 1rem 1rem;
    }
    .faq-wrap .accordion-button:not(.collapsed) {
      color: var(--gold-2);
      background: rgba(216,177,95,0.06);
    }
    .faq-wrap .accordion-button::after {
      filter: invert(80%) sepia(56%) saturate(396%) hue-rotate(353deg) brightness(102%) contrast(96%);
    }
    .faq-wrap .accordion-body {
      color: var(--muted);
      font-size: 0.93rem;
      padding-top: 0;
    }

    .cta-band {
      padding: 1.05rem;
      border: 1px solid rgba(216,177,95,0.28);
      background:
        linear-gradient(135deg, rgba(216,177,95,0.12), rgba(255,255,255,0.02)),
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
      border-radius: var(--radius);
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 1rem;
      align-items: center;
      box-shadow: var(--shadow);
    }
    .cta-band h2 {
      margin: 0;
      font-size: 1.28rem;
      line-height: 1.2;
    }
    .cta-band p {
      margin: 0.35rem 0 0;
      color: var(--muted);
      font-size: 0.94rem;
    }
    .cta-actions {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .site-footer {
      margin-top: 1.3rem;
      border-top: 1px solid var(--line);
      padding: 1.1rem 0 1.6rem;
      color: var(--muted);
      font-size: 0.88rem;
    }
    .footer-grid {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-brand {
      color: var(--text);
      font-weight: 700;
      margin-bottom: 0.45rem;
    }
    .footer-links {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .footer-links a {
      color: var(--muted);
      border-bottom: 1px solid transparent;
    }
    .footer-links a:hover {
      color: var(--text);
      border-bottom-color: rgba(216,177,95,0.4);
    }
    .footer-meta {
      margin-top: 0.7rem;
      color: var(--muted-2);
      line-height: 1.8;
    }

    .floating-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 60;
      display: none;
      background: rgba(9, 9, 10, 0.9);
      backdrop-filter: blur(12px);
      border-top: 1px solid var(--line);
      padding: 0.6rem 0;
    }
    .floating-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }
    .floating-note {
      color: var(--muted);
      font-size: 0.82rem;
      white-space: nowrap;
    }
    .floating-actions {
      display: flex;
      gap: 0.55rem;
      flex-wrap: nowrap;
    }

    @media (max-width: 1199.98px) {
      .feature-grid,
      .timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .feature-grid .feature-card.large {
        grid-row: auto;
      }
      .news-grid,
      .subscribe-panel,
      .cta-band,
      .countdown-panel,
      .hero-cover {
        grid-template-columns: 1fr;
      }
      .stage-visual {
        grid-template-columns: 1fr;
      }
      .stage-side {
        min-width: 0;
      }
      .hero-title {
        max-width: 14ch;
      }
    }

    @media (max-width: 767.98px) {
      body {
        padding-bottom: 102px;
      }
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
      }
      .site-nav {
        gap: 0.85rem;
        justify-content: flex-start;
      }
      .header-status {
        align-self: stretch;
        justify-content: center;
      }
      .hero-title {
        font-size: 2.2rem;
        max-width: none;
      }
      .hero-copy {
        min-height: auto;
      }
      .hero-stage {
        min-height: auto;
      }
      .countdown-grid,
      .entry-grid,
      .quote-grid,
      .feature-grid,
      .timeline-grid,
      .stat-grid {
        grid-template-columns: 1fr;
      }
      .countdown-num {
        font-size: 1.75rem;
      }
      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }
      .cta-actions,
      .floating-actions {
        justify-content: flex-start;
      }
      .floating-bar {
        display: block;
      }
      .desktop-only {
        display: none !important;
      }
    }

    @media (min-width: 768px) {
      .floating-bar {
        display: none;
      }
    }

    @media (max-width: 519.98px) {
      .container-xxl {
        padding-left: var(--container-pad);
        padding-right: var(--container-pad);
      }
      .hero-cover,
      .countdown-card,
      .highlights-panel,
      .subscribe-card,
      .replay-card,
      .feature-card,
      .entry-card,
      .news-list,
      .aside-card,
      .timeline-card,
      .timeline-aside,
      .quote-card,
      .cta-band {
        padding: 0.88rem;
      }
      .subscribe-form {
        grid-template-columns: 1fr;
      }
      .btn-gold, .btn-ghost, .btn-soft {
        width: 100%;
      }
      .cta-actions .btn-gold,
      .cta-actions .btn-ghost {
        width: auto;
      }
      .brand span {
        font-size: 0.98rem;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #0b0a08;
      --bg-2: #11100d;
      --surface: #151310;
      --surface-2: #1b1814;
      --surface-3: #201c17;
      --line: rgba(231, 196, 111, 0.16);
      --line-strong: rgba(231, 196, 111, 0.28);
      --text: #f2e8d6;
      --muted: #b3a692;
      --faint: #7f7567;
      --gold: #d8b15f;
      --gold-2: #f1d48b;
      --wine: #6d2c31;
      --green: #2d5a43;
      --shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
      --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.22);
      --radius: 8px;
      --radius-sm: 6px;
      --gap: 1.25rem;
      --container-pad: 1rem;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        linear-gradient(180deg, #0c0b09 0%, #080807 100%);
      font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.65;
      letter-spacing: 0;
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
      background-size: 72px 72px;
      opacity: 0.24;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.7) 50%, rgba(0,0,0,.6));
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover {
      color: var(--gold-2);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    ::selection {
      background: rgba(216, 177, 95, 0.28);
      color: #fff8e8;
    }

    .container-xxl {
      position: relative;
      z-index: 1;
      padding-left: var(--container-pad);
      padding-right: var(--container-pad);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: none;
      background: rgba(11, 10, 8, 0.96);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-height: 74px;
      padding: 0.85rem 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--text);
      font-weight: 700;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand:hover {
      color: var(--text);
    }

    .brand-mark {
      width: 14px;
      height: 14px;
      border-radius: 3px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, var(--gold-2), var(--gold));
      box-shadow: 0 0 0 1px rgba(255, 217, 136, 0.22), 0 0 18px rgba(216, 177, 95, 0.22);
      flex: 0 0 auto;
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 1.1rem;
      white-space: nowrap;
    }

    .nav-link {
      position: relative;
      color: var(--muted);
      font-size: 0.98rem;
      padding: 0.35rem 0;
      transition: color .18s ease, transform .18s ease;
    }

    .nav-link:hover {
      color: var(--text);
      transform: translateY(-1px);
    }

    .nav-link.active {
      color: var(--text);
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -0.25rem;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
    }

    .header-status {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      color: var(--muted);
      font-size: .93rem;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.02);
      padding: .55rem .8rem;
      border-radius: 999px;
      flex: 0 0 auto;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold-2);
      box-shadow: 0 0 0 4px rgba(216, 177, 95, 0.1);
    }

    .main-shell {
      padding: 1.25rem 0 3rem;
    }

    .section-band {
      padding: 1.15rem 0;
    }

    .hero-shell {
      position: relative;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        linear-gradient(135deg, rgba(120, 32, 42, 0.16), rgba(216, 177, 95, 0.05) 45%, rgba(17, 16, 13, 0.92) 90%);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .hero-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 18%, rgba(216, 177, 95, 0.08), transparent 22%),
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.25fr 0.95fr;
      gap: 1rem;
      padding: 1.25rem;
      position: relative;
      z-index: 1;
    }

    .profile-card {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 0.9rem;
      align-items: center;
      padding: 0.95rem 1rem;
      border: 1px solid rgba(231, 196, 111, 0.16);
      border-radius: var(--radius);
      background: rgba(7, 6, 5, 0.55);
    }

    .avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 1.05rem;
      color: #fff7e3;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, #2a2117, #14110e);
      border: 1px solid rgba(241, 212, 139, 0.34);
      box-shadow: 0 0 0 4px rgba(216, 177, 95, 0.08);
      flex: 0 0 auto;
    }

    .profile-name {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem .65rem;
      align-items: center;
      margin-bottom: .28rem;
    }

    .profile-name strong {
      font-size: 1.15rem;
      letter-spacing: 0;
    }

    .profile-meta {
      color: var(--muted);
      font-size: .95rem;
      margin: 0;
    }

    .social-badges {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      margin-top: .8rem;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      border: 1px solid rgba(231, 196, 111, 0.18);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.02);
      color: var(--text);
      padding: .34rem .65rem;
      font-size: .82rem;
      white-space: nowrap;
    }

    .mini-badge .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold-2);
      box-shadow: 0 0 0 3px rgba(216, 177, 95, 0.12);
    }

    .btn-gold,
    .btn-ghost,
    .btn-soft,
    .btn-outline-gold {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .45rem;
      min-height: 42px;
      padding: .68rem 1rem;
      border-radius: var(--radius);
      border: 1px solid transparent;
      transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
      white-space: nowrap;
      line-height: 1;
    }

    .btn-gold {
      color: #1a1307;
      background: linear-gradient(180deg, #f0d48b, #c79d49);
      box-shadow: 0 8px 18px rgba(199, 157, 73, 0.22);
    }

    .btn-gold:hover,
    .btn-gold:focus-visible {
      color: #140e05;
      background: linear-gradient(180deg, #f5dea0, #d2a555);
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(199, 157, 73, 0.28);
    }

    .btn-ghost {
      color: var(--text);
      background: rgba(255, 255, 255, 0.02);
      border-color: var(--line);
    }

    .btn-ghost:hover,
    .btn-ghost:focus-visible {
      color: var(--text);
      border-color: var(--line-strong);
      background: rgba(255, 255, 255, 0.04);
      transform: translateY(-1px);
    }

    .btn-soft {
      color: var(--text);
      background: rgba(216, 177, 95, 0.08);
      border-color: rgba(216, 177, 95, 0.18);
    }

    .btn-soft:hover,
    .btn-soft:focus-visible {
      color: var(--text);
      background: rgba(216, 177, 95, 0.13);
      border-color: rgba(216, 177, 95, 0.28);
      transform: translateY(-1px);
    }

    .btn-outline-gold {
      color: var(--gold-2);
      background: transparent;
      border-color: rgba(241, 212, 139, 0.36);
    }

    .btn-outline-gold:hover,
    .btn-outline-gold:focus-visible {
      color: #fff6e0;
      border-color: rgba(241, 212, 139, 0.62);
      background: rgba(241, 212, 139, 0.08);
      transform: translateY(-1px);
    }

    .btn:focus-visible,
    .btn-gold:focus-visible,
    .btn-ghost:focus-visible,
    .btn-soft:focus-visible,
    .btn-outline-gold:focus-visible,
    .nav-link:focus-visible,
    .form-control:focus,
    .form-select:focus,
    .chip:focus-visible,
    .page-link:focus-visible {
      outline: none;
      box-shadow: 0 0 0 0.16rem rgba(216, 177, 95, 0.22);
    }

    .hero-copy {
      padding: 0.35rem 0.1rem 0 0.1rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      color: var(--gold-2);
      font-size: .86rem;
      text-transform: uppercase;
      letter-spacing: 0;
      margin-bottom: .85rem;
    }

    .eyebrow::before {
      content: "";
      width: 18px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-2));
    }

    h1 {
      margin: 0;
      font-weight: 800;
      line-height: 1.08;
      font-size: clamp(2rem, 3vw, 3.1rem);
      letter-spacing: 0;
    }

    .hero-copy p {
      margin: .8rem 0 1rem;
      color: var(--muted);
      max-width: 58ch;
      font-size: 1rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem;
      align-items: center;
      margin-top: 1rem;
    }

    .hero-note {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      margin-top: .95rem;
      color: var(--faint);
      font-size: .9rem;
    }

    .hero-panel {
      display: grid;
      grid-template-rows: auto 1fr;
      gap: .9rem;
    }

    .stage-board {
      position: relative;
      min-height: 228px;
      border-radius: var(--radius);
      border: 1px solid rgba(231, 196, 111, 0.18);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(16, 14, 12, 0.96), rgba(10, 9, 8, 0.88));
      overflow: hidden;
      padding: 1rem;
    }

    .stage-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 0, rgba(241, 212, 139, 0.07) 50%, transparent 100%),
        repeating-linear-gradient(90deg, rgba(241, 212, 139, 0.07) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 24px);
      opacity: .45;
      pointer-events: none;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.95), rgba(0,0,0,.65));
    }

    .stage-inner {
      position: relative;
      z-index: 1;
      height: 100%;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: .9rem;
      align-items: stretch;
    }

    .stage-title {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: .9rem;
      padding: .4rem 0 .2rem;
    }

    .stage-title h2 {
      margin: 0;
      font-size: clamp(1.45rem, 2vw, 2rem);
      line-height: 1.15;
    }

    .stage-title p {
      margin: 0;
      color: var(--muted);
      max-width: 28ch;
      font-size: .95rem;
    }

    .countdown-box {
      display: grid;
      gap: .7rem;
      align-content: start;
      border-left: 1px solid rgba(231, 196, 111, 0.16);
      padding-left: .9rem;
    }

    .countdown-label {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      color: var(--muted);
      font-size: .84rem;
      text-transform: uppercase;
    }

    .countdown-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: .55rem;
    }

    .time-tile {
      display: grid;
      place-items: center;
      min-height: 74px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(231, 196, 111, 0.16);
      background: rgba(255, 255, 255, 0.02);
      text-align: center;
      padding: .55rem .25rem;
    }

    .time-tile strong {
      display: block;
      font-size: 1.4rem;
      line-height: 1;
      color: var(--gold-2);
      letter-spacing: 0;
    }

    .time-tile span {
      display: block;
      margin-top: .35rem;
      color: var(--muted);
      font-size: .76rem;
      letter-spacing: 0;
    }

    .stage-side {
      display: grid;
      gap: .8rem;
      align-content: start;
    }

    .status-card {
      padding: .95rem;
      border-radius: var(--radius);
      border: 1px solid rgba(231, 196, 111, 0.16);
      background: rgba(255, 255, 255, 0.02);
    }

    .status-card .label {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      color: var(--gold-2);
      font-size: .82rem;
      margin-bottom: .55rem;
    }

    .status-card h3 {
      margin: 0 0 .3rem;
      font-size: 1rem;
    }

    .status-card p {
      margin: 0;
      color: var(--muted);
      font-size: .92rem;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: .45rem;
    }

    .chip {
      appearance: none;
      border: 1px solid rgba(231, 196, 111, 0.16);
      background: rgba(255, 255, 255, 0.02);
      color: var(--muted);
      border-radius: 999px;
      padding: .42rem .8rem;
      min-height: 38px;
      transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
    }

    .chip:hover {
      transform: translateY(-1px);
      color: var(--text);
      border-color: rgba(231, 196, 111, 0.28);
    }

    .chip.active {
      background: rgba(216, 177, 95, 0.12);
      color: #fff4d9;
      border-color: rgba(241, 212, 139, 0.36);
      box-shadow: inset 0 0 0 1px rgba(241, 212, 139, 0.05);
    }

    .toolbar {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: .85rem;
      align-items: center;
      padding: .95rem 1rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.018);
      margin-top: 1rem;
    }

    .toolbar-info {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem 1rem;
      align-items: center;
      color: var(--muted);
      font-size: .92rem;
    }

    .toolbar-info strong {
      color: var(--text);
      font-weight: 700;
    }

    .toolbar-actions {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      justify-self: end;
      min-width: 280px;
    }

    .form-select,
    .form-control {
      background-color: rgba(255, 255, 255, 0.03);
      border-color: rgba(231, 196, 111, 0.16);
      color: var(--text);
      border-radius: var(--radius);
      min-height: 42px;
      box-shadow: none;
    }

    .form-select option {
      background: #13110f;
      color: var(--text);
    }

    .form-control::placeholder {
      color: rgba(179, 166, 146, 0.7);
    }

    .form-control:focus,
    .form-select:focus {
      background-color: rgba(255, 255, 255, 0.045);
      border-color: rgba(241, 212, 139, 0.45);
      color: var(--text);
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.7fr) minmax(290px, .92fr);
      gap: 1rem;
      align-items: start;
      margin-top: 1rem;
    }

    .results-wrap {
      position: relative;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.015);
      padding: 1rem;
      overflow: hidden;
    }

    .results-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: .6rem 1rem;
      align-items: center;
      margin-bottom: .9rem;
    }

    .results-top h2 {
      margin: 0;
      font-size: 1.18rem;
      line-height: 1.15;
    }

    .results-top .sub {
      color: var(--muted);
      font-size: .92rem;
    }

    .loading-strip {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      background: rgba(10, 9, 8, 0.74);
      backdrop-filter: none;
      z-index: 2;
    }

    .loading-card {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      padding: .8rem 1rem;
      border: 1px solid rgba(231, 196, 111, 0.18);
      border-radius: var(--radius);
      background: rgba(21, 19, 16, 0.94);
      color: var(--text);
      box-shadow: var(--shadow-soft);
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .85rem;
    }

    .entry-card {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: .85rem;
      min-height: 100%;
      border-radius: var(--radius);
      border: 1px solid rgba(231, 196, 111, 0.16);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
        rgba(17, 15, 13, 0.98);
      padding: .95rem;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      overflow: hidden;
    }

    .entry-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(241, 212, 139, 0.08), transparent 35%);
      opacity: 0;
      transition: opacity .18s ease;
      pointer-events: none;
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(241, 212, 139, 0.34);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
    }

    .entry-card:hover::before {
      opacity: 1;
    }

    .entry-card.featured {
      grid-column: span 2;
      min-height: 204px;
    }

    .entry-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: .6rem;
      align-items: center;
    }

    .entry-top .badge {
      border-radius: 999px;
      padding: .44rem .68rem;
      font-weight: 600;
      border: 1px solid rgba(231, 196, 111, 0.16);
      color: var(--gold-2);
      background: rgba(216, 177, 95, 0.08);
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      color: var(--muted);
      font-size: .84rem;
    }

    .status-pill .pin {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold-2);
    }

    .entry-card h3 {
      margin: 0;
      font-size: 1.08rem;
      line-height: 1.28;
      letter-spacing: 0;
    }

    .entry-card p {
      margin: 0;
      color: var(--muted);
      font-size: .94rem;
    }

    .meta-line {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem .85rem;
      align-items: center;
      color: var(--faint);
      font-size: .84rem;
      margin-top: auto;
    }

    .meta-line i {
      color: var(--gold-2);
    }

    .entry-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin-top: .2rem;
    }

    .entry-actions .btn {
      min-height: 38px;
      padding: .58rem .84rem;
      font-size: .9rem;
    }

    .empty-state {
      display: grid;
      place-items: center;
      text-align: center;
      min-height: 240px;
      padding: 1.2rem;
      border: 1px dashed rgba(231, 196, 111, 0.22);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.016);
    }

    .empty-state h3 {
      margin: .7rem 0 .4rem;
      font-size: 1.06rem;
    }

    .empty-state p {
      margin: 0;
      color: var(--muted);
      max-width: 28ch;
    }

    .side-stack {
      display: grid;
      gap: .9rem;
      position: sticky;
      top: 94px;
    }

    .side-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.016);
      padding: .95rem;
    }

    .side-card h3 {
      margin: 0 0 .45rem;
      font-size: 1.02rem;
    }

    .side-card p {
      margin: 0;
      color: var(--muted);
      font-size: .92rem;
    }

    .side-list {
      list-style: none;
      padding: 0;
      margin: .9rem 0 0;
      display: grid;
      gap: .65rem;
    }

    .side-list li {
      display: flex;
      align-items: flex-start;
      gap: .55rem;
      color: var(--muted);
      font-size: .92rem;
    }

    .side-list i {
      color: var(--gold-2);
      margin-top: .14rem;
      flex: 0 0 auto;
    }

    .subscribe-form {
      display: grid;
      gap: .75rem;
      margin-top: .8rem;
    }

    .form-label {
      color: var(--text);
      margin-bottom: .35rem;
      font-size: .88rem;
    }

    .field-row {
      display: grid;
      gap: .75rem;
    }

    .help-text {
      color: var(--faint);
      font-size: .82rem;
      line-height: 1.45;
    }

    .feedback {
      display: none;
      margin-top: .6rem;
      padding: .7rem .8rem;
      border: 1px solid rgba(83, 165, 116, 0.32);
      border-radius: var(--radius);
      background: rgba(45, 90, 67, 0.16);
      color: #d8f0df;
      font-size: .92rem;
    }

    .feedback.show {
      display: block;
    }

    .faq-band {
      padding: 1.15rem 0 0.4rem;
    }

    .faq-shell {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.014);
      padding: 1rem;
    }

    .section-title {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: .55rem 1rem;
      align-items: end;
      margin-bottom: 1rem;
    }

    .section-title h2 {
      margin: 0;
      font-size: 1.2rem;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: .92rem;
    }

    .accordion {
      --bs-accordion-border-color: rgba(231, 196, 111, 0.16);
      --bs-accordion-bg: rgba(255, 255, 255, 0.015);
      --bs-accordion-btn-bg: transparent;
      --bs-accordion-active-bg: rgba(255, 255, 255, 0.02);
      --bs-accordion-btn-color: var(--text);
      --bs-accordion-color: var(--muted);
      --bs-accordion-btn-focus-box-shadow: none;
      --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23f1d48b' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
      --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23f1d48b' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10l4-4 4 4'/%3E%3C/svg%3E");
    }

    .accordion-item {
      border-radius: var(--radius);
      overflow: hidden;
      background: rgba(255, 255, 255, 0.012);
      margin-bottom: .7rem;
      border: 1px solid var(--line);
    }

    .accordion-button {
      background: transparent;
      color: var(--text);
      padding: 1rem 1rem;
      box-shadow: none !important;
      font-weight: 600;
    }

    .accordion-button::after {
      background-size: 14px 14px;
    }

    .accordion-button:not(.collapsed) {
      color: var(--text);
      background: rgba(255, 255, 255, 0.02);
    }

    .accordion-body {
      padding: 0 1rem 1rem;
      color: var(--muted);
    }

    .cta-band {
      padding: 1.2rem 0 1.5rem;
    }

    .cta-shell {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 1rem;
      padding: 1.15rem;
      border: 1px solid rgba(241, 212, 139, 0.22);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(216, 177, 95, 0.06), rgba(255, 255, 255, 0.012)),
        rgba(18, 16, 13, 0.98);
    }

    .cta-shell h2 {
      margin: 0 0 .45rem;
      font-size: 1.28rem;
    }

    .cta-shell p {
      margin: 0;
      color: var(--muted);
      max-width: 54ch;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem;
      align-content: center;
      justify-content: flex-end;
    }

    .site-footer {
      margin-top: .5rem;
      border-top: 1px solid var(--line);
      background: rgba(10, 9, 8, 0.96);
    }

    .footer-inner {
      padding: 1.1rem 0 1.35rem;
      display: grid;
      grid-template-columns: 1.1fr auto;
      gap: 1rem;
      align-items: start;
    }

    .footer-brand {
      display: grid;
      gap: .45rem;
    }

    .footer-brand strong {
      font-size: 1rem;
      color: var(--text);
    }

    .footer-brand p {
      margin: 0;
      color: var(--muted);
      font-size: .9rem;
      max-width: 56ch;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem 1rem;
      justify-content: flex-end;
      align-items: center;
      color: var(--muted);
      font-size: .9rem;
    }

    .footer-links a {
      color: var(--muted);
    }

    .footer-links a:hover {
      color: var(--gold-2);
    }

    .footer-bottom {
      border-top: 1px solid rgba(231, 196, 111, 0.12);
      padding: .8rem 0 1rem;
      color: var(--faint);
      font-size: .84rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: .4rem 1rem;
    }

    .pagination {
      --bs-pagination-bg: rgba(255, 255, 255, 0.02);
      --bs-pagination-border-color: rgba(231, 196, 111, 0.16);
      --bs-pagination-color: var(--muted);
      --bs-pagination-hover-bg: rgba(216, 177, 95, 0.08);
      --bs-pagination-hover-border-color: rgba(241, 212, 139, 0.3);
      --bs-pagination-hover-color: var(--text);
      --bs-pagination-active-bg: rgba(216, 177, 95, 0.14);
      --bs-pagination-active-border-color: rgba(241, 212, 139, 0.36);
      --bs-pagination-active-color: var(--text);
    }

    .page-link {
      color: var(--muted);
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(231, 196, 111, 0.16);
      box-shadow: none;
      border-radius: var(--radius-sm);
    }

    .page-item.disabled .page-link {
      color: rgba(179, 166, 146, 0.42);
      background: rgba(255, 255, 255, 0.01);
      border-color: rgba(231, 196, 111, 0.08);
    }

    .page-item.active .page-link {
      background: rgba(216, 177, 95, 0.14);
      border-color: rgba(241, 212, 139, 0.34);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

    @media (max-width: 1199.98px) {
      .hero-grid,
      .cta-shell,
      .content-grid {
        grid-template-columns: 1fr;
      }

      .stage-inner {
        grid-template-columns: 1fr;
      }

      .countdown-box {
        border-left: 0;
        padding-left: 0;
        padding-top: .3rem;
      }

      .side-stack {
        position: static;
      }
    }

    @media (max-width: 991.98px) {
      .header-inner {
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
      }

      .header-status {
        margin-left: auto;
      }

      .toolbar {
        grid-template-columns: 1fr;
      }

      .toolbar-actions {
        justify-self: stretch;
        min-width: 0;
      }

      .entry-grid {
        grid-template-columns: 1fr;
      }

      .entry-card.featured {
        grid-column: auto;
      }
    }

    @media (max-width: 767.98px) {
      .site-nav {
        width: 100%;
        order: 3;
        padding-top: .35rem;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
      }

      .site-nav::-webkit-scrollbar {
        display: none;
      }

      .header-status {
        order: 2;
        margin-left: 0;
      }

      .hero-grid {
        padding: 1rem;
      }

      .profile-card {
        grid-template-columns: 1fr;
        justify-items: start;
      }

      .profile-card .btn {
        width: 100%;
      }

      .countdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .toolbar-info,
      .toolbar-actions,
      .cta-actions,
      .footer-links,
      .footer-bottom {
        width: 100%;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }

      .footer-bottom {
        flex-direction: column;
      }

      .hero-actions .btn,
      .cta-actions .btn {
        width: 100%;
      }
    }

    @media (max-width: 575.98px) {
      .main-shell {
        padding-top: .8rem;
      }

      .section-band {
        padding: .9rem 0;
      }

      .hero-copy p,
      .status-card p,
      .side-card p,
      .accordion-body,
      .cta-shell p {
        font-size: .92rem;
      }

      .profile-name strong {
        font-size: 1.03rem;
      }

      h1 {
        font-size: 1.9rem;
      }

      .entry-card h3 {
        font-size: 1.02rem;
      }

      .stage-board {
        min-height: 250px;
      }

      .time-tile {
        min-height: 68px;
      }

      .toolbar,
      .results-wrap,
      .faq-shell,
      .cta-shell,
      .side-card,
      .hero-shell {
        border-radius: 7px;
      }
    }
