/* roulang page: index */
:root {
      --color-bg: #0b1020;
      --color-bg-soft: #11182d;
      --color-surface: #ffffff;
      --color-surface-2: #f7f8fc;
      --color-card: rgba(255, 255, 255, .92);
      --color-primary: #ff6b3d;
      --color-primary-dark: #e84e22;
      --color-secondary: #8b5cf6;
      --color-accent: #25d0ab;
      --color-warning: #ffd166;
      --color-text: #172033;
      --color-muted: #667085;
      --color-light: #f4f6fb;
      --color-border: rgba(23, 32, 51, .11);
      --shadow-sm: 0 8px 24px rgba(18, 25, 38, .08);
      --shadow-md: 0 18px 45px rgba(18, 25, 38, .14);
      --shadow-lg: 0 28px 70px rgba(18, 25, 38, .22);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --radius-xl: 36px;
      --container: 1180px;
      --ease: all .25s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
      color: var(--color-text);
      line-height: 1.75;
      background:
        radial-gradient(circle at top left, rgba(255, 107, 61, .16), transparent 32rem),
        radial-gradient(circle at 80% 10%, rgba(139, 92, 246, .15), transparent 30rem),
        linear-gradient(180deg, #fbfbfe 0%, #f3f5fb 46%, #ffffff 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    a:hover,
    a:focus {
      color: var(--color-primary);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    button,
    .button {
      cursor: pointer;
      border: 0;
    }

    :focus-visible {
      outline: 3px solid rgba(255, 107, 61, .35);
      outline-offset: 3px;
      border-radius: 10px;
    }

    .site-wrap {
      min-height: 100vh;
    }

    .container {
      width: min(var(--container), calc(100% - 36px));
      margin: 0 auto;
    }

    .top-countdown {
      background: linear-gradient(90deg, #261345, #11182d 42%, #2a1539);
      color: #fff;
      font-size: 14px;
      letter-spacing: .02em;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .top-countdown .inner {
      width: min(var(--container), calc(100% - 36px));
      margin: 0 auto;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      padding: 8px 0;
    }

    .count-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.1);
      color: #fff;
      font-weight: 700;
    }

    .count-badge i {
      color: var(--color-warning);
    }

    .count-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,.82);
    }

    .count-meta strong {
      color: #fff;
      font-variant-numeric: tabular-nums;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(23, 32, 51, .08);
      box-shadow: 0 10px 30px rgba(18,25,38,.05);
    }

    .nav-shell {
      width: min(var(--container), calc(100% - 36px));
      min-height: 76px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      background:
        radial-gradient(circle at 65% 28%, rgba(255,255,255,.9) 0 9%, transparent 10%),
        linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      box-shadow: 0 14px 26px rgba(255, 107, 61, .24);
      position: relative;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 10px;
      height: 6px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
    }

    .brand-name {
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -.02em;
      color: #111827;
      line-height: 1.1;
    }

    .brand-sub {
      display: block;
      margin-top: 3px;
      font-size: 12px;
      font-weight: 600;
      color: var(--color-muted);
    }

    .nav-main {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex: 1;
    }

    .nav-link {
      padding: 10px 16px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 700;
      color: #283247;
    }

    .nav-link:hover {
      background: rgba(255, 107, 61, .1);
      color: var(--color-primary-dark);
    }

    .nav-link.active {
      background: #11182d;
      color: #fff;
      box-shadow: 0 10px 24px rgba(17, 24, 45, .18);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .location-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 13px;
      border-radius: 999px;
      border: 1px solid var(--color-border);
      background: #fff;
      color: #2a3348;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .location-pill:hover {
      border-color: rgba(255,107,61,.35);
      transform: translateY(-1px);
      box-shadow: var(--shadow-sm);
    }

    .search-mini {
      width: 190px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 13px;
      border-radius: 999px;
      background: var(--color-surface-2);
      border: 1px solid transparent;
      color: var(--color-muted);
      transition: var(--ease);
    }

    .search-mini:focus-within {
      background: #fff;
      border-color: rgba(255, 107, 61, .38);
      box-shadow: 0 0 0 4px rgba(255, 107, 61, .08);
    }

    .search-mini input {
      width: 100%;
      border: 0;
      background: transparent;
      box-shadow: none;
      margin: 0;
      padding: 0;
      height: auto;
      color: var(--color-text);
      font-size: 14px;
    }

    .search-mini input:focus {
      box-shadow: none;
      border: 0;
      background: transparent;
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: #11182d;
      color: #fff;
      align-items: center;
      justify-content: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 800;
      line-height: 1;
      border: 1px solid transparent;
      transition: var(--ease);
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--color-primary), #ff8f57);
      color: #fff;
      box-shadow: 0 15px 30px rgba(255, 107, 61, .28);
    }

    .btn-primary:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(255, 107, 61, .34);
    }

    .btn-dark {
      background: #11182d;
      color: #fff;
      box-shadow: 0 14px 28px rgba(17,24,45,.22);
    }

    .btn-dark:hover {
      color: #fff;
      background: #1b2542;
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: rgba(255,255,255,.78);
      color: #172033;
      border-color: rgba(23, 32, 51, .12);
    }

    .btn-ghost:hover {
      background: #fff;
      border-color: rgba(255,107,61,.35);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255, 107, 61, .11);
      color: var(--color-primary-dark);
      font-size: 13px;
      font-weight: 800;
    }

    .badge.purple {
      background: rgba(139, 92, 246, .12);
      color: #6d45d8;
    }

    .badge.green {
      background: rgba(37, 208, 171, .13);
      color: #0d9479;
    }

    .badge.dark {
      background: rgba(17,24,45,.08);
      color: #11182d;
    }

    main {
      overflow: hidden;
    }

    section {
      position: relative;
      padding: 78px 0;
    }

    .hero {
      padding: 38px 0 82px;
    }

    .creator-cover {
      position: relative;
      min-height: 620px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      background:
        linear-gradient(110deg, rgba(11,16,32,.92), rgba(24,25,54,.62) 48%, rgba(255,107,61,.16)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1280' height='720' viewBox='0 0 1280 720'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23201b3f'/%3E%3Cstop offset='.5' stop-color='%2337254e'/%3E%3Cstop offset='1' stop-color='%23ff6b3d'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1280' height='720' fill='url(/%23g)'/%3E%3Ccircle cx='1000' cy='130' r='210' fill='%238b5cf6' opacity='.35'/%3E%3Ccircle cx='1080' cy='560' r='240' fill='%23ff6b3d' opacity='.24'/%3E%3Cg opacity='.18' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M80 130h240v140H80zM370 92h160v250H370zM590 145h260v132H590zM910 250h250v170H910zM140 420h310v160H140zM520 380h250v220H520z'/%3E%3C/g%3E%3Cg fill='%23fff' opacity='.18'%3E%3Ccircle cx='188' cy='205' r='18'/%3E%3Ccircle cx='640' cy='210' r='24'/%3E%3Ccircle cx='1002' cy='334' r='19'/%3E%3C/g%3E%3C/svg%3E") center/cover;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255,255,255,.16);
    }

    .creator-cover::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 16% 22%, rgba(255,255,255,.18), transparent 17rem),
        linear-gradient(180deg, transparent 0%, rgba(11,16,32,.78) 100%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      min-height: 620px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 38px;
      color: #fff;
    }

    .creator-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .creator-profile {
      display: flex;
      align-items: center;
      gap: 16px;
      max-width: 680px;
    }

    .avatar {
      width: 78px;
      height: 78px;
      border-radius: 24px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #fff, #ffe0d4);
      color: var(--color-primary-dark);
      font-size: 30px;
      font-weight: 950;
      box-shadow: 0 18px 40px rgba(0,0,0,.25);
      border: 3px solid rgba(255,255,255,.42);
      flex: 0 0 auto;
    }

    .creator-name {
      margin: 0;
      font-size: clamp(18px, 2.4vw, 24px);
      font-weight: 950;
      letter-spacing: -.02em;
    }

    .creator-desc {
      margin: 6px 0 0;
      color: rgba(255,255,255,.76);
      font-size: 14px;
    }

    .follow-box {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.11);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(12px);
    }

    .follow-box .mini-avatars {
      display: flex;
      margin-left: 4px;
    }

    .mini-avatars span {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      margin-left: -7px;
      display: grid;
      place-items: center;
      border: 2px solid rgba(255,255,255,.75);
      background: linear-gradient(135deg, #ff9a62, #8b5cf6);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
    }

    .hero-main {
      max-width: 850px;
      margin-top: 80px;
    }

    .hero h1 {
      max-width: 820px;
      margin: 18px 0 18px;
      color: #fff;
      font-size: clamp(34px, 5.5vw, 72px);
      line-height: 1.05;
      letter-spacing: -.055em;
      font-weight: 950;
    }

    .hero-lead {
      max-width: 760px;
      margin: 0 0 28px;
      font-size: clamp(16px, 2vw, 20px);
      color: rgba(255,255,255,.82);
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 13px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 38px;
      max-width: 860px;
    }

    .stat-chip {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(14px);
    }

    .stat-chip strong {
      display: block;
      color: #fff;
      font-size: 28px;
      line-height: 1.1;
      font-weight: 950;
    }

    .stat-chip span {
      display: block;
      margin-top: 8px;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      font-weight: 700;
    }

    .hero-float {
      position: absolute;
      right: 34px;
      bottom: 34px;
      z-index: 2;
      width: 330px;
      padding: 18px;
      border-radius: 26px;
      background: rgba(255,255,255,.9);
      color: var(--color-text);
      box-shadow: 0 28px 70px rgba(0,0,0,.24);
      border: 1px solid rgba(255,255,255,.55);
    }

    .signal-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(23,32,51,.08);
    }

    .signal-row:last-child {
      border-bottom: 0;
    }

    .signal-row b {
      display: block;
      font-size: 15px;
    }

    .signal-row small {
      color: var(--color-muted);
      font-weight: 650;
    }

    .signal-row em {
      font-style: normal;
      color: var(--color-primary-dark);
      font-weight: 950;
    }

    .section-head {
      margin-bottom: 30px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
    }

    .section-kicker {
      margin-bottom: 10px;
      color: var(--color-primary-dark);
      font-size: 14px;
      font-weight: 950;
      letter-spacing: .08em;
    }

    .section-title {
      margin: 0;
      font-size: clamp(26px, 3.3vw, 42px);
      line-height: 1.18;
      letter-spacing: -.035em;
      font-weight: 950;
      color: #111827;
    }

    .section-desc {
      max-width: 640px;
      margin: 12px 0 0;
      color: var(--color-muted);
      font-size: 16px;
    }

    .play-guide {
      background: transparent;
    }

    .guide-layout {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .guide-panel {
      border-radius: var(--radius-lg);
      padding: 30px;
      background: #11182d;
      color: #fff;
      box-shadow: var(--shadow-md);
      overflow: hidden;
      position: relative;
    }

    .guide-panel::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -90px;
      bottom: -90px;
      border-radius: 50%;
      background: rgba(255,107,61,.22);
    }

    .guide-panel h2 {
      position: relative;
      z-index: 1;
      margin: 16px 0 14px;
      font-size: 34px;
      font-weight: 950;
      line-height: 1.18;
      color: #fff;
    }

    .guide-panel p {
      position: relative;
      z-index: 1;
      color: rgba(255,255,255,.78);
      margin-bottom: 22px;
    }

    .guide-steps {
      display: grid;
      gap: 14px;
    }

    .step-card {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      padding: 20px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
      transition: var(--ease);
    }

    .step-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: rgba(255,107,61,.28);
    }

    .step-no {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(255,107,61,.14), rgba(139,92,246,.14));
      color: var(--color-primary-dark);
      font-size: 18px;
      font-weight: 950;
    }

    .step-card h3 {
      margin: 0 0 6px;
      font-size: 18px;
      font-weight: 950;
      color: #111827;
    }

    .step-card p {
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .reward-section {
      background: linear-gradient(180deg, rgba(255,255,255,.68), rgba(247,248,252,.95));
    }

    .reward-wall {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 22px;
    }

    .reward-feature {
      min-height: 360px;
      border-radius: var(--radius-lg);
      padding: 32px;
      background:
        linear-gradient(135deg, rgba(255,107,61,.94), rgba(139,92,246,.92)),
        radial-gradient(circle at top right, rgba(255,255,255,.34), transparent 22rem);
      color: #fff;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .reward-feature::before {
      content: "";
      position: absolute;
      inset: 22px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 24px;
      pointer-events: none;
    }

    .reward-feature h3 {
      position: relative;
      margin: 0 0 12px;
      color: #fff;
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 950;
      line-height: 1.16;
    }

    .reward-feature p {
      position: relative;
      max-width: 560px;
      color: rgba(255,255,255,.83);
      margin-bottom: 24px;
    }

    .reward-tags {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .reward-tags span {
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.22);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
    }

    .reward-cards {
      display: grid;
      gap: 16px;
    }

    .reward-card {
      padding: 22px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
      transition: var(--ease);
    }

    .reward-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .reward-card i {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: rgba(255,107,61,.12);
      color: var(--color-primary-dark);
      font-size: 18px;
      margin-bottom: 14px;
    }

    .reward-card h3 {
      margin: 0 0 6px;
      font-size: 18px;
      font-weight: 950;
    }

    .reward-card p {
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
    }

    .progress-board {
      padding-top: 72px;
      background: #fff;
    }

    .board {
      border-radius: var(--radius-xl);
      padding: 28px;
      background: #11182d;
      color: #fff;
      box-shadow: var(--shadow-lg);
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
    }

    .board-copy h2 {
      color: #fff;
      font-size: clamp(26px, 3.2vw, 40px);
      font-weight: 950;
      line-height: 1.2;
      margin: 8px 0 12px;
    }

    .board-copy p {
      color: rgba(255,255,255,.74);
      margin-bottom: 22px;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .metric-card {
      padding: 20px;
      border-radius: 22px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.13);
    }

    .metric-card strong {
      display: block;
      font-size: 30px;
      line-height: 1.1;
      font-weight: 950;
      color: #fff;
    }

    .metric-card span {
      display: block;
      margin-top: 8px;
      color: rgba(255,255,255,.66);
      font-size: 13px;
      font-weight: 700;
    }

    .progress-list {
      display: grid;
      gap: 16px;
      padding: 22px;
      border-radius: 28px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .progress-item {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.92);
      color: var(--color-text);
    }

    .progress-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 10px;
      font-weight: 950;
    }

    .progress-top span:last-child {
      color: var(--color-primary-dark);
    }

    .bar {
      height: 10px;
      border-radius: 999px;
      background: rgba(23,32,51,.09);
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    }

    .hot-section {
      background: #f7f8fc;
    }

    .hot-layout {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 22px;
    }

    .hot-big {
      border-radius: var(--radius-lg);
      min-height: 430px;
      padding: 28px;
      background:
        linear-gradient(180deg, rgba(17,24,45,.16), rgba(17,24,45,.9)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='620' viewBox='0 0 900 620'%3E%3Crect width='900' height='620' fill='%23222a44'/%3E%3Ccircle cx='720' cy='120' r='190' fill='%23ff6b3d' opacity='.38'/%3E%3Ccircle cx='220' cy='420' r='230' fill='%238b5cf6' opacity='.28'/%3E%3Cg fill='%23fff' opacity='.16'%3E%3Crect x='82' y='80' width='210' height='310' rx='26'/%3E%3Crect x='340' y='125' width='180' height='250' rx='24'/%3E%3Crect x='570' y='215' width='220' height='280' rx='28'/%3E%3C/g%3E%3C/svg%3E") center/cover;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .hot-big h2 {
      max-width: 560px;
      margin: 14px 0 10px;
      color: #fff;
      font-size: clamp(25px, 3vw, 38px);
      line-height: 1.18;
      font-weight: 950;
    }

    .hot-big p {
      max-width: 610px;
      color: rgba(255,255,255,.78);
      margin-bottom: 20px;
    }

    .hot-small-list {
      display: grid;
      gap: 16px;
    }

    .hot-small {
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 16px;
      padding: 16px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
      transition: var(--ease);
    }

    .hot-small:hover {
      transform: translateX(3px);
      box-shadow: var(--shadow-md);
      border-color: rgba(255,107,61,.28);
    }

    .poster {
      width: 92px;
      height: 118px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(255,107,61,.88), rgba(139,92,246,.9));
      position: relative;
      overflow: hidden;
    }

    .poster::after {
      content: "";
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 16px;
      height: 9px;
      border-radius: 999px;
      background: rgba(255,255,255,.52);
      box-shadow: 0 -28px 0 rgba(255,255,255,.18), 0 -56px 0 rgba(255,255,255,.1);
    }

    .hot-small h3 {
      margin: 2px 0 6px;
      font-size: 17px;
      font-weight: 950;
    }

    .hot-small p {
      margin: 0 0 10px;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--color-primary-dark);
      font-weight: 900;
      font-size: 14px;
    }

    .text-link:hover {
      gap: 10px;
      color: var(--color-secondary);
    }

    .news-section {
      background: #fff;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 26px;
      align-items: start;
    }

    .news-list,
    .recommend-side,
    .directory-card,
    .faq-card,
    .form-card {
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
    }

    .news-list {
      overflow: hidden;
    }

    .news-item {
      display: grid;
      grid-template-columns: 110px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 22px;
      border-bottom: 1px solid rgba(23,32,51,.08);
      transition: var(--ease);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-item:hover {
      background: #fff8f5;
    }

    .news-date {
      padding: 12px;
      border-radius: 18px;
      text-align: center;
      background: var(--color-surface-2);
      color: var(--color-muted);
      font-weight: 800;
      line-height: 1.3;
    }

    .news-date strong {
      display: block;
      color: #111827;
      font-size: 22px;
      font-weight: 950;
    }

    .news-item h3 {
      margin: 0 0 6px;
      font-size: 18px;
      font-weight: 950;
    }

    .news-item p {
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .recommend-side {
      padding: 24px;
      position: sticky;
      top: 100px;
    }

    .recommend-side h3 {
      margin: 0 0 16px;
      font-size: 20px;
      font-weight: 950;
    }

    .rank-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .rank-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 16px;
      background: var(--color-surface-2);
      transition: var(--ease);
    }

    .rank-list li:hover {
      background: #fff0e9;
      transform: translateX(2px);
    }

    .rank-no {
      width: 30px;
      height: 30px;
      border-radius: 11px;
      display: grid;
      place-items: center;
      background: #11182d;
      color: #fff;
      font-size: 13px;
      font-weight: 950;
      flex: 0 0 auto;
    }

    .rank-list b {
      display: block;
      font-size: 14px;
      line-height: 1.35;
    }

    .rank-list small {
      color: var(--color-muted);
      font-weight: 700;
    }

    .directory-section {
      background:
        radial-gradient(circle at 15% 10%, rgba(37,208,171,.14), transparent 28rem),
        #f7f8fc;
    }

    .directory-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .directory-card {
      padding: 22px;
      transition: var(--ease);
    }

    .directory-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(37,208,171,.32);
    }

    .directory-icon {
      width: 50px;
      height: 50px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(37,208,171,.16), rgba(139,92,246,.14));
      color: #0d9479;
      font-size: 20px;
      margin-bottom: 16px;
    }

    .directory-card h3 {
      margin: 0 0 7px;
      font-size: 18px;
      font-weight: 950;
    }

    .directory-card p {
      min-height: 50px;
      margin: 0 0 14px;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .directory-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 800;
    }

    .channel-section {
      background: #fff;
    }

    .channel-layout {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 24px;
      align-items: start;
    }

    .question-box {
      padding: 28px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, #11182d, #241b45);
      color: #fff;
      box-shadow: var(--shadow-md);
    }

    .question-box h2 {
      color: #fff;
      font-size: 30px;
      font-weight: 950;
      line-height: 1.2;
      margin: 10px 0 12px;
    }

    .question-box p {
      color: rgba(255,255,255,.75);
      margin-bottom: 20px;
    }

    .answer-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .answer-card {
      padding: 22px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
      transition: var(--ease);
    }

    .answer-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .answer-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 950;
    }

    .answer-card p {
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .faq-section {
      background: linear-gradient(180deg, #f7f8fc, #fff);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: start;
    }

    .faq-card {
      padding: 22px;
    }

    .accordion {
      margin: 0;
      background: transparent;
      border: 0;
    }

    .accordion-item {
      border-bottom: 1px solid rgba(23,32,51,.08);
    }

    .accordion-item:last-child {
      border-bottom: 0;
    }

    .accordion-title {
      border: 0;
      padding: 20px 46px 20px 0;
      color: #111827;
      font-size: 17px;
      font-weight: 950;
      background: transparent;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: transparent;
      color: var(--color-primary-dark);
    }

    .accordion-title::before {
      right: 8px;
      color: var(--color-primary);
      font-size: 20px;
      margin-top: -12px;
    }

    .accordion-content {
      border: 0;
      padding: 0 0 20px;
      color: var(--color-muted);
      line-height: 1.8;
      background: transparent;
    }

    .trust-strip {
      display: grid;
      gap: 14px;
    }

    .trust-item {
      display: flex;
      gap: 14px;
      padding: 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
    }

    .trust-item i {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: rgba(139,92,246,.12);
      color: var(--color-secondary);
      flex: 0 0 auto;
    }

    .trust-item b {
      display: block;
      margin-bottom: 4px;
      font-size: 16px;
    }

    .trust-item span {
      display: block;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .join-section {
      padding-bottom: 90px;
      background: #fff;
    }

    .join-panel {
      display: grid;
      grid-template-columns: 1fr .82fr;
      gap: 24px;
      align-items: stretch;
      border-radius: var(--radius-xl);
      padding: 28px;
      background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,.2), transparent 18rem),
        linear-gradient(135deg, #11182d, #271848 58%, #432039);
      color: #fff;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .join-copy {
      padding: 14px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .join-copy h2 {
      margin: 12px 0 14px;
      color: #fff;
      font-size: clamp(28px, 3.8vw, 48px);
      line-height: 1.12;
      font-weight: 950;
      letter-spacing: -.04em;
    }

    .join-copy p {
      max-width: 680px;
      color: rgba(255,255,255,.76);
      margin-bottom: 24px;
    }

    .form-card {
      padding: 24px;
      background: rgba(255,255,255,.94);
      color: var(--color-text);
    }

    .form-card h3 {
      margin: 0 0 8px;
      font-size: 22px;
      font-weight: 950;
    }

    .form-card p {
      margin: 0 0 16px;
      color: var(--color-muted);
      font-size: 14px;
    }

    .input-group-custom {
      display: grid;
      gap: 12px;
      margin-bottom: 14px;
    }

    .input-group-custom label {
      font-size: 13px;
      font-weight: 900;
      color: #2a3348;
    }

    .input-group-custom input,
    .input-group-custom textarea {
      width: 100%;
      border: 1px solid rgba(23,32,51,.12);
      border-radius: 16px;
      background: #fff;
      box-shadow: none;
      padding: 13px 14px;
      margin: 0;
      color: var(--color-text);
      transition: var(--ease);
    }

    .input-group-custom textarea {
      min-height: 88px;
      resize: vertical;
    }

    .input-group-custom input:focus,
    .input-group-custom textarea:focus {
      border-color: rgba(255,107,61,.5);
      box-shadow: 0 0 0 4px rgba(255,107,61,.08);
    }

    .form-note {
      margin-top: 12px;
      color: var(--color-muted);
      font-size: 12px;
      line-height: 1.6;
    }

    .site-footer {
      background: #080d19;
      color: rgba(255,255,255,.76);
      padding: 48px 0 26px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .footer-brand {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .footer-brand .brand-mark {
      width: 42px;
      height: 42px;
      box-shadow: none;
    }

    .footer-brand b {
      display: block;
      color: #fff;
      font-size: 20px;
      font-weight: 950;
    }

    .footer-brand span {
      display: block;
      margin-top: 4px;
      color: rgba(255,255,255,.58);
      font-size: 13px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 12px;
    }

    .footer-links a {
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.72);
      font-weight: 700;
      font-size: 13px;
    }

    .footer-links a:hover {
      background: rgba(255,107,61,.18);
      color: #fff;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 22px;
      color: rgba(255,255,255,.52);
      font-size: 13px;
    }

    .floating-cta {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      z-index: 45;
      width: min(720px, calc(100% - 28px));
      padding: 10px;
      border-radius: 999px;
      background: rgba(17,24,45,.9);
      color: #fff;
      box-shadow: 0 20px 50px rgba(0,0,0,.28);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .floating-cta span {
      padding-left: 14px;
      font-weight: 800;
      font-size: 14px;
      color: rgba(255,255,255,.84);
    }

    @media (max-width: 1024px) {
      .search-mini {
        display: none;
      }

      .creator-cover,
      .hero-content {
        min-height: 690px;
      }

      .hero-float {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 28px;
      }

      .hero-main {
        margin-top: 64px;
      }

      .guide-layout,
      .reward-wall,
      .board,
      .hot-layout,
      .news-layout,
      .channel-layout,
      .faq-grid,
      .join-panel {
        grid-template-columns: 1fr;
      }

      .directory-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .recommend-side {
        position: static;
      }
    }

    @media (max-width: 768px) {
      .top-countdown .inner {
        justify-content: center;
        text-align: center;
      }

      .nav-shell {
        min-height: 68px;
      }

      .nav-main {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 112px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255,255,255,.96);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--color-border);
      }

      .nav-main.is-open {
        display: flex;
      }

      .nav-link {
        width: 100%;
        text-align: center;
      }

      .mobile-toggle {
        display: inline-flex;
      }

      .location-pill span {
        display: none;
      }

      section {
        padding: 58px 0;
      }

      .hero {
        padding-top: 24px;
      }

      .hero-content {
        padding: 24px;
      }

      .creator-profile {
        align-items: flex-start;
      }

      .avatar {
        width: 62px;
        height: 62px;
        border-radius: 20px;
        font-size: 24px;
      }

      .follow-box {
        width: 100%;
        justify-content: space-between;
        border-radius: 20px;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .section-head {
        display: block;
      }

      .metric-grid,
      .answer-grid {
        grid-template-columns: 1fr;
      }

      .news-item {
        grid-template-columns: 1fr;
      }

      .news-date {
        width: 110px;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }

      .floating-cta {
        border-radius: 24px;
        align-items: stretch;
        flex-direction: column;
      }

      .floating-cta span {
        padding: 4px 8px 0;
        text-align: center;
      }

      .floating-cta .btn {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .container,
      .nav-shell,
      .top-countdown .inner {
        width: min(100% - 24px, var(--container));
      }

      .brand-name {
        font-size: 18px;
      }

      .brand-sub {
        display: none;
      }

      .creator-cover,
      .hero-content {
        min-height: auto;
      }

      .hero-main {
        margin-top: 48px;
      }

      .hero h1 {
        font-size: 34px;
      }

      .hero-lead {
        font-size: 15px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-float {
        padding: 14px;
      }

      .guide-panel,
      .reward-feature,
      .board,
      .join-panel {
        padding: 22px;
        border-radius: 26px;
      }

      .step-card,
      .hot-small {
        grid-template-columns: 1fr;
      }

      .directory-grid {
        grid-template-columns: 1fr;
      }

      .hot-big {
        min-height: 360px;
      }

      .footer-bottom {
        padding-bottom: 86px;
      }
    }
