/* roulang page: index */
:root {
      --bg: #16070d;
      --bg-2: #241018;
      --panel: #2d121f;
      --panel-soft: #3a1728;
      --paper: #fff8ef;
      --paper-2: #ffe8db;
      --text: #fff6ee;
      --muted: #e8b8c6;
      --dark-text: #271015;
      --weak-dark: #77515b;
      --primary: #ff2e83;
      --primary-2: #ff5b9e;
      --gold: #ffd47a;
      --coral: #ff7b66;
      --line: rgba(255, 212, 122, .22);
      --line-strong: rgba(255, 46, 131, .45);
      --shadow: 0 18px 50px rgba(0, 0, 0, .35);
      --shadow-hot: 0 18px 45px rgba(255, 46, 131, .28);
      --radius: 8px;
      --radius-sm: 6px;
      --container: 1180px;
      --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      font-family: var(--font);
      color: var(--text);
      line-height: 1.7;
      background:
        radial-gradient(circle at 18% 4%, rgba(255, 46, 131, .22), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(255, 212, 122, .14), transparent 32%),
        linear-gradient(180deg, #16070d 0%, #200c14 42%, #12070b 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(255, 212, 122, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 212, 122, .08) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, #000, transparent 78%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, select, textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    button:disabled,
    .btn.is-disabled {
      cursor: not-allowed;
      opacity: .55;
      transform: none;
      box-shadow: none;
    }

    :focus-visible {
      outline: 3px solid rgba(255, 212, 122, .9);
      outline-offset: 3px;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(255, 212, 122, .18);
      background: rgba(22, 7, 13, .88);
      backdrop-filter: blur(14px);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--text);
      white-space: nowrap;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: var(--radius-sm);
      background:
        linear-gradient(135deg, var(--primary), var(--coral) 58%, var(--gold));
      box-shadow: 0 10px 28px rgba(255, 46, 131, .35);
      position: relative;
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      width: 14px;
      height: 14px;
      right: 6px;
      bottom: 6px;
      border: 2px solid rgba(255, 255, 255, .75);
      border-radius: 50%;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex: 1;
    }

    .nav-links a {
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      color: var(--muted);
      font-weight: 700;
      transition: .2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
      background: rgba(255, 46, 131, .16);
      box-shadow: inset 0 0 0 1px rgba(255, 46, 131, .32);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, .08);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .14);
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      background: currentColor;
      transition: .2s ease;
    }

    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 18px;
      border-radius: var(--radius-sm);
      font-weight: 900;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      overflow: hidden;
      white-space: nowrap;
    }

    .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      transform: translateX(-110%);
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32), transparent);
      transition: transform .45s ease;
    }

    .btn:hover::after {
      transform: translateX(110%);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #ff3f6f);
      box-shadow: var(--shadow-hot);
    }

    .btn-primary:hover {
      box-shadow: 0 20px 54px rgba(255, 46, 131, .38);
    }

    .btn-gold {
      color: #281017;
      background: linear-gradient(135deg, var(--gold), #ffae58);
      box-shadow: 0 14px 36px rgba(255, 212, 122, .25);
    }

    .btn-outline {
      color: #fff;
      border: 1px solid rgba(255, 212, 122, .45);
      background: rgba(255, 255, 255, .05);
    }

    .btn-outline:hover {
      border-color: var(--primary);
      background: rgba(255, 46, 131, .14);
    }

    .countdown-strip {
      border-bottom: 1px solid rgba(255, 212, 122, .2);
      background:
        linear-gradient(90deg, rgba(255, 46, 131, .95), rgba(255, 123, 102, .9) 45%, rgba(255, 212, 122, .9));
      color: #250b12;
      font-weight: 900;
    }

    .countdown-inner {
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .countdown-title {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pulse-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 0 rgba(255, 255, 255, .75);
      animation: pulse 1.4s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .75); }
      70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    }

    .countdown-time {
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    .time-pill {
      min-width: 42px;
      padding: 5px 8px;
      border-radius: 999px;
      color: #fff;
      text-align: center;
      background: rgba(22, 7, 13, .9);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
    }

    .progress-line {
      position: relative;
      width: 160px;
      height: 8px;
      border-radius: 999px;
      background: rgba(22, 7, 13, .22);
      overflow: hidden;
    }

    .progress-line span {
      display: block;
      width: 68%;
      height: 100%;
      border-radius: inherit;
      background: #fff;
      animation: loadbar 3.8s ease-in-out infinite alternate;
    }

    @keyframes loadbar {
      from { width: 54%; }
      to { width: 84%; }
    }

    main {
      overflow: hidden;
    }

    section {
      position: relative;
      padding: 86px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 32px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--gold);
      background: rgba(255, 212, 122, .08);
      border: 1px solid rgba(255, 212, 122, .24);
      font-size: 14px;
      font-weight: 900;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.18;
      margin-bottom: 12px;
      letter-spacing: 0;
    }

    .section-desc {
      color: var(--muted);
      font-size: 17px;
      max-width: 760px;
    }

    .hero {
      padding: 72px 0 78px;
    }

    .hero-stage {
      border: 1px solid rgba(255, 212, 122, .2);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(255, 46, 131, .2), transparent 38%),
        radial-gradient(circle at 78% 24%, rgba(255, 212, 122, .18), transparent 30%),
        linear-gradient(145deg, rgba(45, 18, 31, .96), rgba(22, 7, 13, .96));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 0;
      min-height: 550px;
    }

    .hero-copy {
      padding: clamp(28px, 5vw, 58px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid rgba(255, 212, 122, .18);
    }

    .hero-badge {
      width: fit-content;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      color: #2b0d15;
      background: var(--gold);
      font-weight: 900;
      box-shadow: 0 10px 25px rgba(255, 212, 122, .18);
    }

    h1 {
      max-width: 760px;
      font-size: clamp(38px, 6vw, 72px);
      line-height: 1.05;
      letter-spacing: 0;
      margin-bottom: 22px;
    }

    .hero-intro {
      max-width: 660px;
      color: #ffd5df;
      font-size: 18px;
      margin-bottom: 28px;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      max-width: 640px;
    }

    .metric {
      padding: 14px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 212, 122, .2);
      background: rgba(255, 255, 255, .05);
    }

    .metric strong {
      display: block;
      color: var(--gold);
      font-size: 22px;
      line-height: 1.1;
    }

    .metric span {
      color: var(--muted);
      font-size: 13px;
    }

    .hero-panel {
      padding: clamp(24px, 4vw, 42px);
      background:
        linear-gradient(180deg, rgba(255, 46, 131, .12), rgba(255, 212, 122, .08)),
        rgba(255, 255, 255, .025);
      display: grid;
      align-content: center;
      gap: 18px;
    }

    .goal-card {
      display: grid;
      grid-template-columns: 170px 1fr;
      gap: 22px;
      align-items: center;
      padding: 22px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 212, 122, .24);
      background: rgba(22, 7, 13, .72);
    }

    .progress-ring {
      width: 152px;
      height: 152px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background:
        conic-gradient(var(--primary) 0 266deg, rgba(255,255,255,.11) 266deg 360deg);
      box-shadow: 0 0 35px rgba(255, 46, 131, .28);
      position: relative;
    }

    .progress-ring::before {
      content: "";
      position: absolute;
      inset: 13px;
      border-radius: 50%;
      background: #210c15;
      border: 1px solid rgba(255, 212, 122, .2);
    }

    .ring-text {
      position: relative;
      text-align: center;
      z-index: 1;
    }

    .ring-text strong {
      display: block;
      font-size: 34px;
      color: var(--gold);
      line-height: 1;
    }

    .ring-text span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .goal-copy h2 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .goal-copy p {
      color: var(--muted);
      margin-bottom: 14px;
    }

    .tier-list {
      display: grid;
      gap: 10px;
    }

    .tier {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .tier span {
      color: #ffe3eb;
      font-weight: 800;
    }

    .tier em {
      color: var(--gold);
      font-style: normal;
      font-weight: 900;
      white-space: nowrap;
    }

    .live-section {
      padding-top: 70px;
      background: linear-gradient(180deg, transparent, rgba(255, 46, 131, .06));
    }

    .live-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items: stretch;
    }

    .live-card {
      padding: 26px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 212, 122, .22);
      background:
        linear-gradient(135deg, rgba(255, 46, 131, .2), transparent 44%),
        var(--panel);
      box-shadow: var(--shadow);
    }

    .live-card h3 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .live-card p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .timeline {
      display: grid;
      gap: 12px;
    }

    .time-node {
      display: grid;
      grid-template-columns: 88px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .time-node strong {
      color: var(--gold);
      font-size: 18px;
    }

    .time-node span {
      color: #ffeaf0;
      font-weight: 800;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 4px 10px;
      border-radius: 999px;
      color: #351019;
      background: var(--gold);
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    .badge.pink {
      color: #fff;
      background: var(--primary);
    }

    .badge.dark {
      color: var(--gold);
      background: rgba(22, 7, 13, .72);
      border: 1px solid rgba(255, 212, 122, .28);
    }

    .feature-mosaic {
      display: grid;
      grid-template-columns: 1.25fr .75fr 1fr;
      grid-auto-rows: minmax(170px, auto);
      gap: 16px;
    }

    .feature-card {
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 212, 122, .18);
      background: var(--panel);
      transition: .2s ease;
      box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    }

    .feature-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 46, 131, .7);
      box-shadow: var(--shadow-hot);
    }

    .feature-card.wide {
      grid-column: span 2;
      background:
        linear-gradient(135deg, rgba(255, 46, 131, .25), rgba(255, 123, 102, .08)),
        var(--panel);
    }

    .feature-card.gold {
      color: var(--dark-text);
      background:
        linear-gradient(135deg, #ffe29a, #ffb871);
      border-color: rgba(255, 212, 122, .7);
    }

    .feature-card.gold p,
    .feature-card.gold .card-num {
      color: rgba(39, 16, 21, .72);
    }

    .card-num {
      display: block;
      color: var(--gold);
      font-weight: 900;
      margin-bottom: 22px;
    }

    .feature-card h3 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .feature-card p {
      color: var(--muted);
    }

    .poster-wall {
      display: grid;
      grid-template-columns: 1.1fr .72fr .92fr;
      grid-auto-rows: 168px;
      gap: 14px;
    }

    .poster {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 212, 122, .18);
      background:
        linear-gradient(135deg, rgba(255, 46, 131, .5), rgba(255, 212, 122, .14)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.07) 0 2px, transparent 2px 12px),
        var(--panel);
      transition: .2s ease;
    }

    .poster:nth-child(2) {
      background:
        radial-gradient(circle at 80% 20%, rgba(255, 212, 122, .34), transparent 34%),
        linear-gradient(135deg, rgba(255, 123, 102, .48), rgba(90, 20, 44, .9));
    }

    .poster:nth-child(3) {
      grid-row: span 2;
      background:
        linear-gradient(160deg, rgba(255, 212, 122, .36), rgba(255, 46, 131, .28)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 18px),
        var(--panel-soft);
    }

    .poster:nth-child(4) {
      grid-column: span 2;
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 46, 131, .46), transparent 38%),
        linear-gradient(135deg, rgba(255, 212, 122, .18), rgba(22, 7, 13, .9));
    }

    .poster:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 46, 131, .75);
      box-shadow: var(--shadow-hot);
    }

    .poster-content {
      position: absolute;
      inset: auto 16px 16px 16px;
      z-index: 1;
    }

    .poster h3 {
      font-size: 22px;
      margin: 8px 0 4px;
    }

    .poster p {
      color: #ffe0e8;
      font-size: 14px;
    }

    .poster-status {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
    }

    .watch-list {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 18px;
      align-items: start;
    }

    .rank-panel {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255, 212, 122, .2);
      background: var(--paper);
      color: var(--dark-text);
      box-shadow: var(--shadow);
    }

    .rank-row {
      display: grid;
      grid-template-columns: 48px 1fr 78px 82px;
      align-items: center;
      gap: 12px;
      padding: 15px 18px;
      border-bottom: 1px solid rgba(39, 16, 21, .1);
    }

    .rank-row:last-child {
      border-bottom: 0;
    }

    .rank-row:hover {
      background: #fff0e6;
    }

    .rank-no {
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      color: #fff;
      border-radius: var(--radius-sm);
      background: var(--primary);
      font-weight: 900;
    }

    .rank-title {
      font-weight: 900;
    }

    .rank-note {
      color: var(--weak-dark);
      font-size: 13px;
    }

    .rank-hot {
      color: #b3134c;
      font-weight: 900;
    }

    .info-panel {
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 212, 122, .2);
      background:
        linear-gradient(135deg, rgba(255, 46, 131, .18), transparent),
        var(--panel);
    }

    .info-list {
      display: grid;
      gap: 12px;
      margin-top: 16px;
    }

    .info-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      padding: 14px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .info-item b {
      color: var(--gold);
    }

    .info-item p {
      color: var(--muted);
      font-size: 15px;
    }

    .news-section {
      background: var(--paper);
      color: var(--dark-text);
    }

    .news-section .section-kicker {
      color: #9d1448;
      background: rgba(255, 46, 131, .1);
      border-color: rgba(255, 46, 131, .18);
    }

    .news-section .section-desc {
      color: var(--weak-dark);
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 20px;
      align-items: start;
    }

    .news-list {
      border-radius: var(--radius);
      border: 1px solid rgba(39, 16, 21, .12);
      overflow: hidden;
      background: #fffdf9;
    }

    .news-link {
      display: grid;
      grid-template-columns: 110px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-bottom: 1px solid rgba(39, 16, 21, .1);
      transition: .2s ease;
    }

    .news-link:last-child {
      border-bottom: 0;
    }

    .news-link:hover {
      background: #fff0e8;
      color: #a30f48;
    }

    .news-date {
      color: var(--weak-dark);
      font-weight: 800;
    }

    .news-link h3 {
      font-size: 18px;
      margin-bottom: 4px;
    }

    .news-link p {
      color: var(--weak-dark);
      font-size: 14px;
    }

    .arrow {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--primary);
      font-weight: 900;
    }

    .recommend-box {
      padding: 22px;
      border-radius: var(--radius);
      color: #fff;
      background:
        linear-gradient(135deg, rgba(255, 46, 131, .9), rgba(39, 16, 21, .95)),
        var(--panel);
      box-shadow: 0 16px 36px rgba(160, 20, 72, .22);
    }

    .recommend-box h3 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .recommend-box p {
      color: #ffd9e4;
      margin-bottom: 16px;
    }

    .member-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .member-card {
      padding: 22px;
      min-height: 190px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 212, 122, .2);
      background: rgba(255, 255, 255, .055);
      transition: .2s ease;
    }

    .member-card:hover {
      transform: translateY(-2px);
      background: rgba(255, 46, 131, .1);
      border-color: var(--line-strong);
    }

    .member-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: var(--radius-sm);
      color: #2a0e15;
      background: var(--gold);
      font-weight: 900;
    }

    .member-card h3 {
      margin-bottom: 8px;
      font-size: 20px;
    }

    .member-card p {
      color: var(--muted);
      font-size: 15px;
    }

    .subscribe-band {
      padding: 72px 0;
      background:
        linear-gradient(90deg, rgba(255, 46, 131, .92), rgba(255, 123, 102, .9) 55%, rgba(255, 212, 122, .92));
      color: #260d13;
    }

    .subscribe-wrap {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: center;
    }

    .subscribe-wrap h2 {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .subscribe-wrap p {
      font-weight: 700;
      color: rgba(38, 13, 19, .78);
    }

    .form-card {
      padding: 22px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(38, 13, 19, .12);
      box-shadow: 0 18px 45px rgba(38, 13, 19, .18);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr auto;
      gap: 10px;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    .field label {
      font-size: 13px;
      color: rgba(38, 13, 19, .72);
      font-weight: 900;
    }

    .field input,
    .field select {
      width: 100%;
      height: 46px;
      padding: 0 13px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(38, 13, 19, .18);
      color: var(--dark-text);
      background: #fffdf9;
      transition: .2s ease;
    }

    .field input:hover,
    .field select:hover {
      border-color: rgba(255, 46, 131, .45);
    }

    .field input:focus,
    .field select:focus {
      outline: 3px solid rgba(255, 46, 131, .18);
      border-color: var(--primary);
    }

    .field input.is-error {
      border-color: #d90046;
      background: #fff1f4;
    }

    .form-submit {
      align-self: end;
      height: 46px;
      color: #fff;
      background: #211017;
      box-shadow: none;
    }

    .form-note {
      margin-top: 10px;
      color: rgba(38, 13, 19, .62);
      font-size: 13px;
      font-weight: 700;
    }

    .faq-section {
      background:
        radial-gradient(circle at 15% 10%, rgba(255, 46, 131, .16), transparent 34%),
        #16070d;
    }

    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 920px;
    }

    .faq-item {
      border-radius: var(--radius);
      border: 1px solid rgba(255, 212, 122, .2);
      background: rgba(255, 255, 255, .055);
      overflow: hidden;
      transition: .2s ease;
    }

    .faq-item.is-open {
      border-color: rgba(255, 46, 131, .68);
      box-shadow: inset 4px 0 0 var(--primary);
    }

    .faq-question {
      width: 100%;
      min-height: 58px;
      padding: 16px 18px;
      color: #fff;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      font-weight: 900;
    }

    .faq-question .icon {
      flex: 0 0 auto;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #2a0e15;
      background: var(--gold);
      transition: .2s ease;
    }

    .faq-item.is-open .icon {
      transform: rotate(45deg);
      background: var(--primary);
      color: #fff;
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--muted);
    }

    .faq-item.is-open .faq-answer {
      display: block;
    }

    .final-cta {
      padding: 86px 0;
      background:
        linear-gradient(135deg, rgba(255, 212, 122, .18), transparent 35%),
        linear-gradient(90deg, #2c0d1a, #16070d);
    }

    .final-card {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 24px;
      padding: clamp(24px, 4vw, 38px);
      border-radius: var(--radius);
      border: 1px solid rgba(255, 212, 122, .24);
      background:
        linear-gradient(135deg, rgba(255, 46, 131, .22), rgba(255, 212, 122, .08)),
        rgba(255, 255, 255, .045);
      box-shadow: var(--shadow);
    }

    .final-card h2 {
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.18;
      margin-bottom: 10px;
    }

    .final-card p {
      color: var(--muted);
      max-width: 680px;
    }

    .final-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .site-footer {
      position: relative;
      padding: 56px 0 28px;
      color: var(--muted);
      background:
        linear-gradient(rgba(255, 212, 122, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 212, 122, .06) 1px, transparent 1px),
        #100509;
      background-size: 38px 38px;
      border-top: 1px solid rgba(255, 212, 122, .16);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .7fr .7fr;
      gap: 28px;
      margin-bottom: 32px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .footer-col h3 {
      color: #fff;
      font-size: 17px;
      margin-bottom: 12px;
    }

    .footer-col a {
      display: block;
      width: fit-content;
      padding: 4px 0;
      color: var(--muted);
      transition: .2s ease;
    }

    .footer-col a:hover {
      color: var(--gold);
      transform: translateX(2px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 212, 122, .14);
      font-size: 14px;
    }

    .mobile-cta {
      display: none;
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 60;
      gap: 10px;
      padding: 10px;
      border-radius: var(--radius);
      background: rgba(22, 7, 13, .9);
      border: 1px solid rgba(255, 212, 122, .22);
      backdrop-filter: blur(12px);
    }

    @media (max-width: 1024px) {
      .nav {
        min-height: 70px;
      }

      .nav-links {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: var(--radius);
        border: 1px solid rgba(255, 212, 122, .22);
        background: rgba(22, 7, 13, .97);
        box-shadow: var(--shadow);
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-links a {
        text-align: center;
      }

      .menu-toggle {
        display: inline-block;
      }

      .hero-grid,
      .live-grid,
      .watch-list,
      .news-layout,
      .subscribe-wrap,
      .final-card {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 212, 122, .18);
      }

      .feature-mosaic {
        grid-template-columns: repeat(2, 1fr);
      }

      .poster-wall {
        grid-template-columns: repeat(2, 1fr);
      }

      .poster:nth-child(3),
      .poster:nth-child(4),
      .feature-card.wide {
        grid-column: span 1;
        grid-row: span 1;
      }

      .member-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .final-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      section {
        padding: 62px 0;
      }

      .countdown-inner {
        min-height: 74px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0;
        text-align: center;
      }

      .progress-line {
        width: 120px;
      }

      .nav-actions .btn {
        display: none;
      }

      .hero {
        padding: 42px 0 58px;
      }

      .hero-stage {
        border-radius: var(--radius-sm);
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .hero-cta .btn {
        width: 100%;
      }

      .goal-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
      }

      .time-node {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .feature-mosaic,
      .poster-wall,
      .member-grid {
        grid-template-columns: 1fr;
      }

      .rank-row {
        grid-template-columns: 42px 1fr;
      }

      .rank-hot,
      .rank-row .badge {
        justify-self: start;
        grid-column: 2;
      }

      .news-link {
        grid-template-columns: 1fr;
      }

      .arrow {
        display: none;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-submit {
        width: 100%;
      }

      .footer-grid,
      .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
      }

      .mobile-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      body {
        padding-bottom: 84px;
      }
    }

    @media (max-width: 375px) {
      .logo {
        font-size: 14px;
      }

      h1 {
        font-size: 34px;
      }

      .section-title {
        font-size: 26px;
      }

      .btn {
        padding-left: 12px;
        padding-right: 12px;
        white-space: normal;
      }

      .mobile-cta {
        grid-template-columns: 1fr;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #16070d;
      --bg-deep: #090508;
      --panel: #231017;
      --panel-2: #2d111c;
      --light: #fff8ef;
      --muted: #d9bfc8;
      --soft: #fff1df;
      --text: #fffaf6;
      --text-dark: #241017;
      --rose: #ff2f7d;
      --rose-2: #d70f59;
      --coral: #ff775f;
      --gold: #f6c76b;
      --gold-2: #ffe3a2;
      --line: rgba(255, 227, 162, .22);
      --line-rose: rgba(255, 47, 125, .34);
      --shadow: 0 18px 50px rgba(0, 0, 0, .36);
      --shadow-hot: 0 18px 42px rgba(255, 47, 125, .28);
      --radius: 8px;
      --radius-sm: 6px;
      --container: 1180px;
      --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: var(--font);
      color: var(--text);
      line-height: 1.7;
      background:
        radial-gradient(circle at 12% 8%, rgba(255, 47, 125, .22), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(246, 199, 107, .18), transparent 25%),
        linear-gradient(135deg, var(--bg-deep), var(--bg) 46%, #2a0712);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    button:disabled,
    .btn.disabled {
      cursor: not-allowed;
      opacity: .58;
      transform: none;
      box-shadow: none;
    }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .skip-link {
      position: absolute;
      left: 16px;
      top: -60px;
      z-index: 100;
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      background: var(--gold);
      color: var(--text-dark);
      transition: top .2s ease;
    }

    .skip-link:focus {
      top: 12px;
      outline: 3px solid rgba(255,255,255,.5);
    }

    .countdown-strip {
      position: relative;
      z-index: 5;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(90deg, #ff2f7d, #7f092f 38%, #f6c76b 100%);
      color: #fff;
      box-shadow: 0 10px 28px rgba(255, 47, 125, .22);
    }

    .countdown-inner {
      min-height: 46px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-weight: 700;
    }

    .countdown-copy {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .pulse-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--gold-2);
      box-shadow: 0 0 0 0 rgba(255, 227, 162, .72);
      animation: pulse 1.6s infinite;
      flex: 0 0 auto;
    }

    .time-pills {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
    }

    .time-pills span {
      min-width: 38px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 999px;
      background: rgba(0,0,0,.26);
      color: #fff8e6;
      font-variant-numeric: tabular-nums;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255, 227, 162, .72); }
      70% { box-shadow: 0 0 0 9px rgba(255, 227, 162, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 227, 162, 0); }
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(18, 7, 12, .92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 227, 162, .14);
    }

    .nav-wrap {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      letter-spacing: 0;
      color: var(--text);
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      border-radius: var(--radius-sm);
      background:
        linear-gradient(135deg, var(--gold), transparent 48%),
        linear-gradient(315deg, var(--rose), #7e082e);
      box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 10px 26px rgba(255, 47, 125, .24);
      position: relative;
      flex: 0 0 auto;
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      inset: 9px;
      border: 2px solid rgba(255,255,255,.82);
      border-left-color: transparent;
      border-bottom-color: transparent;
      transform: rotate(45deg);
    }

    .brand span:last-child,
    .footer-brand span:last-child {
      max-width: 210px;
      white-space: normal;
      line-height: 1.18;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      background: rgba(255,255,255,.04);
    }

    .nav-links a {
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease, transform .2s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus {
      color: #fff;
      background: rgba(255, 47, 125, .15);
      outline: none;
      transform: translateY(-1px);
    }

    .nav-links a.active {
      color: var(--text-dark);
      background: var(--gold);
      box-shadow: 0 8px 20px rgba(246, 199, 107, .22);
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 18px;
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      font-weight: 900;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      position: relative;
      overflow: hidden;
    }

    .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      transform: translateX(-110%);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
      transition: transform .45s ease;
    }

    .btn:hover::after {
      transform: translateX(110%);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--rose), var(--rose-2));
      color: #fff;
      box-shadow: var(--shadow-hot);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(255, 47, 125, .38);
      outline: none;
    }

    .btn-secondary {
      border-color: rgba(255, 227, 162, .55);
      background: rgba(255,255,255,.05);
      color: var(--gold-2);
    }

    .btn-secondary:hover,
    .btn-secondary:focus {
      border-color: var(--gold);
      background: rgba(246, 199, 107, .14);
      transform: translateY(-2px);
      outline: none;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.05);
      color: #fff;
      align-items: center;
      justify-content: center;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      width: 20px;
      height: 2px;
      display: block;
      background: currentColor;
      border-radius: 999px;
      transition: transform .2s ease, opacity .2s ease;
    }

    .menu-toggle {
      flex-direction: column;
      gap: 5px;
    }

    .menu-toggle.is-open span {
      opacity: 0;
    }

    .menu-toggle.is-open::before {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open::after {
      transform: translateY(-7px) rotate(-45deg);
    }

    .category-hero {
      position: relative;
      min-height: 560px;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(rgba(10,5,8,.66), rgba(10,5,8,.82)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 90px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 84px),
        radial-gradient(circle at 70% 28%, rgba(255,47,125,.38), transparent 32%),
        linear-gradient(135deg, #2a0712, #11050a 55%, #3a101c);
    }

    .category-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, transparent 0 46%, rgba(246,199,107,.26) 46% 47%, transparent 47% 100%),
        linear-gradient(28deg, transparent 0 58%, rgba(255,47,125,.24) 58% 59%, transparent 59% 100%);
      opacity: .8;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      min-height: 560px;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
      gap: 36px;
      align-items: center;
      padding: 72px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 11px;
      border: 1px solid rgba(246,199,107,.34);
      border-radius: 999px;
      background: rgba(246,199,107,.1);
      color: var(--gold-2);
      font-weight: 800;
      font-size: 14px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 820px;
      margin: 18px 0 16px;
      font-size: clamp(34px, 5vw, 66px);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .hero-summary {
      max-width: 760px;
      color: #f0d8df;
      font-size: 18px;
      margin-bottom: 26px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .video-panel {
      min-height: 350px;
      border: 1px solid rgba(255, 227, 162, .28);
      border-radius: var(--radius);
      background:
        linear-gradient(160deg, rgba(255,47,125,.18), rgba(0,0,0,.2)),
        radial-gradient(circle at 20% 18%, rgba(246,199,107,.28), transparent 28%),
        #1b0b12;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      padding: 22px;
    }

    .video-panel::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px dashed rgba(255,255,255,.18);
      border-radius: var(--radius-sm);
      pointer-events: none;
    }

    .play-button {
      position: absolute;
      left: 50%;
      top: 45%;
      transform: translate(-50%, -50%);
      width: 76px;
      height: 76px;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 999px;
      background: var(--rose);
      color: #fff;
      display: grid;
      place-items: center;
      box-shadow: 0 18px 48px rgba(255,47,125,.45);
    }

    .play-button::before {
      content: "";
      width: 0;
      height: 0;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      border-left: 19px solid #fff;
      margin-left: 5px;
    }

    .panel-caption {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      display: grid;
      gap: 10px;
    }

    .caption-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border-radius: var(--radius-sm);
      background: rgba(0,0,0,.52);
      border: 1px solid rgba(255,255,255,.12);
    }

    .caption-row strong {
      color: var(--gold-2);
    }

    main {
      background:
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 38%),
        var(--bg);
    }

    .section {
      padding: 76px 0;
    }

    .section-title {
      max-width: 780px;
      margin-bottom: 28px;
    }

    .section-title h2 {
      margin-bottom: 10px;
      font-size: clamp(26px, 3.2vw, 42px);
      line-height: 1.16;
      letter-spacing: 0;
    }

    .section-title p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .toolbar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.045);
      box-shadow: 0 10px 34px rgba(0,0,0,.22);
    }

    .segment,
    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .seg-btn,
    .tag {
      min-height: 40px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      color: var(--muted);
      padding: 8px 13px;
      font-weight: 800;
      transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    }

    .seg-btn:hover,
    .tag:hover,
    .seg-btn:focus,
    .tag:focus {
      color: #fff;
      border-color: var(--rose);
      transform: translateY(-1px);
      outline: none;
    }

    .seg-btn.active,
    .tag.selected {
      background: var(--rose);
      color: #fff;
      border-color: var(--rose);
      box-shadow: 0 10px 24px rgba(255,47,125,.22);
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 24px;
      align-items: start;
      margin-top: 24px;
    }

    .entry-list {
      display: grid;
      gap: 14px;
    }

    .entry-card {
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 20px;
      border: 1px solid rgba(255,255,255,.1);
      border-left: 4px solid var(--gold);
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
      box-shadow: 0 14px 34px rgba(0,0,0,.22);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255,47,125,.5);
      box-shadow: 0 18px 44px rgba(0,0,0,.3);
      background: linear-gradient(135deg, rgba(255,47,125,.11), rgba(255,255,255,.04));
    }

    .entry-no {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: var(--radius-sm);
      color: var(--text-dark);
      background: var(--gold);
      font-weight: 950;
      font-size: 18px;
    }

    .entry-card h3 {
      margin-bottom: 7px;
      font-size: 21px;
      line-height: 1.28;
    }

    .entry-card p {
      margin-bottom: 10px;
      color: var(--muted);
    }

    .mini-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .mini-tags span,
    .status-badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 4px 9px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      border: 1px solid rgba(255,255,255,.12);
      color: var(--gold-2);
      background: rgba(246,199,107,.09);
    }

    .status-badge {
      color: #fff;
      background: rgba(255,47,125,.16);
      border-color: rgba(255,47,125,.36);
      white-space: nowrap;
    }

    .side-panel {
      display: grid;
      gap: 14px;
      position: sticky;
      top: 104px;
    }

    .notice-card,
    .progress-card {
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(246,199,107,.12), rgba(255,255,255,.04));
      box-shadow: 0 12px 34px rgba(0,0,0,.22);
    }

    .notice-card h3,
    .progress-card h3 {
      margin-bottom: 10px;
      color: var(--gold-2);
      font-size: 19px;
    }

    .notice-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
      color: var(--muted);
    }

    .notice-list li {
      padding-left: 18px;
      position: relative;
    }

    .notice-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .78em;
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--rose);
      box-shadow: 0 0 0 4px rgba(255,47,125,.14);
    }

    .progress-line {
      height: 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.1);
      overflow: hidden;
      margin: 16px 0 10px;
    }

    .progress-line span {
      display: block;
      width: 76%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--rose), var(--gold));
      animation: barGlow 2.8s ease-in-out infinite;
    }

    @keyframes barGlow {
      0%, 100% { filter: brightness(1); }
      50% { filter: brightness(1.24); }
    }

    .route-section {
      background: var(--soft);
      color: var(--text-dark);
    }

    .route-section .section-title p {
      color: #65404c;
    }

    .route-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 24px;
      align-items: stretch;
    }

    .route-map {
      min-height: 360px;
      border-radius: var(--radius);
      border: 1px solid #ead7bc;
      background:
        linear-gradient(90deg, rgba(215,15,89,.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(215,15,89,.06) 1px, transparent 1px),
        linear-gradient(135deg, #fffaf3, #ffe8d8);
      background-size: 54px 54px;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .route-map::after {
      content: "";
      position: absolute;
      left: 42px;
      right: 42px;
      top: 50%;
      height: 4px;
      background: linear-gradient(90deg, var(--rose), var(--gold), var(--coral));
      transform: rotate(-8deg);
      opacity: .8;
    }

    .node {
      position: absolute;
      width: min(220px, 42%);
      padding: 14px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid #ead0bc;
      box-shadow: 0 14px 28px rgba(80,36,44,.12);
      z-index: 1;
    }

    .node strong {
      display: block;
      color: var(--rose-2);
      margin-bottom: 4px;
    }

    .node span {
      color: #6d4550;
      font-size: 14px;
    }

    .node.one { left: 24px; top: 28px; }
    .node.two { right: 34px; top: 120px; }
    .node.three { left: 86px; bottom: 34px; }

    .benefit-stack {
      display: grid;
      gap: 12px;
    }

    .benefit-item {
      padding: 20px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid #ead7bc;
      box-shadow: 0 12px 26px rgba(80,36,44,.1);
    }

    .benefit-item h3 {
      margin-bottom: 6px;
      color: #35111d;
    }

    .benefit-item p {
      margin-bottom: 0;
      color: #684650;
    }

    .claim-band {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,47,125,.92), rgba(42,7,18,.95) 58%, rgba(246,199,107,.88));
    }

    .claim-box {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(320px, .65fr);
      gap: 28px;
      align-items: center;
      padding: 34px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(0,0,0,.22);
      box-shadow: var(--shadow);
    }

    .claim-box h2 {
      font-size: clamp(26px, 3.6vw, 44px);
      line-height: 1.16;
      margin-bottom: 12px;
    }

    .claim-box p {
      color: #ffe8ef;
    }

    .claim-form {
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.96);
      color: var(--text-dark);
      border: 1px solid rgba(255,255,255,.45);
    }

    .form-row {
      display: grid;
      gap: 6px;
    }

    .form-row label {
      font-weight: 800;
      color: #3a1420;
    }

    .form-row input,
    .form-row textarea {
      width: 100%;
      min-height: 44px;
      border: 1px solid #e0c6c5;
      border-radius: var(--radius-sm);
      padding: 10px 12px;
      background: #fffaf8;
      color: #2a1019;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .form-row textarea {
      min-height: 88px;
      resize: vertical;
    }

    .form-row input:focus,
    .form-row textarea:focus {
      outline: none;
      border-color: var(--rose);
      box-shadow: 0 0 0 4px rgba(255,47,125,.16);
    }

    .form-hint {
      display: none;
      padding: 9px 10px;
      border-radius: var(--radius-sm);
      background: #fff2d1;
      color: #5b3512;
      font-weight: 700;
    }

    .form-hint.show {
      display: block;
    }

    .faq-section {
      background:
        radial-gradient(circle at 18% 8%, rgba(246,199,107,.14), transparent 26%),
        #13070c;
    }

    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 920px;
    }

    .faq-item {
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      background: rgba(255,255,255,.055);
      overflow: hidden;
      transition: border-color .2s ease, background .2s ease;
    }

    .faq-item.active {
      border-color: rgba(255,47,125,.55);
      background: rgba(255,47,125,.08);
    }

    .faq-question {
      width: 100%;
      min-height: 54px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      border: 0;
      background: transparent;
      color: #fff;
      text-align: left;
      font-weight: 900;
    }

    .faq-question:focus {
      outline: 3px solid rgba(246,199,107,.36);
      outline-offset: -3px;
    }

    .faq-icon {
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(246,199,107,.18);
      color: var(--gold-2);
      flex: 0 0 auto;
      transition: transform .2s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      background: var(--rose);
      color: #fff;
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px 18px;
      color: var(--muted);
      border-left: 4px solid var(--rose);
      margin-left: 18px;
      margin-bottom: 16px;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .site-footer {
      position: relative;
      padding: 58px 0 26px;
      background:
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px),
        #080407;
      background-size: 70px 70px;
      border-top: 1px solid rgba(255,255,255,.1);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .7fr .7fr;
      gap: 34px;
      margin-bottom: 28px;
    }

    .footer-col p {
      max-width: 460px;
      color: var(--muted);
      margin: 14px 0 0;
    }

    .footer-col h3 {
      color: var(--gold-2);
      margin-bottom: 12px;
      font-size: 17px;
    }

    .footer-col a:not(.footer-brand) {
      display: block;
      color: var(--muted);
      padding: 5px 0;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-col a:not(.footer-brand):hover,
    .footer-col a:not(.footer-brand):focus {
      color: #fff;
      transform: translateX(2px);
      outline: none;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.09);
      color: #bfa7af;
      font-size: 14px;
    }

    @media (max-width: 1024px) {
      .hero-inner,
      .route-grid,
      .claim-box {
        grid-template-columns: 1fr;
      }

      .content-layout {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .nav-wrap {
        flex-wrap: wrap;
      }

      .nav-actions {
        margin-left: auto;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .countdown-inner {
        padding: 9px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      .site-header {
        top: 0;
      }

      .nav-wrap {
        min-height: 70px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-actions {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 14px;
      }

      .nav-actions.is-open {
        display: flex;
      }

      .nav-links {
        flex-direction: column;
        align-items: stretch;
      }

      .nav-links a,
      .nav-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .category-hero,
      .hero-inner {
        min-height: auto;
      }

      .hero-inner {
        padding: 52px 0;
      }

      .hero-buttons,
      .claim-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .video-panel {
        min-height: 310px;
      }

      .section {
        padding: 56px 0;
      }

      .toolbar {
        align-items: stretch;
      }

      .segment,
      .tag-row {
        width: 100%;
      }

      .entry-card {
        grid-template-columns: 44px minmax(0, 1fr);
      }

      .entry-card .btn {
        grid-column: 1 / -1;
      }

      .entry-no {
        width: 42px;
        height: 42px;
      }

      .side-panel {
        grid-template-columns: 1fr;
      }

      .node {
        position: relative;
        width: auto;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin-bottom: 12px;
      }

      .route-map {
        min-height: auto;
      }

      .route-map::after {
        display: none;
      }

      .claim-box {
        padding: 22px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 375px) {
      h1 {
        font-size: 30px;
      }

      .brand span:last-child,
      .footer-brand span:last-child {
        max-width: 168px;
      }

      .caption-row {
        align-items: flex-start;
        flex-direction: column;
      }

      .time-pills span {
        min-width: 34px;
      }
    }
