body.mp {
  background: #cfe0f5;
  min-height: 100%;
}

.stage {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.device {
  width: 390px;
  height: 844px;
  background: var(--bg);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px #c5d6ea, 0 24px 70px rgba(60, 110, 180, .22);
  display: flex;
  flex-direction: column;
}

.status {
  height: 44px;
  padding: 12px 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  color: var(--text);
}
.status .dots { display: flex; gap: 5px; align-items: center; }
.status .dots .ico { width: 14px; height: 14px; }

.screen {
  flex: 1;
  overflow: auto;
  padding: 0 16px 88px;
  scrollbar-width: none;
  background: var(--bg);
}
.screen::-webkit-scrollbar { display: none; }
.screen.no-tab { padding-bottom: 24px; }
.screen.has-dock { padding-bottom: 96px; }
.device:has(.screen.sky) {
  background: var(--grad-sky);
}
.device:has(.screen.sky) .status { color: #fff; }
.device:has(.screen.home) .status { color: #fff; }
.device:has(.screen.home) {
  background:
    radial-gradient(140% 54% at 50% -10%, #102ea8 0%, #1b47c8 24%, #3a74ea 46%, #7eaff8 68%, transparent 100%),
    linear-gradient(180deg, #1c48c4 0%, #3e78ea 20%, #7eaff6 46%, #c2dbfb 72%, #dceafc 100%);
}
.screen.home,
.screen.sky {
  padding: 0 12px 88px;
  background: transparent;
}
.screen.home {
  padding: 0 10px 88px;
}

.tabbar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: calc(var(--tab-h) + var(--safe));
  padding: 8px 8px var(--safe);
  background: #fff;
  border-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 20;
  box-shadow: 0 -6px 18px rgba(40, 80, 160, .05);
}
.tabbar.n3 { grid-template-columns: repeat(3, 1fr); }
.tabbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #111;
  font-size: 11px;
  font-weight: 500;
  position: relative;
}
.tabbar a .ico { width: 26px; height: 26px; stroke-width: 1.8; }
.tabbar a.on { color: #3d8bff; }
.tabbar a.on .ico { fill: currentColor; stroke-width: 1.4; }
.tabbar a .tab-ico {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabbar .badge {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

.nav {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 -4px 8px;
}
.nav .title { flex: 1; text-align: center; font-weight: 700; font-size: 17px; }
.nav .side {
  width: 36px; height: 36px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--text);
}
.nav .side:empty { visibility: hidden; }
.nav .side .ico { width: 18px; height: 18px; }
.nav.overlay {
  position: absolute; left: 0; right: 0; top: 6px;
  margin: 0; padding: 0 8px; z-index: 8; color: #fff;
}
.nav.overlay .title { color: #fff; }
.nav.overlay .side { color: #fff; background: rgba(255,255,255,.18); }

.search-row { display: flex; gap: 8px; margin-bottom: 12px; }
.search {
  flex: 1;
  height: 40px;
  background: var(--bg-2);
  border: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--text-2);
}
.search input {
  flex: 1;
  background: none;
  border: 0;
  outline: none;
  color: var(--text);
  min-width: 0;
}
.search input::placeholder { color: var(--text-3); }
.search .ico { width: 16px; height: 16px; }

.home-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2px 2px 12px;
  min-height: 40px;
  overflow: visible;
}
.home-search {
  justify-self: start;
  height: 32px;
  padding: 0 20px 0 16px;
  margin-left: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,.40) 0%, rgba(210,226,255,.22) 100%);
  transform: skewX(-16deg);
  border-radius: 10px;
  letter-spacing: .06em;
}
.home-search .ico,
.home-search span {
  transform: skewX(16deg);
  display: inline-flex;
  align-items: center;
}
.home-search .ico { width: 18px; height: 18px; stroke-width: 2.2; }
.home-brand {
  justify-self: center;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .14em;
  text-shadow: 0 1px 8px rgba(20, 50, 140, .18);
}
.home-tools {
  justify-self: end;
  height: 32px;
  padding: 0 8px 0 10px;
  border-radius: 999px;
  background: rgba(16, 38, 112, .46);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.home-tools .ht-more,
.home-tools .ht-scan {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.home-tools .ico { width: 18px; height: 18px; }
.home-tools .ht-split {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.38);
  display: block;
}

.cats {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 2px 6px 4px;
  scrollbar-width: none;
  margin-bottom: 0;
  align-items: center;
}
.cats::-webkit-scrollbar { display: none; }
.cats a, .cats button {
  color: rgba(255,255,255,.88);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  padding: 0;
  position: relative;
}
.screen:not(.home) .cats a,
.screen:not(.home) .cats button { color: var(--text-2); }
.cats .on {
  color: #24305a;
  font-weight: 700;
  height: 30px;
  padding: 0 16px 0 0;
  margin-left: 14px;
  background:
    linear-gradient(180deg, #f7f9ff 0%, #e8eef9 48%, #d5e0f2 100%);
  border-radius: 10px;
  transform: skewX(-16deg);
  box-shadow: 0 3px 8px rgba(30, 70, 170, .10);
}
.cats .on::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0;
  bottom: 0;
  width: 22px;
  background: inherit;
  border-radius: 10px 0 0 10px;
  z-index: 0;
}
.cats .on > span:not(.gicon) {
  transform: skewX(16deg);
  position: relative;
  z-index: 1;
  padding-left: 12px;
}
.cats .on .gicon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: skewX(16deg) translate(-50%, -50%);
  margin-top: 0;
  z-index: 2;
}
.screen:not(.home) .cats .on { color: var(--p); transform: none; border-radius: 999px; }
.cats-row {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 2px 0 0;
}
.cats-row .cats {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}
.cats a {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.gicon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, #fff 29% 38%, transparent 39%),
    radial-gradient(circle at 38% 32%, #ffe9a8, #f5b431 58%, #e08a10 100%);
  box-shadow: 0 2px 6px rgba(180, 90, 0, .28);
}
.gicon.kog::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1.8px solid #fff;
  border-radius: 50%;
}
.gicon.kog::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transform: rotate(-32deg) translate(5px, -1px);
  box-shadow: 0 0 0 1px rgba(245, 163, 24, .35);
}
.gicon.ys {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, #fff 29% 38%, transparent 39%),
    radial-gradient(circle at 38% 32%, #9ad4ff, #3a8dff 58%, #1c63d8 100%);
}
.gicon.val {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, #fff 29% 38%, transparent 39%),
    radial-gradient(circle at 38% 32%, #ffb0b0, #e85a5a 58%, #c62828 100%);
}
.gicon.yj {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, #fff 29% 38%, transparent 39%),
    radial-gradient(circle at 38% 32%, #8eecc8, #2aa57a 58%, #0b6b55 100%);
}
.cats a.on .gicon { display: inline-flex; }
.cats .filter-ico,
.cats-row .filter-ico {
  margin-left: 0;
  color: #fff;
  width: 28px;
  height: 28px;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cats-row .filter-ico .ico { width: 20px; height: 20px; stroke-width: 2.2; }

.sec-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px 10px;
  color: #162044;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .06em;
}
.sec-h button {
  color: #1e2a4a;
  display: flex; align-items: center;
}
.sec-h .ico { width: 20px; height: 20px; }

.trust {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 0;
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 12px;
  box-shadow: var(--card-shadow);
}
.trust .mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--p-dim); color: var(--p);
  display: flex; align-items: center; justify-content: center;
}
.trust b { display: block; font-size: 13px; }
.trust span { color: var(--text-2); font-size: 11px; }
.trust .more { margin-left: auto; color: var(--text-3); font-size: 12px; display: flex; align-items: center; }

.god-card {
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 8px 10px 8px 8px;
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(70, 120, 200, .10);
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: stretch;
  gap: 6px;
  overflow: hidden;
}
.god-card > a.photo {
  grid-row: 1;
  width: 118px;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  display: block;
  margin: 0;
  clip-path: url(#god-photo-clip);
}
.god-card .photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.god-card .photo .badge {
  position: absolute;
  left: 0; top: 8px;
  height: 20px;
  padding: 0 8px 0 6px;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(90deg, #5aa2ff, #3d8bff);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}
.god-body { min-width: 0; padding: 1px 4px 0 0; display: flex; flex-direction: column; }
.god-body .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}
.god-body h3 {
  font-size: 15px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.god-body h3 sup {
  font-size: 10px;
  font-weight: 700;
  color: #111;
  margin-left: 1px;
}
.mark-star {
  color: #f5c400;
  font-size: 14px;
  font-weight: 700;
  margin: 0 1px;
}
.mark-star.hollow { color: #c9c9c9; }
.sex {
  font-style: normal;
  font-size: 14px;
  margin-left: 2px;
  vertical-align: 0;
  font-weight: 700;
}
.sex.m { color: #2f8bff; }
.sex.f { color: #ff7ab6; }
.online-dot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #22c55e;
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 3px;
}
.online-dot i {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e; display: block;
}
.god-body .rank {
  color: #111;
  font-size: 11.5px;
  font-weight: 600;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #fff4d4;
  display: inline-block;
  align-self: flex-start;
  max-width: 100%;
  padding: 3px 8px;
  border-radius: 8px;
  line-height: 1.45;
}
.god-body .rank em {
  font-style: normal;
  color: #d29a2a;
  font-weight: 700;
  margin-right: 4px;
}
.god-body .quote {
  color: #9aa3ad;
  font-size: 11px;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hot {
  position: absolute;
  right: 4px;
  top: -11px;
  color: #ff4db2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  transform: skewX(-14deg);
  background: linear-gradient(90deg, #ff7ad4, #ff4db2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  white-space: nowrap;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.85));
  z-index: 2;
}
.hot::before {
  content: "✦";
  font-size: 10px;
  margin-right: 1px;
  -webkit-text-fill-color: #ff5ac4;
}
.god-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  padding-right: 6px;
  align-items: stretch;
}
.god-metrics .m-price-wrap {
  position: relative;
  display: flex;
  min-height: 0;
}
.god-metrics .m-score,
.god-metrics .m-price {
  flex: 1;
  width: 100%;
  height: 56px;
  min-height: 56px;
  border-radius: 10px;
  padding: 6px 8px 6px;
  text-align: center;
  position: relative;
  transform: skewX(-12deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.god-metrics .m-score { background: #eef2f6; }
.god-metrics .m-price { background: #f3f5f8; }
.god-metrics b,
.god-metrics .m-score span,
.god-metrics .m-price > span {
  transform: skewX(12deg);
}
.god-metrics b {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 1.1;
  font-family: var(--font-body);
}
.god-metrics .m-price b { color: #ef6b9a; }
.god-metrics b em { font-style: normal; font-size: 11px; font-weight: 500; color: #8a8f99; margin-left: 1px; }
.god-metrics .m-price b em { color: #ef6b9a; font-weight: 600; }
.god-metrics span { color: #b0b6bf; font-size: 10px; }
.god-metrics .m-price > span:not(.hot) {
  color: #f0a0b8;
  text-decoration: line-through;
  display: block;
}

.god-top { display: flex; gap: 12px; align-items: flex-start; }
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  object-fit: cover;
}
img.avatar { padding: 0; display: block; }
.avatar-wrap { position: relative; flex-shrink: 0; }
.dot {
  position: absolute; right: 0; bottom: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: #2ec47a; border: 2px solid #fff;
}
.dot.off { background: var(--text-3); }
.dot.busy { background: var(--s); }
.god-info { flex: 1; min-width: 0; }
.god-info .name-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.god-info h3 { font-size: 16px; font-weight: 700; line-height: 1.2; margin: 0; }
.god-info .game {
  color: var(--text-2); font-size: 12px; margin-top: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.god-meta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 6px; color: var(--text-3); font-size: 11px;
}
.god-meta .rate {
  display: inline-flex; align-items: center; gap: 3px;
  color: var(--s); font-weight: 700;
}
.god-meta .rate .ico { width: 12px; height: 12px; }
.god-meta .sep { opacity: .45; }

.voice {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border-radius: 12px;
  padding: 7px 10px;
}
.play {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--p); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.play .ico { width: 13px; height: 13px; }
.wave { display: flex; align-items: center; gap: 2px; height: 14px; flex-shrink: 0; }
.wave i {
  width: 3px; height: 100%;
  background: var(--p);
  border-radius: 2px;
  transform-origin: center;
  display: block;
}
.wave.on i { animation: eq .9s ease-in-out infinite; }
.wave.on i:nth-child(2n) { animation-delay: .12s; }
.wave.on i:nth-child(3n) { animation-delay: .24s; }
@keyframes eq {
  0%, 100% { transform: scaleY(.35); }
  50% { transform: scaleY(1); }
}
.voice .time { font-family: var(--font-mono); font-size: 11px; color: var(--p); flex-shrink: 0; }
.voice .quote {
  color: var(--text-3); font-size: 11px; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.god-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.god-tags span {
  height: 22px; padding: 0 8px; border-radius: 6px;
  background: var(--bg-2); color: var(--text-2); font-size: 11px;
  display: inline-flex; align-items: center;
}
.god-bot {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.god-bot .price { margin-right: auto; }
.tags { flex: 1; display: flex; flex-wrap: wrap; gap: 6px; color: var(--text-2); font-size: 11px; }
.meter { width: 72px; height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; display: inline-block; vertical-align: middle; }
.meter span { display: block; height: 100%; background: var(--p); }
.price { font-family: var(--font-mono); color: var(--s); font-weight: 700; font-size: 20px; line-height: 1; }
.price small { font-size: 11px; color: var(--text-3); font-weight: 500; margin-left: 2px; }

.cover {
  height: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), transparent 28%, rgba(0,0,0,.55)),
    #c9b6a8;
  position: relative;
  overflow: hidden;
}
.cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), transparent 32%, rgba(0,0,0,.55));
  pointer-events: none;
  z-index: 1;
}
.cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.cover-cap {
  position: absolute; left: 24px; right: 96px; bottom: 24px;
  color: #fff;
  z-index: 2;
}
.cover-cap h2 {
  font-size: 22px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.cover-cap .online {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: #fff; margin-top: 6px;
}
.cover .voice-fab {
  position: absolute; right: 14px; bottom: 18px; z-index: 2;
  height: 32px; padding: 0 12px;
  border-radius: 999px;
  background: var(--p); color: #fff;
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 6px 16px rgba(61,139,255,.35);
}
.cover-acts {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 8;
  pointer-events: auto;
}
.cover-acts a,
.cover-acts button {
  height: 30px; padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.85);
  color: #fff; font-size: 13px; font-weight: 600;
  background: rgba(0,0,0,.12);
  display: flex; align-items: center;
}
.cover-acts button.on {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

.hero-user { display: flex; gap: 12px; margin-top: 12px; position: relative; z-index: 1; align-items: flex-end; }
.hero-user .avatar { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--bg); font-size: 22px; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 6px;
  margin: 14px 0;
  text-align: center;
}
.stats b { display: block; font-size: 16px; }
.stats span { color: var(--text-3); font-size: 11px; }

.block { margin: 14px 0; }
.block-h {
  display: flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 700; margin-bottom: 10px;
}
.block-h .sub { margin-left: auto; color: var(--text-3); font-size: 12px; font-weight: 500; }

.deal {
  background: #fff7ea;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}
.deal b { color: var(--s); font-size: 18px; }
.deal span { color: var(--text-2); font-size: 12px; }
.deal .tag {
  margin-left: auto;
  background: var(--grad-hot);
  color: #fff;
  height: 22px; padding: 0 8px;
  border-radius: 6px 6px 6px 0;
  font-size: 10px; font-weight: 700;
}

.pkg-tabs { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 8px; scrollbar-width: none; }
.pkg-tabs::-webkit-scrollbar { display: none; }
.pkg-tabs button {
  min-width: 108px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #f4f6fa;
  color: var(--text-2);
  text-align: left;
  font-size: 12px;
  line-height: 1.35;
}
.pkg-tabs button b { display: block; font-size: 13px; color: var(--text); }
.pkg-tabs button.on {
  background: #eef5ff;
  color: var(--p);
  box-shadow: inset 0 0 0 1px var(--p);
}
.pkg-tabs button.on b { color: var(--p); }

.assure {
  display: flex; flex-direction: column;
}
.assure a {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.assure a .ico { width: 16px; height: 16px; color: var(--p); }
.assure a b { font-weight: 600; min-width: 72px; }
.assure a span { color: var(--text-2); flex: 1; }
.assure a .go { color: var(--text-3); margin-left: auto; }

.skill p { font-size: 14px; line-height: 1.7; color: var(--text); }
.skill .chip-row { display: flex; gap: 6px; flex-wrap: wrap; margin: 8px 0 10px; }
.skill .chip-row span {
  background: #f0f3f8; color: var(--text-2);
  height: 22px; padding: 0 8px; border-radius: 6px; font-size: 11px;
  display: inline-flex; align-items: center;
}
.skill dl { display: grid; grid-template-columns: 72px 1fr; gap: 6px 8px; font-size: 13px; }
.skill dt { color: var(--text-3); }
.skill dd { color: var(--s); }

.shot {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin: 12px 0;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}

.pkg {
  background: var(--elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 8px;
}
.pkg h4 { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.pkg p { color: var(--text-2); font-size: 12px; margin-top: 6px; line-height: 1.5; }

.review {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.review .who { display: flex; justify-content: space-between; color: var(--text-3); font-size: 12px; margin-bottom: 6px; align-items: center; }
.review .who .left { display: flex; align-items: center; gap: 8px; color: var(--text); }
.review .who .avatar { width: 32px; height: 32px; }
.review .mood { color: var(--s); font-size: 12px; }
.stars { color: var(--s); letter-spacing: 1px; }

.dock {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 16px calc(10px + var(--safe));
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 20;
}
.icon-act {
  width: 44px; display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--text-2); font-size: 10px;
}
.icon-act .ico { width: 18px; height: 18px; }
.dock .btn { flex: 1; height: 46px; border-radius: 999px; }
.dock .btn-chat { font-size: 16px; letter-spacing: .04em; }

.chat-log { display: flex; flex-direction: column; gap: 10px; padding: 8px 0 12px; }
.bubble {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
}
.bubble.me { margin-left: auto; background: var(--p); color: #fff; border-bottom-right-radius: 4px; }
.bubble.you { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.sys {
  align-self: center;
  font-size: 11px;
  color: var(--text-3);
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: 999px;
}
.pkg-banner {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--card-shadow);
  margin: 4px 0 10px;
}
.pkg-banner .mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: #fff3e6; color: var(--s);
  display: flex; align-items: center; justify-content: center;
}
.pkg-banner b { display: block; color: var(--s); font-size: 18px; }
.pkg-banner p { color: var(--text-2); font-size: 12px; margin-top: 2px; }
.pkg-banner .btn { margin-left: auto; height: 32px; border-radius: 999px; }

.composer {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 8px 12px calc(8px + var(--safe));
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex; gap: 8px; align-items: center;
}
.composer input {
  flex: 1; height: 40px; border-radius: 20px; border: 0;
  background: var(--bg-2); padding: 0 14px; outline: none;
}
.composer .tools {
  position: absolute; left: 12px; right: 12px; bottom: calc(56px + var(--safe));
  display: flex; justify-content: space-around; color: var(--text-2);
}
.screen.chat { background: #f3f4f6; padding-bottom: 120px; }

.list-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.list-row h4 { font-size: 14px; }
.list-row p { color: var(--text-3); font-size: 12px; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.list-row .time { color: var(--text-3); font-size: 11px; margin-left: auto; align-self: flex-start; }
.unread {
  min-width: 18px; height: 18px; border-radius: 9px; background: var(--danger);
  color: #fff; font-size: 10px; display: flex; align-items: center; justify-content: center;
}

.empty {
  text-align: center;
  padding: 80px 24px 24px;
  color: var(--text-2);
}
.empty .illus {
  width: 160px; height: 110px; margin: 0 auto 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #e8f3ff, #fff);
  display: flex; align-items: center; justify-content: center;
  color: var(--p); font-size: 40px;
}
.empty p { margin-bottom: 16px; }

.job-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.screen.sky .job-head h2 { color: #fff; }
.screen.sky .job-head p { color: rgba(255,255,255,.9) !important; }
.screen.sky .job-head a { color: rgba(255,255,255,.82) !important; }
.toggle {
  display: flex; background: var(--bg-2); border: 0; border-radius: 999px; padding: 3px;
}
.toggle button {
  height: 28px; padding: 0 12px; border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--text-2);
}
.toggle button.on { background: var(--p); color: #fff; }
.alert {
  background: var(--s-dim);
  border: 0;
  color: var(--s);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 12px;
  display: flex; gap: 6px; align-items: flex-start;
  margin: 10px 0;
}
.chips { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 12px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  height: 30px; padding: 0 12px; border-radius: 999px;
  background: var(--bg-2); border: 0;
  color: var(--text-2); font-size: 12px; font-weight: 600; white-space: nowrap;
}
.chip.on { background: var(--p-dim); color: var(--p); border-color: transparent; }
.is-hidden { display: none !important; }

.order-card {
  display: block;
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.order-card .meta {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-3); font-size: 11px; margin-bottom: 12px;
}
.order-card .meta .num { margin-left: auto; font-family: var(--font-mono); }
.order-card .meta .urgent { color: var(--s); font-weight: 700; }
.order-card .head {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
}
.order-card .head .avatar { width: 48px; height: 48px; border-radius: 50%; }
.order-card .who { flex: 1; min-width: 0; }
.order-card .who b {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 15px; font-weight: 700;
}
.order-card .who .svc {
  color: var(--text-2); font-size: 12px; margin-top: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.order-card .pay { text-align: right; flex-shrink: 0; }
.order-card .pay .price { font-size: 22px; }
.order-card .pay .hint { color: var(--text-3); font-size: 10px; margin-top: 4px; }
.order-card h3 { font-size: 16px; margin: 4px 0; }
.order-card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  margin-top: 2px;
  border-top: 1px solid var(--line);
  color: var(--text-3);
  font-size: 12px;
}
.user-line { display: flex; align-items: center; gap: 8px; margin: 0; min-width: 0; }
.user-line > div { flex: 1; min-width: 0; }
.user-line > div p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-empty {
  text-align: center;
  color: var(--text-3);
  font-size: 13px;
  padding: 48px 16px;
}
.note {
  background: var(--bg-2); border-radius: 10px; padding: 8px 10px;
  color: var(--text-3); font-size: 12px; line-height: 1.5;
  margin-top: 2px;
}
.dual { display: grid; grid-template-columns: 1fr 1.2fr; gap: 8px; margin-top: 12px; }

.money-card {
  background: linear-gradient(180deg, #fff8ef, #fff);
  border: 1px solid #ffe4c4;
  border-radius: 18px;
  padding: 18px 16px 16px;
}
.money-card .label { color: var(--text-2); font-size: 12px; display: flex; justify-content: space-between; }
.balance { font-family: var(--font-head); font-size: 36px; color: var(--s); margin: 8px 0 14px; letter-spacing: -1px; }
.split { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.split span { color: var(--text-3); font-size: 11px; display: block; }
.split b { font-family: var(--font-mono); font-size: 13px; }
.flow { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.flow .mark {
  width: 36px; height: 36px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--p-dim); color: var(--p);
}
.flow .amt { margin-left: auto; text-align: right; font-family: var(--font-mono); font-weight: 700; }
.flow .amt.plus { color: var(--ok); }
.flow .amt.minus { color: var(--s); }

.mine-head { display: flex; gap: 12px; align-items: center; padding: 8px 0 16px; }
.mine-head .avatar { width: 64px; height: 64px; border-radius: 50%; font-size: 22px; }
.counts { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; margin-bottom: 16px; }
.counts b { display: block; }
.counts span { color: var(--text-3); font-size: 11px; }
.menu {
  background: #fff; border: 0; border-radius: 16px; overflow: hidden;
  box-shadow: var(--card-shadow);
}
.menu a, .menu button {
  width: 100%; display: flex; align-items: center; gap: 10px;
  padding: 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px;
}
.menu a:last-child, .menu button:last-child { border-bottom: 0; }
.menu .ico { width: 18px; height: 18px; color: var(--p); }
.menu .go { margin-left: auto; color: var(--text-3); }

.sheet {
  position: absolute; inset: 0; background: rgba(0,0,0,.45); display: none; z-index: 40;
  border-radius: inherit;
}
.sheet.on { display: flex; align-items: flex-end; }
.sheet-body {
  width: 100%; background: #fff; border-radius: 20px 20px 0 0; padding: 16px 16px 28px;
}
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12px; color: var(--text-2); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 12px; outline: none;
}
.check { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; color: var(--text-2); margin: 12px 0; }
.check a { color: var(--p); }
.hero-login { text-align: center; padding: 48px 8px 24px; }
.logo-mark {
  width: 72px; height: 72px; margin: 0 auto 12px; border-radius: 22px;
  background: var(--p); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 28px; font-weight: 700;
}

.cate-page {
  display: none;
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 35;
  flex-direction: column;
  border-radius: inherit;
  overflow: hidden;
}
.cate-page.on { display: flex; }
.cate-page .cate-nav {
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  flex-shrink: 0;
}
.cate-page .cate-nav .title { flex: 1; text-align: center; font-weight: 700; font-size: 17px; }
.cate-body { flex: 1; display: flex; min-height: 0; }
.cate-side {
  width: 88px;
  background: #f5f6f8;
  overflow: auto;
  flex-shrink: 0;
}
.cate-side button {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-2);
  position: relative;
}
.cate-side button.on {
  background: #fff;
  color: var(--text);
  font-weight: 700;
}
.cate-side button.on::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 3px;
  background: var(--p);
  border-radius: 0 2px 2px 0;
}
.cate-main { flex: 1; overflow: auto; padding: 16px 12px 24px; }
.cate-main h4 { font-size: 14px; margin: 4px 0 12px; }
.cate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 8px;
  margin-bottom: 22px;
}
.cate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text);
  text-align: center;
}
.cate-item .gmark {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

.apply-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 14px;
  font-size: 11px;
  color: var(--text-3);
}
.apply-steps span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.apply-steps b {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg-2); color: var(--text-3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.apply-steps .on { color: var(--p); font-weight: 700; }
.apply-steps .on b { background: var(--p); color: #fff; }
.apply-steps .ok { color: var(--ok); }
.apply-steps .ok b { background: var(--ok-dim); color: var(--ok); }
.apply-steps i.line { flex: 1; height: 1px; background: var(--line); }

.apply-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: var(--card-shadow);
}
.apply-card h3 {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.apply-card h3 .ico { width: 16px; height: 16px; color: var(--p); }
.apply-card .field:last-child { margin-bottom: 0; }
.field .tip { color: var(--text-3); font-size: 11px; margin-top: 6px; line-height: 1.45; }
.chips.wrap { flex-wrap: wrap; overflow: visible; padding-bottom: 0; }
.field .chips { padding-bottom: 0; }

.upload-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: stretch;
}
.upload-avatar, .upload-cover, .upload-tile {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 11px;
  gap: 4px;
}
.upload-avatar {
  width: 88px; height: 88px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}
.upload-cover { min-height: 88px; }
.upload-tile {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.upload-tile small {
  font-size: 10px;
  font-weight: 700;
  opacity: .85;
}
.tone-me { background: linear-gradient(145deg, #b8e4c8, #07c160); color: #fff; }
.tone-blue { background: linear-gradient(145deg, #8ec2ff, #3d8bff); color: #fff; }
.tone-gold { background: linear-gradient(160deg, #3a2a12, #f5c15a); color: #fff; }
.tone-cover { background: linear-gradient(120deg, #16324a, #2ee6a6); }
.upload-tag {
  position: absolute; left: 8px; bottom: 8px;
  background: rgba(17, 24, 39, .55); color: #fff;
  font-size: 10px; padding: 2px 6px; border-radius: 6px;
}
.upload-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.upload-tile {
  aspect-ratio: 1;
}
.upload-tile.add {
  border: 1px dashed var(--line-2);
  background: #fafbfd;
}
.upload-tile .ico { width: 18px; height: 18px; }

.id-box {
  background: var(--bg-2);
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 8px;
}
.id-box p { display: flex; justify-content: space-between; font-size: 13px; }
.id-box span { color: var(--text-3); }
.apply-voice {
  margin-top: 0;
  background: var(--p-dim);
}
.apply-done {
  text-align: center;
  padding: 18px 8px 8px;
}
.apply-done .mark {
  width: 56px; height: 56px; border-radius: 18px;
  background: var(--ok-dim); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
}
.apply-done h2 { font-size: 18px; margin-bottom: 6px; }
.apply-done p { color: var(--text-2); font-size: 13px; line-height: 1.6; }
.apply-progress { margin: 16px 0 4px; list-style: none; }
.apply-progress li {
  display: flex; gap: 10px; text-align: left;
  padding: 8px 0;
}
.apply-progress b {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg-2); color: var(--text-3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; margin-top: 1px;
}
.apply-progress .ok b { background: var(--ok); color: #fff; }
.apply-progress .now b { background: var(--p); color: #fff; }
.apply-progress .wait { color: var(--text-3); }
.apply-progress h4 { font-size: 13px; }
.apply-progress span { color: var(--text-3); font-size: 11px; }

.profile-hero {
  height: 280px;
  margin: 0 -16px 0;
  background: #5d7ea8;
  position: relative;
  overflow: hidden;
}
.profile-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.profile-hero.mini {
  height: 44px;
  background: #fff;
  margin-top: 0;
}
.profile-hero.mini .nav.overlay {
  position: relative;
  top: 0;
  color: var(--text);
}
.profile-hero.mini .nav.overlay .side {
  background: transparent;
  color: var(--text);
}
.profile-hero .nav.overlay { color: #fff; }
.profile-hero .nav.overlay .side {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.profile-card.compact + .none { display: none; }
.profile-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 22px 22px 0 0;
  margin: -42px -16px 0;
  padding: 18px 16px 8px;
}
.profile-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.profile-head .avatar { width: 52px; height: 52px; font-size: 18px; }
.profile-card.compact {
  margin-top: 0;
  border-radius: 0;
}
.profile-name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-name h2 { font-size: 20px; }
.profile-name .sex {
  width: 18px; height: 18px; border-radius: 50%;
  background: #e8f2ff; color: var(--p);
  font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.profile-name .lv {
  height: 18px; padding: 0 6px; border-radius: 6px;
  background: #e8f2ff; color: var(--p);
  font-size: 10px; font-weight: 800;
}
.profile-meta { color: var(--text-3); font-size: 12px; margin-top: 6px; }
.profile-tabs {
  display: flex;
  gap: 28px;
  padding: 4px 4px 0;
  border-bottom: 1px solid var(--line);
  margin: 4px 0 14px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 6;
}
.profile-tabs button {
  height: 40px;
  color: var(--text-3);
  font-size: 15px;
  font-weight: 600;
  position: relative;
}
.profile-tabs button.on {
  color: var(--p);
}
.profile-tabs button.on::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 22px; height: 3px;
  margin-left: -11px;
  background: var(--p);
  border-radius: 3px 3px 0 0;
}
.profile-sec { margin-bottom: 22px; scroll-margin-top: 52px; }
.profile-sec:last-child { padding-bottom: 24px; }
.profile-sec h3 { font-size: 16px; margin-bottom: 12px; }
.profile-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.55;
}
.profile-row dt { color: var(--text-3); min-width: 42px; }
.profile-row dd { flex: 1; color: var(--text); }
.profile-row .copy {
  color: var(--p);
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
}
.interest {
  display: inline-flex;
  height: 22px; padding: 0 8px;
  border-radius: 6px;
  background: var(--bg-2);
  color: var(--text-2);
  font-size: 11px;
  margin-right: 6px;
}
.skill-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.skill-row .gmark {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 800;
  flex-shrink: 0;
}
.skill-row .gmark.kog { background: linear-gradient(145deg, #f5c15a, #e08a10); }
.skill-row .gmark.hp { background: linear-gradient(145deg, #4a4a4a, #111); }
.skill-row .who { flex: 1; min-width: 0; }
.skill-row .who b { display: block; font-size: 14px; }
.skill-row .who span { color: var(--text-3); font-size: 12px; }
.skill-row .btn { min-width: 64px; }
.feed {
  padding: 12px 0 16px;
  border-bottom: 1px solid var(--line);
}
.feed .who {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.feed .who .avatar { width: 32px; height: 32px; font-size: 12px; }
.feed .who b { font-size: 13px; }
.feed .who .lv {
  height: 16px; padding: 0 5px; border-radius: 5px;
  background: #e8f2ff; color: var(--p); font-size: 10px;
}
.feed p { font-size: 14px; line-height: 1.55; margin-bottom: 10px; }
.feed-pics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.feed-pics span {
  height: 88px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.feed-tag {
  color: var(--p);
  font-size: 12px;
  margin-top: 8px;
}
.feed-loc { color: var(--text-3); font-size: 11px; margin-top: 4px; }
.dock.profile {
  background: #fff;
}
.dock.profile .icon-act.on { color: var(--p); }
.dock.profile .btn { flex: 1.6; }

@media (max-width: 430px) {
  .stage { padding: 0; }
  .device { width: 100%; height: 100dvh; border-radius: 0; box-shadow: none; }
}
