    :root {
      --ink: #f7f7ef;
      --muted: #a7b1ad;
      --panel: rgba(13, 21, 24, 0.88);
      --panel-strong: #101a1d;
      --line: rgba(163, 255, 219, 0.34);
      --mint: #39f6b0;
      --acid: #e9ff45;
      --coral: #ff6f61;
      --cyan: #67e8f9;
      --violet: #8f7cff;
      --deep: #061013;
      --shadow: rgba(0, 0, 0, 0.36);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--ink);
      background:
        radial-gradient(circle at 18% 8%, rgba(57, 246, 176, 0.18), transparent 29%),
        radial-gradient(circle at 84% 22%, rgba(255, 111, 97, 0.18), transparent 24%),
        linear-gradient(160deg, #031013 0%, #061217 48%, #071114 100%);
      font-family: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 75%);
      z-index: 0;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.025),
        rgba(255, 255, 255, 0.025) 1px,
        transparent 1px,
        transparent 6px
      );
      mix-blend-mode: soft-light;
      opacity: 0.35;
      z-index: 0;
    }

    button,
    a {
      font: inherit;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      position: relative;
      z-index: 1;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(3, 12, 14, 0.78);
      backdrop-filter: blur(16px);
    }

    .topbar-inner {
      width: min(1120px, calc(100% - 32px));
      height: 60px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 900;
      letter-spacing: 0;
    }

    .mark {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      color: #071114;
      background: var(--acid);
      border: 2px solid var(--ink);
      box-shadow: 5px 5px 0 var(--coral);
      transform: rotate(-3deg);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .nav a:hover {
      color: var(--acid);
    }

    .hero {
      position: relative;
      min-height: 720px;
      padding: 64px 0 42px;
      overflow: hidden;
    }

    #dataCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0.9;
      z-index: -1;
    }

    .hero-inner,
    .section-inner {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
      gap: 36px;
      align-items: center;
    }

    .label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #071114;
      background: var(--acid);
      padding: 9px 13px;
      border: 2px solid var(--ink);
      box-shadow: 6px 6px 0 var(--violet);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .label::before {
      content: "";
      width: 9px;
      height: 9px;
      background: var(--coral);
      border-radius: 50%;
      box-shadow: 16px 0 0 var(--cyan);
    }

    h1 {
      margin: 30px 0 0;
      max-width: 760px;
      font-size: clamp(48px, 8vw, 94px);
      line-height: 0.94;
      letter-spacing: 0;
      font-weight: 950;
      text-wrap: balance;
    }

    .glitch {
      position: relative;
      display: inline-block;
      text-shadow: 4px 0 0 rgba(103, 232, 249, 0.7), -4px 0 0 rgba(255, 111, 97, 0.7);
    }

    .hero-copy {
      max-width: 680px;
      margin: 24px 0 0;
      color: #d7e6df;
      font-size: 20px;
      line-height: 1.72;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 19px;
      border: 2px solid var(--ink);
      border-radius: 0;
      color: #061013;
      background: var(--mint);
      box-shadow: 7px 7px 0 var(--coral);
      font-weight: 900;
      cursor: pointer;
      transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }

    .btn:hover {
      transform: translate(3px, 3px);
      box-shadow: 4px 4px 0 var(--coral);
      background: var(--acid);
    }

    .btn.secondary {
      color: var(--ink);
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 7px 7px 0 rgba(103, 232, 249, 0.55);
    }

    .hero-board {
      position: relative;
      min-height: 420px;
      border: 1px solid var(--line);
      background: rgba(6, 16, 19, 0.74);
      box-shadow: 0 24px 70px var(--shadow);
      overflow: hidden;
    }

    .hero-board::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(233, 255, 69, 0.35);
      pointer-events: none;
    }

    .pipeline {
      position: absolute;
      inset: 32px;
      display: grid;
      grid-template-rows: repeat(5, 1fr);
      gap: 15px;
    }

    .pipe-row {
      display: grid;
      grid-template-columns: 86px 1fr 58px;
      align-items: center;
      gap: 12px;
      animation: slideUp 700ms ease both;
      animation-delay: var(--delay);
    }

    .pipe-node,
    .pipe-stat {
      min-height: 45px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.07);
      color: var(--ink);
      font-weight: 800;
      font-size: 13px;
    }

    .pipe-line {
      height: 10px;
      background:
        linear-gradient(90deg, var(--mint), var(--cyan), var(--acid));
      box-shadow: 0 0 18px rgba(57, 246, 176, 0.35);
      transform-origin: left;
      animation: fillLine 1600ms ease both infinite alternate;
      animation-delay: calc(var(--delay) + 300ms);
    }

    .pipe-stat {
      color: #061013;
      background: var(--acid);
      border-color: var(--ink);
    }

    .floating-ticket {
      position: absolute;
      right: 22px;
      bottom: 24px;
      width: 188px;
      padding: 16px;
      color: #061013;
      background: var(--coral);
      border: 2px solid var(--ink);
      box-shadow: -8px 8px 0 var(--mint);
      transform: rotate(2deg);
      font-weight: 900;
    }

    .floating-ticket small {
      display: block;
      margin-top: 5px;
      font-size: 12px;
      font-weight: 800;
      color: rgba(6, 16, 19, 0.72);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      margin-top: 42px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat {
      padding: 18px;
      background: rgba(8, 19, 22, 0.88);
    }

    .stat strong {
      display: block;
      color: var(--acid);
      font-size: 28px;
      line-height: 1;
    }

    .stat span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
    }

    .section {
      padding: 56px 0;
    }

    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 22px;
    }

    h2 {
      margin: 0;
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .section-note {
      max-width: 420px;
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .categories {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 22px;
    }

    .chip {
      height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.04);
      padding: 0 14px;
      cursor: pointer;
      transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
    }

    .chip.active,
    .chip:hover {
      color: #061013;
      border-color: var(--acid);
      background: var(--acid);
    }

    .works {
      display: grid;
      gap: 14px;
    }

    .work-card {
      display: grid;
      grid-template-columns: 96px 1fr auto;
      gap: 28px;
      align-items: start;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.93);
      color: #101715;
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
      min-height: 124px;
      animation: fadeIn 500ms ease both;
      position: relative;
    }

    .thumb {
      width: 96px;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      overflow: hidden;
      border-radius: 6px;
      color: #061013;
      font-size: 34px;
      font-weight: 950;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent),
        var(--thumb-bg);
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .thumb svg {
      width: 58px;
      height: 58px;
      stroke-width: 1.8;
    }

    .work-meta {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .work-meta h3 {
      margin: 0;
      padding: 0;
      color: #0c1514;
      font-size: 20px;
      line-height: 1.1;
      letter-spacing: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .work-meta p {
      margin: 0;
      color: #4f5b57;
      line-height: 1.48;
    }

    .tag {
      padding: 3px 8px;
      border-radius: 999px;
      color: #17312b;
      background: rgba(57, 246, 176, 0.23);
      font-size: 12px;
      font-weight: 800;
    }

    .support-box {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
      min-width: 88px;
      align-self: center;
    }

    .btn-row {
      display: flex;
      gap: 8px;
    }

    .count {
      color: #293330;
      font-weight: 900;
      white-space: nowrap;
    }

    .support {
      width: 88px;
      height: 44px;
      border: 0;
      border-radius: 0;
      color: #061013;
      background: var(--mint);
      font-weight: 950;
      cursor: pointer;
      transition: transform 150ms ease, background 150ms ease;
    }

    .support:hover {
      transform: translateY(-2px);
      background: var(--acid);
    }

    .support.is-supported {
      color: var(--ink);
      background: #13201d;
    }

    .problem {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    .intro,
    .problem,
    .team {
      margin: 0;
      color: #4f5b57;
      font-size: 14px;
      line-height: 1.5;
      display: flex;
      align-items: baseline;
      gap: 12px;
    }

    .intro .label,
    .problem .label,
    .team .label {
      flex-shrink: 0;
      font-size: 11px;
      font-weight: 900;
      color: #061013;
      background: rgba(163, 255, 219, 0.35);
      padding: 1px 6px;
      border-radius: 3px;
      white-space: nowrap;
    }

    .view-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 88px;
      height: 44px;
      background: var(--cyan);
      color: #061013;
      font-weight: 950;
      font-size: inherit;
      text-decoration: none;
      transition: transform 150ms ease, background 150ms ease;
    }

    .view-btn:hover {
      transform: translateY(-2px);
      background: var(--acid);
    }

    .rules {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .rule-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
      background: var(--panel);
      box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
    }

    .rule-panel h3 {
      margin: 0 0 16px;
      color: var(--acid);
      font-size: 24px;
    }

    .rule-panel ol,
    .rule-panel ul {
      margin: 0;
      padding-left: 20px;
      color: #d9e4e1;
      line-height: 1.72;
    }

    .rule-panel li + li {
      margin-top: 10px;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .phase {
      min-height: 150px;
      padding: 18px;
      background: rgba(9, 19, 22, 0.9);
      position: relative;
      overflow: hidden;
    }

    .phase::after {
      content: attr(data-step);
      position: absolute;
      right: 10px;
      bottom: -8px;
      color: rgba(255, 255, 255, 0.06);
      font-size: 62px;
      font-weight: 950;
    }

    .phase b {
      display: block;
      color: var(--mint);
      font-size: 18px;
    }

    .phase span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      line-height: 1.5;
      font-size: 14px;
    }

    .final-cta {
      padding: 42px 0 74px;
    }

    .cta-band {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 24px;
      padding: 26px;
      border: 2px solid var(--ink);
      background: var(--acid);
      color: #061013;
      box-shadow: 10px 10px 0 var(--coral);
    }

    .cta-band h2 {
      color: #061013;
      font-size: clamp(22px, 5.5vw, 44px);
    }

    .cta-band p {
      margin: 8px 0 0;
      color: rgba(6, 16, 19, 0.74);
      font-weight: 800;
    }

    .bottom-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 100;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(3, 12, 14, 0.78);
      backdrop-filter: blur(16px);
    }

    .bottom-bar .btn {
      margin: 0;
      white-space: nowrap;
    }

    main {
      padding-bottom: 72px;
    }

    /* --- 弹幕弹窗 --- */
    .danmaku-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(3, 12, 14, 0.85);
      backdrop-filter: blur(16px);
      justify-content: center;
      align-items: center;
    }

    .danmaku-overlay.is-open {
      display: flex;
    }

    .danmaku-modal {
      width: min(860px, calc(100% - 32px));
      height: min(520px, 72vh);
      border: 2px solid var(--ink);
      border-radius: 0;
      background: #061518;
      box-shadow: 10px 10px 0 var(--coral);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
    }

    .danmaku-modal::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 600px 300px at 20% 30%, rgba(57, 246, 176, 0.15), transparent),
        radial-gradient(ellipse 500px 400px at 80% 70%, rgba(143, 124, 255, 0.12), transparent),
        radial-gradient(ellipse 400px 250px at 50% 10%, rgba(103, 232, 249, 0.1), transparent);
      animation: bgPulse 8s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: 0;
    }

    .danmaku-modal::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(57, 246, 176, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 246, 176, 0.04) 1px, transparent 1px);
      background-size: 40px 40px;
      animation: gridScroll 20s linear infinite;
      pointer-events: none;
      z-index: 0;
    }

    @keyframes bgPulse {
      0% { opacity: 0.6; }
      50% { opacity: 1; }
      100% { opacity: 0.6; }
    }

    @keyframes gridScroll {
      from { transform: translate(0, 0); }
      to { transform: translate(40px, 40px); }
    }

    .danmaku-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      border-bottom: 2px solid var(--ink);
      background: rgba(233, 255, 69, 0.06);
      position: relative;
      z-index: 1;
    }

    .danmaku-header h3 {
      margin: 0;
      font-size: 22px;
      font-weight: 950;
      color: var(--acid);
      letter-spacing: 0;
    }

    .danmaku-close {
      width: 38px;
      height: 38px;
      border: 2px solid var(--ink);
      border-radius: 0;
      background: rgba(255, 111, 97, 0.15);
      color: var(--coral);
      font-size: 18px;
      font-weight: 900;
      cursor: pointer;
      display: grid;
      place-items: center;
      box-shadow: 3px 3px 0 var(--ink);
      transition: transform 100ms ease, box-shadow 100ms ease;
    }

    .danmaku-close:hover {
      transform: translate(2px, 2px);
      box-shadow: 1px 1px 0 var(--ink);
    }

    .danmaku-stage {
      flex: 1;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .danmaku-item {
      position: absolute;
      white-space: nowrap;
      padding: 6px 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.5;
      pointer-events: none;
      animation: danmakuFly linear forwards;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }

    @keyframes danmakuFly {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(calc(-100% - 860px));
      }
    }

    .danmaku-empty {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: 15px;
    }

    .danmaku-footer {
      padding: 12px 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .danmaku-footer a {
      color: var(--mint);
      font-weight: 800;
      font-size: 14px;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .danmaku-footer a:hover {
      color: var(--acid);
    }

    .toast {
      position: fixed;
      left: 50%;
      bottom: 24px;
      z-index: 40;
      transform: translate(-50%, 20px);
      opacity: 0;
      pointer-events: none;
      padding: 12px 16px;
      color: #061013;
      background: var(--mint);
      border: 2px solid var(--ink);
      box-shadow: 6px 6px 0 var(--coral);
      font-weight: 900;
      transition: transform 200ms ease, opacity 200ms ease;
    }

    .toast.show {
      transform: translate(-50%, 0);
      opacity: 1;
    }

    @keyframes fillLine {
      from { transform: scaleX(0.28); }
      to { transform: scaleX(1); }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(16px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 860px) {
      .nav {
        display: none;
      }

      .hero {
        min-height: auto;
        padding-top: 42px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .rules {
        grid-template-columns: 1fr;
      }

      .cta-band {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 12px 16px;
      }

      .cta-band h2 {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .bottom-bar .btn {
        font-size: 12px;
        padding: 8px 12px;
        white-space: nowrap;
      }

      .hero-board {
        min-height: 360px;
      }

      .stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-heading {
        display: block;
      }

      .section-note {
        margin-top: 12px;
      }

      .timeline {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 620px) {
      .hero-inner,
      .section-inner,
      .topbar-inner {
        width: min(100% - 24px, 1120px);
      }

      .brand span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .work-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }

      .work-card > .thumb {
        width: 72px;
        font-size: 26px;
      }

      .work-card > .thumb svg {
        width: 44px;
        height: 44px;
      }

      .work-meta {
        width: 100%;
      }

      .work-meta h3 {
        justify-content: center;
        font-size: 17px;
      }

      .support-box {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
      }

      .btn-row {
        width: 100%;
        justify-content: center;
      }

      .support {
        width: 112px;
      }

      .card-header h3 {
        font-size: 17px;
      }

      .pipe-row {
        grid-template-columns: 68px 1fr 48px;
        gap: 8px;
      }

      .pipe-node,
      .pipe-stat {
        min-height: 38px;
        font-size: 11px;
      }

      .floating-ticket {
        width: 156px;
        right: 14px;
      }

      main {
        padding-bottom: 110px;
      }
    }

    /* --- 许愿弹窗 — Eyes-Follow-Mouse 风格 --- */
    .wish-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 300;
      background: rgba(3, 12, 14, 0.88);
      backdrop-filter: blur(16px);
      justify-content: center;
      align-items: center;
    }

    .wish-overlay.is-open {
      display: flex;
    }

    .wish-modal {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: min(860px, calc(100% - 32px));
      min-height: 480px;
      border: 2px solid #1e293b;
      border-radius: 0;
      background: linear-gradient(160deg, #f0f4f8 0%, #e2e8f0 50%, #cbd5e1 100%);
      box-shadow: 10px 10px 0 #ff6f61;
      overflow: hidden;
      position: relative;
    }

    .wish-modal::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
      background-size: 20px 20px;
      pointer-events: none;
      z-index: 0;
    }

    /* Left panel — character scene */
    .wish-chars-panel {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 24px;
      overflow: hidden;
      z-index: 1;
    }

    .wish-chars-scene {
      position: relative;
      width: 380px;
      height: 320px;
    }

    /* Character bodies */
    .char-body {
      position: absolute;
      bottom: 0;
      transition: all 700ms ease-in-out;
      transform-origin: bottom center;
    }

    .char-eyes {
      position: absolute;
      display: flex;
      transition: all 700ms ease-in-out;
    }

    .char-eyes.fast {
      transition: all 200ms ease-out;
    }

    .char-eyeball {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      background: #fff;
      border-radius: 9999px;
      overflow: hidden;
      margin-right: 14px;
      transition: all 150ms;
    }

    .char-eyeball.sm {
      width: 16px;
      height: 16px;
      margin-right: 12px;
    }

    .char-pupil {
      width: 7px;
      height: 7px;
      background: #2D2D2D;
      border-radius: 9999px;
      transition: transform 0.1s ease-out;
    }

    .char-pupil.sm {
      width: 6px;
      height: 6px;
    }

    .char-pupil.bare {
      width: 12px;
      height: 12px;
    }

    .char-mouth {
      position: absolute;
      width: 20px;
      height: 4px;
      background: #2D2D2D;
      border-radius: 9999px;
      left: 40px;
      top: 88px;
      transition: all 200ms ease-out;
    }

    /* Right panel — wish form */
    .wish-form-panel {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 32px 28px;
      z-index: 1;
    }

    .wish-form-panel h3 {
      margin: 0 0 20px;
      font-size: 22px;
      font-weight: 950;
      color: #1e293b;
    }

    .wish-field {
      width: 100%;
      position: relative;
      margin-bottom: 18px;
    }

    .wish-field input {
      width: 100%;
      height: 38px;
      border: none;
      border-bottom: 2px solid #475569;
      background: transparent;
      text-indent: 5px;
      outline: none;
      font-size: 15px;
      color: #0f172a;
      font-family: inherit;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .wish-field input:focus {
      border-color: #0d9668;
      box-shadow: 0 2px #0d9668;
    }

    .wish-field label {
      position: absolute;
      left: 5px;
      top: 10px;
      font-size: 14px;
      color: #94a3b8;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .wish-field input:focus + label,
    .wish-field input:not(:placeholder-shown) + label {
      font-size: 12px;
      color: #0d9668;
      transform: translateY(-15px);
    }

    .wish-submit {
      min-height: 44px;
      width: 150px;
      border: 2px solid #1e293b;
      border-radius: 0;
      background: #39f6b0;
      color: #061013;
      font-weight: 900;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 5px 5px 0 #ff6f61;
      margin-top: 18px;
      transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
    }

    .wish-submit:hover {
      transform: translate(2px, 2px);
      box-shadow: 3px 3px 0 #ff6f61;
      background: #e9ff45;
    }

    .wish-cancel {
      margin-top: 8px;
      background: none;
      border: none;
      color: #94a3b8;
      font-size: 14px;
      cursor: pointer;
      transition: color 120ms ease;
    }

    .wish-cancel:hover {
      color: #475569;
    }

    @media (max-width: 700px) {
      .wish-modal {
        grid-template-columns: 1fr;
      }
      .wish-chars-panel {
        min-height: 180px;
      }
      .wish-chars-scene {
        transform: scale(0.6);
        transform-origin: bottom center;
      }
    }

