
    :root {
      --rose: #ff4f87;
      --rose-dark: #e73d75;
      --rose-soft: #fff0f5;
      --ink: #202230;
      --muted: #737685;
      --line: #f0d9e2;
      --card: rgba(255, 255, 255, .94);
      --shadow: 0 20px 55px rgba(204, 84, 127, .14);
    }

    * { box-sizing: border-box; }

    html, body { min-height: 100%; }

    body {
      margin: 0;
      color: var(--ink);
      font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
      background:
        radial-gradient(circle at 16% 12%, rgba(255, 196, 217, .36) 0 8%, transparent 28%),
        radial-gradient(circle at 86% 82%, rgba(255, 212, 226, .3) 0 7%, transparent 27%),
        linear-gradient(145deg, #fffafd 0%, #fff5f8 55%, #fffafd 100%);
      display: grid;
      place-items: center;
      padding: 32px 18px;
      overflow-x: hidden;
    }

    .sparkle {
      position: fixed;
      color: rgba(255, 79, 135, .24);
      font-size: 28px;
      user-select: none;
      pointer-events: none;
    }

    .sparkle.one { left: 8%; top: 15%; transform: rotate(-12deg); }
    .sparkle.two { right: 9%; top: 22%; font-size: 20px; }
    .sparkle.three { right: 14%; bottom: 12%; transform: rotate(18deg); }

    main {
      width: min(100%, 580px);
      position: relative;
    }

    .mascot {
      width: 150px;
      height: 99px;
      margin: 0 auto -10px;
      position: relative;
      z-index: 2;
      background-image: url("mascot.png");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center bottom;
    }

    .card {
      position: relative;
      overflow: hidden;
      background: var(--card);
      border: 1px solid rgba(236, 201, 214, .9);
      border-radius: 24px;
      padding: 38px 38px 32px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
    }

    .card::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 5px;
      background: linear-gradient(90deg, #ff80a9, #ff4f87, #ff91b4);
    }

    .brand {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .logo {
      flex: 0 0 70px;
      width: 70px;
      height: 48px;
      background-image: url("wohu-mark.png");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
    }

    .brand-name {
      font-size: clamp(24px, 6vw, 31px);
      font-weight: 900;
      letter-spacing: -.5px;
    }

    .brand-name span { color: var(--rose); }

    .permanent {
      text-align: center;
      padding: 19px 16px 17px;
      background: linear-gradient(135deg, #fff1f6, #fff7fa);
      border: 1px solid #ffd2e1;
      border-radius: 17px;
      margin-bottom: 16px;
    }

    .permanent-label {
      display: block;
      margin-bottom: 6px;
      color: #bd416c;
      font-size: 15px;
      font-weight: 800;
    }

    .domain {
      display: block;
      color: var(--rose-dark);
      font-family: ui-rounded, "Arial Rounded MT Bold", Arial, sans-serif;
      font-size: clamp(27px, 8vw, 40px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: .4px;
      text-shadow: 0 3px 0 #fff;
      word-break: break-all;
    }

    .tip {
      margin: 0 auto 24px;
      color: var(--muted);
      text-align: center;
      font-size: 14px;
      line-height: 1.8;
    }

    .entrances {
      display: grid;
      gap: 13px;
    }

    .entrance {
      min-height: 66px;
      padding: 9px 13px 9px 17px;
      display: flex;
      align-items: center;
      gap: 14px;
      color: inherit;
      text-decoration: none;
      background: white;
      border: 1px solid var(--line);
      border-radius: 16px;
      box-shadow: 0 7px 20px rgba(55, 31, 43, .045);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }

    .entrance:hover,
    .entrance:focus-visible {
      transform: translateY(-2px);
      border-color: #ff9dbd;
      box-shadow: 0 12px 27px rgba(218, 72, 122, .14);
      outline: none;
    }

    .number {
      flex: 0 0 40px;
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      color: #d94276;
      font-weight: 900;
      background: var(--rose-soft);
      border-radius: 13px;
    }

    .entrance-copy { min-width: 0; flex: 1; }

    .entrance-title {
      display: block;
      font-size: 17px;
      font-weight: 850;
      margin-bottom: 3px;
    }

    .arrow {
      flex: 0 0 34px;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      color: white;
      background: linear-gradient(145deg, #ff79a4, #ff4b84);
      border-radius: 50%;
      font-size: 20px;
      box-shadow: 0 6px 14px rgba(255, 79, 135, .24);
    }

    footer {
      margin-top: 22px;
      color: #aaa4aa;
      text-align: center;
      font-size: 12px;
    }

    @media (max-width: 520px) {
      body {
        min-height: 100svh;
        padding: 8px 10px;
      }

      main {
        width: calc(100vw - 20px);
        max-width: 430px;
        min-width: 0;
      }

      .mascot {
        width: 104px;
        height: 68px;
        margin-bottom: -8px;
      }

      .card {
        padding: 17px 13px 12px;
        border-radius: 17px;
      }

      .brand {
        gap: 7px;
        margin-bottom: 8px;
      }

      .logo {
        flex-basis: 49px;
        width: 49px;
        height: 34px;
      }

      .brand-name {
        font-size: clamp(18px, 5.1vw, 23px);
        white-space: nowrap;
      }

      .permanent {
        padding: 8px 8px 7px;
        margin-bottom: 7px;
        border-radius: 12px;
      }

      .permanent-label {
        margin-bottom: 2px;
        font-size: 12px;
      }

      .domain { font-size: clamp(24px, 8vw, 32px); }

      .tip {
        margin-bottom: 8px;
        font-size: clamp(7px, 2.05vw, 11px);
        letter-spacing: -.2px;
        line-height: 1.35;
        white-space: nowrap;
      }

      .entrances { gap: 6px; }

      .entrance {
        min-height: 46px;
        padding: 5px 8px 5px 10px;
        gap: 9px;
        border-radius: 12px;
      }

      .number {
        flex-basis: 31px;
        width: 31px;
        height: 31px;
        border-radius: 9px;
        font-size: 13px;
      }

      .entrance-title { font-size: clamp(13px, 3.7vw, 16px); }

      .arrow {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
        font-size: 17px;
      }

      footer {
        margin-top: 8px;
        font-size: 11px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .entrance { transition: none; }
    }
  
.route-status{font-size:12px;color:#737685;margin:8px 0}.route-status button{border:0;background:none;color:#e73d75;cursor:pointer}
#auto-entry{width:100%;font-family:inherit;text-align:left;cursor:pointer;color:inherit}#auto-entry:disabled{opacity:.65;cursor:wait}#entry-status{color:#c9366c;font-size:14px;min-height:20px} @media(max-width:480px){#auto-entry .entrance-title{font-size:16px}}

#auto-entry{width:100%;font-family:inherit;text-align:left;cursor:pointer;color:inherit}#auto-entry:disabled{opacity:.65;cursor:wait}#entry-status{color:#c9366c;font-size:14px;min-height:20px} @media(max-width:480px){#auto-entry .entrance-title{font-size:16px}}

#auto-entry{width:100%;font-family:inherit;text-align:left;cursor:pointer;color:inherit}#auto-entry:disabled{opacity:.65;cursor:wait}#entry-status{color:#c9366c;font-size:14px;min-height:20px} @media(max-width:480px){#auto-entry .entrance-title{font-size:16px}}

#auto-entry{width:100%;font-family:inherit;text-align:left;cursor:pointer;color:inherit}#auto-entry:disabled{opacity:.65;cursor:wait}#entry-status{color:#c9366c;font-size:14px;min-height:20px} @media(max-width:480px){#auto-entry .entrance-title{font-size:16px}}
