@import url('/v3/assets/css/base.css?v=20260721inputfix1');
:root { --nav-height: 72px; }
html, body { min-height: 100%; }
body { min-height: 100vh; min-height: 100dvh; padding-bottom: calc(var(--nav-height) + env(safe-area-inset-bottom)); }
.app-shell { width: min(720px, 100%); min-height: 100vh; min-height: 100dvh; margin: 0 auto; background: var(--paper); }
.app-header { position: sticky; top: 0; z-index: 20; display: grid; grid-template-columns: 42px minmax(0,1fr) auto; align-items: center; min-height: 64px; padding: 8px 16px; border-bottom: 1px solid var(--line); background: rgba(248,245,239,.96); }
.app-header h1 { margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 20px; text-align: center; letter-spacing: 0; }
.discover-header { grid-template-columns: minmax(0,1fr) auto; min-height: 44px; padding-top: 0; padding-bottom: 0; border-bottom: 0; background: transparent; }
.discover-header + .app-main { padding-top: 4px; }
.discover-header-copy { display: grid; min-width: 0; gap: 3px; text-align: left; }.discover-header-copy strong { overflow: hidden; font-size: 21px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }.discover-header-copy small { overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--ink); font-size: 23px; }
.header-actions { display: flex; align-items: center; gap: 2px; }
.header-actions .icon-button { width: 38px; height: 38px; }
.header-actions svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-notice { position: relative; }
.header-notice i { position: absolute; top: 6px; right: 6px; width: 7px; height: 7px; border: 2px solid var(--paper); border-radius: 50%; background: var(--coral); }
.app-main { padding: 18px 16px 40px; }
.page-intro { display: grid; gap: 6px; margin: 4px 0 24px; }
.page-intro h2 { margin: 0; font-size: 28px; line-height: 1.2; letter-spacing: 0; }
.page-intro p { margin: 0; color: var(--muted); line-height: 1.65; }
.section { margin: 28px 0 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.section-head h3 { margin: 0; font-size: 18px; letter-spacing: 0; }
.section-head a, .text-action { border: 0; background: none; color: var(--coral-dark); font-weight: 700; }
.content-list { display: grid; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.content-item { display: grid; grid-template-columns: 52px minmax(0,1fr) auto; gap: 12px; align-items: center; min-height: 76px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.content-item.no-avatar { grid-template-columns: minmax(0,1fr) auto; }
.avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: #eee7df; }
.avatar.small { width: 38px; height: 38px; }
.content-copy { min-width: 0; }
.content-copy strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; }
.content-copy p { display: -webkit-box; margin: 5px 0 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.meta { color: var(--muted); font-size: 12px; }
.pill { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; background: #eee8e1; color: #625d61; font-size: 12px; font-weight: 700; }
.pill.mint { background: var(--mint); color: var(--mint-ink); }
.pill.coral { background: #fee7ec; color: var(--coral-dark); }
.rail { display: flex; gap: 9px; margin: 0 -16px; padding: 0 16px 4px; overflow-x: auto; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail .pill { flex: none; min-height: 38px; padding: 0 15px; border: 1px solid var(--line); background: var(--card); }
.rail .pill.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.feature-tile { min-height: 132px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.feature-tile strong { display: block; margin-top: 24px; font-size: 17px; }
.feature-tile p { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 13px 14px; outline: none; background: var(--card); color: var(--ink); }
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--coral); }
.primary-button, .secondary-button { min-height: 50px; border: 0; border-radius: 8px; padding: 0 18px; font-weight: 800; }
.primary-button { background: var(--coral); color: #fff; }
.secondary-button { background: #ece6df; color: var(--ink); }
.action-link { display: grid; place-items: center; }
.primary-button:disabled, .secondary-button:disabled { opacity: .45; }
.button-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.inline-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.danger-text { color: #b92e4f; }
.tag-preview { display: flex; flex-wrap: wrap; gap: 8px; min-height: 38px; padding: 12px; border: 1px solid var(--line); background: var(--card); }
.file-input { position: absolute; width: 1px !important; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.upload-control { display: grid; gap: 4px; padding: 14px; border: 1px dashed #bdb4ac; border-radius: 8px; background: var(--card); cursor: pointer; }
.upload-control b { color: var(--coral-dark); font-size: 14px; }
.upload-control span { overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.file-input:focus + .upload-control { outline: 2px solid var(--coral); outline-offset: 2px; }
.qr-preview { width: 120px; height: 120px; object-fit: cover; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.profile-actions { margin-top: 28px; }
.share-box { display: grid; gap: 7px; margin-top: 18px; padding: 16px; border: 1px solid var(--line); background: var(--card); overflow-wrap: anywhere; }
.metric-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.metric { min-width: 0; padding: 15px; border: 1px solid var(--line); background: var(--card); }
.metric span { display: block; color: var(--muted); font-size: 12px; }
.metric strong { display: block; margin-top: 7px; overflow: hidden; font-size: 20px; text-overflow: ellipsis; white-space: nowrap; }
.toggle-line { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 70px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.toggle-line span { display: grid; gap: 4px; }
.toggle-line small { color: var(--muted); }
.toggle-line input { width: 22px; height: 22px; flex: none; accent-color: var(--coral); }
.notice { padding: 13px 14px; border-left: 3px solid var(--yellow); background: #fff9e9; color: #675d42; font-size: 13px; line-height: 1.55; }
.empty { padding: 52px 16px; color: var(--muted); text-align: center; }
.empty strong { display: block; margin-bottom: 7px; color: var(--ink); font-size: 18px; }
.feed { display: grid; gap: 20px; }
.post { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.post-author { display: flex; align-items: center; gap: 10px; }
.post-content { margin: 12px 0; white-space: pre-wrap; line-height: 1.7; }
.post-content-link { display: block; color: var(--ink); }
.post-images { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 4px; margin: 12px 0; }
.media-shell { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: #eee8e1; }
.media-shell picture { display: block; width: 100%; height: 100%; }
.media-shell::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,#eee8e1 0,#f8f5f0 48%,#eee8e1 100%); background-size: 220% 100%; animation: skeletonSweep 1.35s linear infinite; }
.media-shell img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .2s ease; }
.media-shell.loaded::before { display: none; }
.media-shell.loaded img { opacity: 1; }
.media-shell.failed img { display: none; }
.media-shell.failed::after { content: "图片暂时无法显示"; position: absolute; inset: 0; display: grid; place-items: center; padding: 8px; color: var(--muted); font-size: 11px; text-align: center; }
.post-actions { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 13px; }
.post-action { border: 0; padding: 0; background: none; color: var(--muted); font-size: 13px; }
.post-action b { font-weight: 600; }
.post-action.liked { color: var(--coral-dark); }
.post-comment-form { position: static; bottom: auto; }
.comment-list .content-item { grid-template-columns: 42px minmax(0,1fr); }
.hero-band { padding: 24px 20px; border: 1px solid var(--line); border-left: 6px solid var(--coral); background: var(--card); }
.hero-band h2 { margin: 0; font-size: 28px; letter-spacing: 0; }
.hero-band p { margin: 10px 0 0; color: var(--muted); line-height: 1.65; }
.room-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.room { min-height: 176px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.room .avatars { display: flex; margin: 14px 0; }
.room .avatars .avatar { margin-right: -9px; border: 2px solid var(--card); }
.seat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px 8px; margin: 22px 0; }
.seat { display: grid; justify-items: center; gap: 6px; border: 0; background: transparent; color: var(--muted); font-size: 11px; }
.seat-disc { width: 56px; height: 56px; display: grid; place-items: center; border: 1px dashed #bdb4ac; border-radius: 50%; background: #f1ece6; overflow: hidden; }
.seat-disc img { width: 100%; height: 100%; object-fit: cover; }
.chat-log { display: grid; gap: 10px; min-height: 280px; max-height: 55vh; overflow-y: auto; }
.bubble { width: fit-content; max-width: 82%; padding: 10px 12px; border-radius: 8px; background: #eee8e1; line-height: 1.5; }
.bubble.mine { margin-left: auto; background: var(--mint); }
.bubble small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.message-center-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 42px; margin-bottom: 12px; color: var(--muted); font-size: 12px; }
.message-center-toolbar span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.message-center-toolbar b { color: var(--ink); font-size: 14px; }
.message-center-toolbar a { flex: none; color: var(--coral-dark); font-weight: 800; }
.message-center-tabs { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; }
.message-center-tabs a { min-width: 0; min-height: 46px; display: grid; place-items: center; padding: 0 6px; border-radius: 999px; background: #f0efef; color: #413e40; font-size: 14px; font-weight: 700; white-space: nowrap; }
.message-center-tabs a.active { background: #050505; color: #fff; }
.message-section { margin-top: 18px; }
.message-center-list { border-top: 0; }
.message-center-item { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; min-height: 82px; border-bottom: 1px solid var(--line); }
.message-center-link { min-width: 0; display: grid; grid-template-columns: 44px minmax(0,1fr) auto; align-items: center; gap: 11px; min-height: 82px; padding: 10px 0; color: var(--ink); }
.message-center-detail { width: 100%; border: 0; text-align: left; font: inherit; background: transparent; cursor: pointer; }
.message-center-detail:active { background: rgba(238,232,225,.62); }
.message-center-avatar { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; overflow: hidden; background: #eee7df; }
.message-center-avatar .avatar { width: 44px; height: 44px; }
.message-kind-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); }
.message-kind-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.message-kind-letter { display: grid; width: 100%; height: 100%; place-items: center; color: #fff; background: #2e2a33; font-size: 14px; font-weight: 900; }
.message-center-item.unread .message-center-copy strong { color: #b52f50; }
.message-center-copy { min-width: 0; display: grid; gap: 4px; }
.message-center-copy strong, .message-center-copy > span, .message-center-copy small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.message-center-copy strong { font-size: 15px; }
.message-center-copy > span, .message-center-copy small { color: var(--muted); font-size: 13px; }
.message-center-copy small { font-size: 11px; }
.message-center-meta { min-width: 48px; display: grid; justify-items: end; gap: 6px; color: var(--muted); font-size: 11px; }
.message-center-meta small { white-space: nowrap; }
.message-center-thumb { width: 56px; height: 56px; margin-left: 10px; padding: 0; overflow: hidden; border: 0; border-radius: 8px; background: #eee7df; cursor: zoom-in; }
.message-center-thumb img { width: 100%; height: 100%; object-fit: cover; }
.message-image-viewer { z-index: 320; }
body[data-page="messages"] .app-main { padding-top: calc(16px + env(safe-area-inset-top)); padding-bottom: calc(var(--nav-height) + 24px); }
.message-detail-sheet { position: fixed; z-index: 290; inset: 0; pointer-events: none; }
.message-detail-sheet.open { pointer-events: auto; }
.message-detail-sheet[hidden] { display: none; }
.message-detail-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(23,20,28,.42); opacity: 0; transition: opacity .2s ease; }
.message-detail-sheet.open .message-detail-backdrop { opacity: 1; }
.message-detail-panel { position: absolute; right: 0; bottom: 0; left: 50%; display: grid; width: min(720px,100%); gap: 10px; padding: 10px 16px calc(18px + env(safe-area-inset-bottom)); border-radius: 22px 22px 0 0; background: var(--paper); box-shadow: 0 -18px 50px rgba(24,20,28,.2); transform: translate(-50%,105%); transition: transform .26s cubic-bezier(.2,.8,.2,1); }
.message-detail-sheet.open .message-detail-panel { transform: translate(-50%,0); }
.message-detail-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 13px; font-weight: 800; }
.message-detail-head .icon-button { width: 36px; height: 36px; font-size: 25px; }
.message-detail-panel h2 { margin: 4px 0 0; font-size: 21px; }
.message-detail-panel time { color: var(--muted); font-size: 12px; }
.message-detail-panel p { min-height: 56px; margin: 4px 0 8px; color: var(--muted); line-height: 1.7; white-space: pre-wrap; }
.message-detail-confirm { width: 100%; }
.message-meta { display: grid; justify-items: end; gap: 6px; color: var(--muted); }
.message-meta small { white-space: nowrap; }
.unread-badge { min-width: 20px; height: 20px; display: grid; place-items: center; padding: 0 6px; border-radius: 999px; background: var(--coral); color: #fff; font-size: 10px; }
.chat-person { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 10px; margin-bottom: 18px; padding: 12px; border: 1px solid var(--line); background: var(--card); }
.chat-person span { min-width: 0; display: grid; gap: 4px; }
.chat-person small, .chat-person > b { color: var(--muted); font-size: 11px; }
.chat-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; }
.chat-actions .secondary-button { min-height: 40px; }
.gift-panel { margin-top: 12px; padding: 14px; border: 1px solid var(--line); background: var(--card); }
.gift-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin-top: 12px; }
.gift-option { min-width: 0; min-height: 100px; display: grid; place-items: center; align-content: center; gap: 4px; padding: 8px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); color: var(--ink); }
.gift-option > span { font-size: 28px; }
.gift-option strong, .gift-option small { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gift-option small { color: var(--muted); font-size: 10px; }
.gift-option:disabled { opacity: .48; }
.composer { position: sticky; bottom: calc(var(--nav-height) + 8px); display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 14px; padding: 8px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.chat-composer { position: static; bottom: auto; }
.composer input { min-width: 0; border: 0; outline: 0; background: transparent; }
.composer button { min-width: 62px; border: 0; border-radius: 8px; background: var(--ink); color: #fff; font-weight: 800; }
.wallet-strip { display: flex; align-items: end; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wallet-strip strong { font-size: 28px; }
.product-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.product { padding: 15px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.product h4 { margin: 20px 0 5px; }
.product p { min-height: 38px; margin: 0; color: var(--muted); font-size: 12px; }
.product button { width: 100%; min-height: 40px; margin-top: 12px; border: 0; border-radius: 8px; background: var(--ink); color: #fff; }
.live-tools { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; margin-bottom: 18px; }
.discover-search { display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 10px; min-height: 52px; padding: 0 15px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); color: var(--muted); }
.discover-search span { color: var(--ink); font-size: 21px; }
.discover-search b { overflow: hidden; font-size: 14px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.first-section { margin-top: 22px; }
.discover-shortcuts { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); }
.discover-shortcuts a { min-width: 0; min-height: 86px; display: grid; align-content: center; gap: 6px; padding: 14px 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); }
.discover-shortcuts a:nth-child(2n) { border-right: 0; }
.discover-shortcuts b { font-size: 15px; }
.discover-shortcuts span { overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.global-search { display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 10px; min-height: 52px; padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }
.global-search span { font-size: 21px; }
.global-search input { min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 15px; }
.search-types { margin-top: 14px; }
.search-state { min-height: 320px; margin-top: 18px; }
.search-result-list { border-top: 0; }
.search-skeleton { display: grid; gap: 1px; overflow: hidden; border-top: 1px solid var(--line); }
.search-skeleton i { display: block; height: 76px; background: linear-gradient(90deg,#eee8e1 0,#faf8f4 48%,#eee8e1 100%); background-size: 220% 100%; animation: skeletonSweep 1.35s linear infinite; }
.live-tools .primary-button { display: grid; place-items: center; white-space: nowrap; }
.live-search { display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 8px; min-height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.live-search input { min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); }
.live-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.live-card { min-width: 0; }
.live-cover { position: relative; aspect-ratio: 3 / 4; display: grid; place-items: center; overflow: hidden; border-radius: 8px; background: #17151a; color: #fff; font-weight: 900; letter-spacing: .12em; }
.live-cover img { width: 100%; height: 100%; object-fit: cover; }
.live-card-top { position: absolute; inset: 10px 10px auto; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.live-card-top i { font-style: normal; }
.live-viewers { padding: 5px 8px; border-radius: 999px; background: rgba(0,0,0,.55); color: #fff; font-size: 11px; }
.live-card > strong { display: block; margin-top: 9px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.live-card > p { margin: 4px 0 0; overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.withdrawal-item { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 14px; align-items: center; min-height: 88px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.qr-dialog { width: min(88vw,380px); padding: 24px; border: 0; border-radius: 12px; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.qr-dialog::backdrop { background: rgba(24,20,24,.65); }
.qr-dialog .icon-button { position: absolute; top: 8px; right: 8px; }
.qr-dialog img { width: 100%; max-height: 58vh; margin-top: 12px; object-fit: contain; background: #fff; }
.toast { position: fixed; z-index: 80; left: 50%; bottom: calc(var(--nav-height) + 26px); max-width: min(88vw,420px); transform: translateX(-50%); padding: 11px 15px; border-radius: 8px; background: #28242a; color: #fff; font-size: 13px; box-shadow: var(--shadow); }
.header-spacer { width: 42px; height: 42px; }
.bottom-nav { position: fixed; z-index: 50; left: 50%; bottom: 0; width: min(720px,100%); height: calc(72px + env(safe-area-inset-bottom)); transform: translateX(-50%); display: grid; grid-template-columns: repeat(5,1fr); align-items: start; padding: 7px 5px env(safe-area-inset-bottom); border-top: 1px solid #eff1ef; background: rgba(255,255,255,.98); box-shadow: 0 -8px 26px rgba(34,48,41,.05); }
.bottom-nav a { position: relative; height: 58px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 3px; color: #a0a4a2; }
.bottom-nav a > span { position: relative; width: 29px; height: 29px; display: grid; place-items: center; }
.bottom-nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bottom-nav a > b { font-size: 11px; font-weight: 700; }
.bottom-nav a.active { color: #101311; }
.bottom-nav a.active > span { border-radius: 10px; color: #07382a; background: var(--mint); }
.bottom-nav .publish-button { justify-content: flex-start; }
.bottom-nav .publish-button span { width: 58px; height: 48px; margin-top: -16px; border-radius: 16px; color: #fff; background: #111318; box-shadow: 0 7px 18px rgba(17,19,24,.22); }
.bottom-nav .publish-button svg { width: 27px; height: 27px; }
.nav-unread { position: absolute; top: -4px; right: -7px; min-width: 17px; height: 17px; display: grid; place-items: center; padding: 0 4px; border: 2px solid #fff; border-radius: 9px; color: #fff; background: #ff416f; font-size: 8px; font-style: normal; }
.nav-unread[hidden] { display: none; }
.nav-avatar { overflow: hidden; border: 1px solid #dfe3df; border-radius: 50%; background: #f3f4f3; font-size: 10px; }
.nav-avatar img { width: 100%; height: 100%; object-fit: cover; }
.loading { display: grid; place-items: center; min-height: 50vh; color: var(--muted); }
.page-loading-skeleton { width: min(720px,100%); min-height: 100vh; min-height: 100dvh; margin: 0 auto; padding: 26px 16px; background: var(--paper); }
.page-loading-skeleton i { display: block; border-radius: 6px; background: linear-gradient(90deg,#eee8e1 0,#faf8f4 48%,#eee8e1 100%); background-size: 220% 100%; animation: skeletonSweep 1.35s linear infinite; }
.page-loading-skeleton i:first-child { width: 42%; height: 28px; margin: 38px auto 30px; }
.page-loading-skeleton i:nth-child(2) { width: 70%; height: 22px; margin-bottom: 14px; }
.page-loading-skeleton i:nth-child(3) { width: 100%; height: 54px; margin-bottom: 28px; }
.page-loading-skeleton i:nth-child(n+4) { width: 100%; height: 112px; margin-bottom: 12px; }
.route-pending { pointer-events: none; }
.route-loading-bar { position: fixed; z-index: 200; top: 0; left: 0; width: 38%; height: 3px; border-radius: 0 3px 3px 0; background: linear-gradient(90deg,#26d6a0,#f25d7e); box-shadow: 0 0 12px rgba(38,214,160,.38); animation: routeProgress .9s ease-in-out infinite; }
@keyframes routeProgress { 0% { width: 12%; transform: translateX(-100%); } 55% { width: 48%; } 100% { width: 28%; transform: translateX(360%); } }
@keyframes skeletonSweep { from { background-position: 100% 0; } to { background-position: -120% 0; } }
@media (prefers-reduced-motion: reduce) { .route-loading-bar { animation: none; width: 100%; opacity: .7; } }
@media (min-width: 680px) { .feature-grid { grid-template-columns: repeat(4,1fr); } .product-grid { grid-template-columns: repeat(3,1fr); } .room-grid, .live-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 420px) { .app-main { padding-inline: 14px; } .message-center-tabs { gap: 6px; } .message-center-tabs a { min-height: 44px; padding-inline: 3px; font-size: 12px; } .feature-grid, .product-grid { grid-template-columns: 1fr 1fr; } .page-intro h2, .hero-band h2 { font-size: 24px; } .button-row { grid-template-columns: 1fr; } .metric-grid { grid-template-columns: 1fr 1fr; } .gift-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } .withdrawal-item { grid-template-columns: 1fr; } .withdrawal-item .inline-actions { justify-content: flex-start; } }

/* Full rebuild: shared interaction, creation, assets and realtime rooms */
button, a, input, textarea, select { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible { outline: 3px solid rgba(242,93,126,.35); outline-offset: 3px; }
.action-dialog { width: min(92vw,440px); padding: 0; border: 0; border-radius: 18px; color: var(--ink); background: var(--card); box-shadow: 0 24px 80px rgba(31,29,43,.24); }
.action-dialog::backdrop { background: rgba(23,21,29,.52); backdrop-filter: blur(3px); }
.action-dialog > form { display: grid; gap: 14px; padding: 24px; }
.action-dialog h2 { margin: 0; font-size: 22px; }.action-dialog p { margin: 0; color: var(--muted); line-height: 1.65; }
.dialog-mark { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: #136d53; background: var(--mint); font-weight: 900; }.dialog-mark.danger { color: #fff; background: #d94868; }
.dialog-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }.danger-button { background: #c93658; }
.field-counter { justify-self: end; color: var(--muted); font-size: 12px; }.field-counter b { color: var(--ink); }
.media-preview-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px; }.media-preview { position: relative; aspect-ratio: 1; overflow: hidden; padding: 0; border: 0; border-radius: 10px; background: #eee; }.media-preview img { width: 100%; height: 100%; object-fit: cover; }.media-preview span { position: absolute; top: 5px; right: 5px; display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; color: #fff; background: rgba(20,19,24,.72); font-size: 18px; }
.profile-avatar-editor { display: flex; align-items: center; gap: 16px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }.profile-avatar-editor > img { width: 82px; height: 82px; flex: 0 0 82px; border-radius: 50%; object-fit: cover; }.profile-avatar-editor > div { display: grid; gap: 8px; }.avatar-upload-button { display: grid; min-height: 42px; place-items: center; cursor: pointer; }.profile-avatar-editor small { color: var(--muted); }
.profile-hero { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px; border-radius: 18px; color: #fff; background: linear-gradient(135deg,#24212d,#4b3446 60%,#743e57); }.profile-hero h2 { margin: 0; }.profile-hero p { margin: 5px 0 0; color: rgba(255,255,255,.72); }.profile-hero > a { flex: none; padding: 8px 12px; border-radius: 999px; color: #fff; background: rgba(255,255,255,.14); }
.wallet-strip { text-decoration: none; }.me-shortcuts { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin: 12px 0 26px; }.me-shortcuts a { display: grid; gap: 5px; min-width: 0; padding: 14px 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }.me-shortcuts b { font-size: 14px; }.me-shortcuts span { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.asset-hero { padding: 28px 22px; border-radius: 20px; color: #fff; background: radial-gradient(circle at 90% 10%,rgba(255,255,255,.2),transparent 32%),linear-gradient(135deg,#211f2a,#65384e); }.asset-hero span,.asset-hero p { color: rgba(255,255,255,.72); }.asset-hero strong { display: block; margin: 10px 0; font-size: 42px; }.asset-hero p { margin: 0; font-size: 12px; }
.asset-unit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; margin-top: 14px; }.asset-unit-grid > div { display: grid; gap: 7px; padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }.asset-unit-grid b { font-size: 15px; }.asset-unit-grid span { color: var(--muted); font-size: 12px; line-height: 1.5; }.transaction-amount { color: #b33758; }.transaction-amount.income { color: #168263; }
.order-tabs,.shop-links { display: flex; gap: 10px; margin-bottom: 18px; }.order-tabs a,.shop-links a { flex: 1; min-height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: var(--card); font-weight: 800; }.order-tabs a.active { color: #fff; background: var(--ink); }.order-grid { display: grid; gap: 11px; }.order-card { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }.order-card-head,.order-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }.order-card-head { color: var(--muted); font-size: 12px; }.order-card-head b { color: var(--coral-dark); }.order-card h3 { margin: 18px 0 6px; }.order-card-foot { margin-top: 18px; }.order-card-foot > strong { font-size: 21px; }.after-sale-dialog textarea { min-height: 130px; }
.voice-stage { min-width: 0; padding: 22px; overflow: hidden; border-radius: 22px; color: #fff; background: radial-gradient(circle at 85% 0,rgba(85,235,193,.2),transparent 32%),linear-gradient(150deg,#191722,#3b2a3a); box-shadow: 0 18px 42px rgba(31,29,43,.16); }.voice-stage-head { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 10px; }.voice-stage h2 { max-width: 100%; margin: 18px 0 7px; overflow-wrap: anywhere; word-break: break-word; font-size: 27px; line-height: 1.25; letter-spacing: 0; }.voice-stage p { margin: 0; overflow-wrap: anywhere; color: rgba(255,255,255,.7); line-height: 1.6; }.voice-connection { min-width: 0; flex: 0 1 auto; color: #8ff0cf; font-size: 12px; text-align: right; }.voice-controls { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; margin-top: 20px; }.voice-control { display: flex; min-width: 0; min-height: 58px; align-items: center; justify-content:center; gap: 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; color: #fff; background: rgba(255,255,255,.08); }.voice-control:disabled { opacity: .5; }.voice-control span { font-size: 20px; }.voice-control b { min-width: 0; overflow-wrap: anywhere; }.seat.mine .seat-disc { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(242,93,126,.14); }
.gift-entry span { font-size: 18px; }
.discover-hero { position: relative; overflow: hidden; display: grid; gap: 12px; padding: 26px 22px; margin-bottom: 14px; border-radius: 22px; color: #fff; background: radial-gradient(circle at 90% 5%,rgba(112,239,203,.26),transparent 34%),linear-gradient(140deg,#1d1b26,#4a3143 62%,#753c56); box-shadow: 0 18px 42px rgba(37,30,40,.14); }.discover-hero::after { content: "遇见"; position: absolute; right: -8px; bottom: -26px; color: rgba(255,255,255,.055); font-size: 86px; font-weight: 950; letter-spacing: -.08em; }.discover-kicker { color: #91f0d3; font-size: 11px; font-weight: 900; letter-spacing: .13em; }.discover-hero h2 { position: relative; z-index: 1; margin: 0; font-size: 30px; letter-spacing: -.04em; }.discover-hero p { position: relative; z-index: 1; max-width: 490px; margin: 0; color: rgba(255,255,255,.72); line-height: 1.65; }.discover-hero > div { position: relative; z-index: 1; display: flex; gap: 9px; margin-top: 5px; }.discover-hero > div a { min-height: 42px; display: grid; place-items: center; padding: 0 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #fff; background: rgba(255,255,255,.1); font-weight: 800; }.discover-hero > div a:first-child { border-color: transparent; color: #18231f; background: #89e8c8; }
.search-landing { display: grid; gap: 30px; }.search-landing section { min-width: 0; }.search-landing .rail { margin-top: 4px; }.search-landing .pill { cursor: pointer; }.search-landing .notice { margin-top: -4px; }
.settings-group { margin-top: 28px; }.settings-group:first-child { margin-top: 0; }.settings-group > h3 { margin: 0 0 10px; font-size: 18px; }.settings-group .section-head { margin-bottom: 6px; }.session-list .content-item { min-height: 82px; }.session-list .text-action { white-space: nowrap; }.settings-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }.settings-group > .meta { display: block; margin: 12px 0 0; line-height: 1.6; }
.privacy-settings-form { width: 100%; min-width: 0; grid-template-columns: minmax(0,1fr); gap: 34px; }
.privacy-settings-section { width: 100%; min-width: 0; display: grid; grid-template-columns: minmax(0,1fr); gap: 14px; }
.privacy-settings-section > header { display: grid; gap: 5px; }
.privacy-settings-section > header > span { color: var(--coral-dark); font-size: 10px; font-weight: 900; letter-spacing: 0; }
.privacy-settings-section > header h2 { margin: 0; font-size: 23px; letter-spacing: 0; }
.privacy-settings-section > header p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.business-notification-settings { scroll-margin-top: 78px; }
.notification-channel-state { display: grid; gap: 6px; padding: 13px 14px; border-left: 3px solid #d6a83b; background: #fff7df; }
.notification-channel-state > span { color: #705a22; font-size: 13px; font-weight: 900; }
.notification-channel-state > span.bound { color: #176c53; }
.notification-channel-state small { color: #756d5c; font-size: 11px; line-height: 1.55; }
.notification-setting-list { width: 100%; min-width: 0; display: grid; grid-template-columns: minmax(0,1fr); border-top: 1px solid var(--line); }
.notification-setting-row { min-width: 0; display: grid; gap: 8px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.notification-setting-row > label { min-width: 0; display: grid; grid-template-columns: 38px minmax(0,1fr) 24px; align-items: center; gap: 11px; cursor: pointer; }
.notification-setting-row > label > span:not(.notification-setting-icon) { display: grid; min-width: 0; gap: 4px; }
.notification-setting-row > label b { font-size: 14px; }
.notification-setting-row > label small { color: var(--muted); font-size: 11px; line-height: 1.45; }
.notification-setting-row input, .notification-dnd input { width: 22px; height: 22px; accent-color: var(--coral); }
.notification-setting-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 8px; color: #fff; background: #2e2a33; font-size: 13px; font-weight: 900; }
.notification-setting-row > div { min-width: 0; display: grid; grid-template-columns: 48px minmax(0,1fr); align-items: center; gap: 9px; padding-left: 49px; color: var(--muted); font-size: 11px; }
.notification-auth-action { width: 100%; min-width: 0; min-height: 30px; display: inline-flex; align-items: center; justify-content: center; padding: 6px 10px; overflow-wrap: anywhere; border: 1px solid #d7d0c8; border-radius: 8px; color: var(--ink); background: var(--card); font-size: 11px; font-weight: 800; line-height: 1.35; text-align: center; }
.notification-auth-action.ready { border-color: #8bc9b5; color: #176c53; background: #e3f7ef; }
.notification-auth-action.used { color: #8b5621; background: #fff4e1; }
.notification-auth-action.unavailable { color: var(--muted); background: #efedeb; }
.notification-auth-action[aria-busy="true"] { pointer-events: none; opacity: .65; }
.notification-dnd { margin-top: -2px; }
.media-preview-grid.single { grid-template-columns: minmax(0,220px); }.circle-hero-cover { width: 100%; max-height: 260px; margin-bottom: 18px; border-radius: 12px; object-fit: cover; }.circle-comments { margin-top: 14px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }.circle-comments .content-list { border-top: 0; }.circle-comments .content-item { min-height: 62px; }.partner-chat-log { min-height: 180px; max-height: 420px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }
.voice-room-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin: 12px 0; }.voice-room-actions > * { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--card); }.voice-room-actions > *:last-child { color: #a92f50; }.voice-room-actions span { font-size: 18px; }.voice-gift-panel { margin-bottom: 18px; border-radius: 14px; }.voice-gift-message { background: #fff2c9; }.voice-gift-message > span { font-size: 18px; }
@media (max-width:420px) { .asset-hero strong { font-size: 36px; }.asset-unit-grid { grid-template-columns: 1fr; }.me-shortcuts { gap: 6px; }.me-shortcuts a { padding: 12px 7px; }.dialog-actions { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }

/* Post composer rebuild */
.post-create-shell{background:#fff}.post-create-main{padding:0 16px 124px}.post-compose-nav{position:sticky;z-index:30;top:0;display:grid;grid-template-columns:44px 1fr 44px;align-items:center;min-height:58px;margin:0 -16px 8px;padding:env(safe-area-inset-top) 12px 0;border-bottom:1px solid rgba(32,29,35,.07);background:rgba(255,255,255,.96);backdrop-filter:blur(16px)}.post-compose-nav .icon-button{grid-column:1}.post-compose-nav svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.post-compose-nav>span{grid-column:2;color:var(--muted);font-size:12px;text-align:center}
.post-create-form{display:grid;gap:0}.post-media-card{position:relative;min-height:378px;margin:8px 0 0;padding:62px 20px 18px;border:1px solid #eeece8;border-radius:24px;background:#f5f5f3;box-shadow:0 14px 35px rgba(37,33,39,.06)}.post-media-mode{position:absolute;top:16px;left:16px;display:flex;gap:4px;padding:4px;border-radius:12px;background:#e9e7e3}.post-media-mode button{min-width:58px;height:34px;padding:0 12px;border:0;border-radius:9px;color:#777278;background:transparent;font-weight:800}.post-media-mode button.active{color:#fff;background:#201e27}.post-daily-mark{position:absolute;z-index:4;right:-10px;top:122px;display:grid;width:76px;height:76px;place-items:center;align-content:center;gap:3px;border:4px solid #fff;border-radius:50%;color:#172017;background:#c9ff28;box-shadow:0 10px 22px rgba(73,94,14,.22);transform:rotate(-4deg)}.post-daily-mark svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.post-daily-mark b{font-size:13px}.post-media-panel{min-height:290px;display:grid;align-content:center}.post-media-empty{display:grid;min-height:250px;place-items:center;align-content:center;gap:10px;color:#6e6970;text-align:center;cursor:pointer}.post-media-empty>span{display:grid;width:74px;height:74px;place-items:center;border:1px solid #dedbd6;border-radius:24px;background:#fff}.post-media-empty svg{width:36px;height:36px;fill:none;stroke:#27242d;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.post-media-empty strong{color:#27242d;font-size:20px}.post-media-empty small{font-size:12px}.post-media-grid{width:100%;align-self:center}.post-media-grid .media-preview{border-radius:14px;box-shadow:0 5px 14px rgba(36,32,38,.08)}.post-add-media{width:max-content;margin:14px auto 0;padding:9px 14px;border:1px solid #dedad4;border-radius:10px;background:#fff;font-size:12px;font-weight:800;cursor:pointer}.post-cover-note{margin:12px 0 24px;color:#aaa5aa;font-size:12px;text-align:center}
.post-video-preview{display:grid;gap:12px;width:100%}.post-video-stage{display:grid;min-height:230px;place-items:center;overflow:hidden;border-radius:18px;background:#17161d}.post-video-stage video{display:block;width:100%;max-height:300px;object-fit:contain}.post-video-fallback{display:grid;justify-items:center;gap:10px;color:#fff}.post-video-fallback span{display:grid;width:54px;height:54px;place-items:center;border:1px solid rgba(255,255,255,.28);border-radius:50%;font-size:21px}.post-video-fallback b{font-size:13px}.post-video-info{display:flex;min-width:0;align-items:center;justify-content:space-between;gap:12px}.post-video-info>div{display:grid;min-width:0;gap:4px}.post-video-info strong,.post-video-info span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.post-video-info strong{font-size:13px}.post-video-info span{color:var(--muted);font-size:11px}.post-video-info button{width:36px;height:36px;flex:0 0 36px;border:0;border-radius:50%;color:#fff;background:#282631;font-size:22px}.post-upload-progress{display:grid;gap:7px}.post-upload-progress>span{display:block;height:6px;overflow:hidden;border-radius:4px;background:#dedbd7}.post-upload-progress i{display:block;width:0;height:100%;border-radius:inherit;background:#28c897;transition:width .2s}.post-upload-progress b{color:var(--muted);font-size:11px}
.post-author-summary{display:grid;grid-template-columns:46px minmax(0,1fr) auto;align-items:center;gap:11px;padding:16px 0;border-bottom:1px solid var(--line)}.post-author-summary .avatar{width:46px;height:46px}.post-author-summary>div{display:grid;gap:4px}.post-author-summary strong{font-size:16px}.post-author-summary span{color:var(--muted);font-size:12px}.post-author-summary>b{padding:7px 9px;border-radius:9px;color:#34765f;background:#ddf7eb;font-size:11px}.post-copy-editor{position:relative;padding:22px 0 10px}.post-copy-editor textarea{width:100%;min-height:170px;padding:0 0 28px;border:0;outline:0;background:transparent;color:var(--ink);font:inherit;font-size:18px;line-height:1.75;resize:none}.post-copy-editor textarea::placeholder{color:#aaa6ab}.post-copy-editor>span{position:absolute;right:0;bottom:8px;color:#aaa6ab;font-size:11px}.post-meta-block{padding:20px 0;border-top:1px solid var(--line)}.post-meta-block h2{margin:0 0 13px;font-size:17px}.post-topic-rail{display:flex;gap:8px;margin-right:-16px;padding-right:16px;overflow-x:auto;scrollbar-width:none}.post-topic-rail::-webkit-scrollbar{display:none}.post-topic-chip{flex:0 0 auto;min-height:38px;padding:0 14px;border:1px solid #e1ddd8;border-radius:999px;color:#625e64;background:#fff;font-weight:700}.post-topic-chip.active{border-color:#25222b;color:#fff;background:#25222b}.post-setting-list{border-top:1px solid var(--line)}.post-setting-list>label{display:grid;grid-template-columns:34px 88px minmax(0,1fr);align-items:center;min-height:64px;border-bottom:1px solid var(--line)}.post-setting-icon{display:grid;width:28px;height:28px;place-items:center;color:#625d64;background:#f1eeea;border-radius:9px}.post-setting-list b{font-size:14px}.post-setting-list input[type=text],.post-setting-list input:not([type]),.post-setting-list select{min-width:0;width:100%;padding:11px 0;border:0;outline:0;color:var(--muted);background:transparent;text-align:right;font:inherit;font-size:13px}.post-setting-list input[type=checkbox]{justify-self:end;width:22px;height:22px;accent-color:#25222b}.post-safety-note{margin-top:18px;padding:12px 13px;border-radius:10px;color:#756e60;background:#fff7df;font-size:12px;line-height:1.55}.post-publish-bar{position:fixed;z-index:45;right:50%;bottom:0;width:min(720px,100%);padding:12px 16px calc(12px + env(safe-area-inset-bottom));border-top:1px solid var(--line);background:rgba(255,255,255,.96);backdrop-filter:blur(18px);transform:translateX(50%)}.post-publish-bar .primary-button{width:100%;min-height:54px;border-radius:15px;color:#fff;background:#201e27;font-size:16px}.post-publish-bar .primary-button:disabled{background:#77727a}
.post-video{position:relative;margin:12px 0;overflow:hidden;border-radius:14px;background:#17161d}.post-video video{display:block;width:100%;max-height:70vh;background:#17161d;object-fit:contain}.post-video>span{position:absolute;right:9px;bottom:9px;padding:4px 7px;border-radius:7px;color:#fff;background:rgba(23,22,29,.72);font-size:10px}.post-location{display:flex;width:max-content;max-width:100%;align-items:center;gap:5px;margin:8px 0;color:#6e686f;font-size:12px}.post-action.disabled{cursor:default;opacity:.62}
@media(max-width:380px){.post-media-card{min-height:350px;padding-right:14px;padding-left:14px}.post-daily-mark{right:-7px;width:68px;height:68px}.post-media-empty{min-height:230px}.post-setting-list>label{grid-template-columns:32px 78px minmax(0,1fr)}}

/* Discover rebuild: quick activities first, content second */
.discover-tabs { position: sticky; top: 44px; z-index: 19; display: flex; align-items: center; gap: 28px; margin: 0 0 18px; padding-top: 7px; border-bottom: 1px solid var(--line); background: var(--paper); }
body[data-page="discover"] .discover-tabs { top: 0; }
.discover-tabs a, .discover-tabs button { position: relative; display: inline-flex; align-items: center; min-height: 42px; padding: 0; border: 0; color: var(--muted); background: transparent; font: inherit; font-size: 17px; font-weight: 800; }
.discover-tabs a.active, .discover-tabs button.active { color: var(--ink); }
.discover-tabs a.active::after, .discover-tabs button.active::after { content: ""; position: absolute; right: 4px; bottom: -1px; left: 4px; height: 3px; border-radius: 3px; background: var(--coral); }
.discover-live-section { margin: 4px 0 22px; }
.discover-live-section[hidden] { display: none; }
.discover-quick-toolbar { display: flex; align-items: center; justify-content: flex-end; min-height: 28px; gap: 12px; margin-bottom: 4px; }.discover-quick-toolbar > span { color: var(--muted); font-size: 12px; }.discover-quick-toolbar .text-action { font-size: 13px; }
.discover-recommended-section { margin: 4px 0 26px; }
.unified-journey { margin: 8px 0 28px; padding: 18px 0 0; border-top: 1px solid var(--line); }
.unified-journey > header { display: grid; gap: 4px; margin-bottom: 12px; }
.unified-journey > header span { color: var(--muted); font-size: 12px; }
.unified-journey > header strong { font-size: 18px; }
.unified-journey-list { display: grid; gap: 10px; }
.unified-journey-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.unified-journey-copy { display: grid; min-width: 0; gap: 4px; }
.unified-journey-copy span { color: var(--muted); font-size: 11px; }
.unified-journey-copy strong { overflow-wrap: anywhere; font-size: 15px; }
.unified-journey-copy p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.unified-journey-actions { display: grid; gap: 7px; width: 94px; }
.unified-journey-actions button { min-height: 36px; border: 0; border-radius: 6px; font: inherit; font-size: 12px; }
.unified-journey-go { position: relative; background: var(--ink); color: #fff; font-weight: 700; }
.unified-journey-dismiss { background: transparent; color: var(--muted); }
@media (max-width: 360px) { .unified-journey-card { grid-template-columns: 1fr; } .unified-journey-actions { grid-template-columns: 1fr 1fr; width: 100%; } }
.discover-recommended-head { align-items: end; margin-bottom: 14px; }.discover-recommended-head > div { display: grid; gap: 4px; }.discover-recommended-head h2 { margin: 0; font-size: 22px; }.discover-recommended-head h2 small { margin-left: 4px; color: var(--muted); font-size: 12px; font-weight: 700; }.discover-recommended-head span { color: var(--muted); font-size: 12px; }
.discover-room-waterfall { column-count: 2; column-gap: 11px; }.discover-room-card { display: inline-block; width: 100%; margin: 0 0 12px; overflow: hidden; break-inside: avoid; border: 1px solid var(--line); border-radius: 15px; color: var(--ink); background: var(--card); box-shadow: 0 7px 18px rgba(30,25,30,.05); transition: transform .18s ease, box-shadow .18s ease; }.discover-room-card:active { transform: scale(.985); }.discover-room-card:hover { box-shadow: 0 10px 24px rgba(30,25,30,.1); }.discover-room-cover { position: relative; min-height: 150px; overflow: hidden; background: linear-gradient(145deg,#2a2435,#6a3955); }.discover-room-cover img { display: block; width: 100%; height: auto; min-height: 150px; object-fit: cover; }.discover-room-cover-empty { display: grid; min-height: 150px; place-items: center; color: rgba(255,255,255,.82); font-size: 28px; font-weight: 950; letter-spacing: .14em; }.discover-room-status,.discover-room-viewers { position: absolute; top: 9px; padding: 4px 7px; border-radius: 7px; color: #fff; background: rgba(27,24,31,.72); font-size: 10px; font-weight: 800; }.discover-room-status { left: 9px; }.discover-room-status.live { background: rgba(216,45,95,.88); }.discover-room-viewers { right: 9px; }.discover-room-body { display: grid; gap: 8px; padding: 11px 11px 12px; }.discover-room-body > strong { display: -webkit-box; overflow: hidden; font-size: 14px; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }.discover-room-host { display: flex; min-width: 0; align-items: center; gap: 6px; color: var(--muted); font-size: 11px; }.discover-room-host .avatar { width: 24px; height: 24px; flex: 0 0 24px; }.discover-room-host b { overflow: hidden; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }.discover-room-tags { display: flex; flex-wrap: wrap; gap: 5px; }.discover-room-tags i { padding: 3px 6px; border-radius: 999px; color: #8c3550; background: #fde8ee; font-size: 10px; font-style: normal; }
.discover-live-head { align-items: end; margin-bottom: 13px; }
.discover-live-head > div { display: grid; gap: 4px; }
.discover-live-head h3 { font-size: 21px; }
.discover-live-head span, .discover-feed-section .section-head span { color: var(--muted); font-size: 12px; }
.discover-entry-rail { display: flex; gap: 15px; margin: 0 -16px; padding: 2px 16px 9px; overflow-x: auto; scrollbar-width: none; }
.discover-entry-rail::-webkit-scrollbar { display: none; }
.discover-entry { display: flex; width: 78px; flex: 0 0 78px; align-items: center; flex-direction: column; gap: 5px; color: var(--ink); text-align: center; }
.discover-entry-avatar-wrap { position: relative; width: 68px; height: 68px; }
.discover-entry-avatar { display: grid; width: 68px; height: 68px; place-items: center; overflow: hidden; border: 2px solid #d9d5d0; border-radius: 50%; background: #eee8e1; }
.discover-entry-avatar img { width: 100%; height: 100%; object-fit: cover; }
.discover-entry.voice .discover-entry-avatar { border-color: #36d8ad; box-shadow: 0 0 0 3px rgba(54,216,173,.14); }
.discover-entry.partner .discover-entry-avatar { border-color: #f2c85e; box-shadow: 0 0 0 3px rgba(242,200,94,.14); }
.discover-entry-type { position: absolute; right: -2px; bottom: -2px; display: grid; width: 22px; height: 22px; place-items: center; border: 2px solid var(--paper); border-radius: 50%; color: #fff; background: var(--coral); font-size: 10px; font-style: normal; font-weight: 900; }
.discover-entry.partner .discover-entry-type { color: #5a4100; background: #ffd85f; }
.discover-entry-live { position: absolute; top: 1px; right: 1px; width: 10px; height: 10px; border: 2px solid var(--paper); border-radius: 50%; background: #2ed6a5; box-shadow: 0 0 0 3px rgba(46,214,165,.22); }
.discover-entry strong, .discover-entry small { display: block; max-width: 78px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.discover-entry strong { font-size: 13px; }
.discover-entry small { color: var(--muted); font-size: 11px; }
.discover-entry:active { transform: scale(.97); }
.discover-entry-empty { display: grid; min-height: 82px; flex: 1; place-items: center; border: 1px dashed var(--line); border-radius: 12px; color: var(--muted); font-size: 13px; }
.discover-feed-section { margin-top: 0; }
.discover-feed-section .section-head { align-items: end; }
.discover-feed-section .section-head > div { display: grid; gap: 4px; }
.discover-feed-section .section-head h3 { font-size: 23px; }
.discover-feed-section .feed { gap: 22px; }
.discover-shortcuts a { min-height: 76px; }
.discover-tab-panel { min-height: 180px; }
.discover-panel-section { margin-top: 24px; }
.discover-panel-section > .section-head { align-items: end; }
.discover-panel-section > .section-head > div { display: grid; gap: 4px; }
.discover-panel-section > .section-head span { color: var(--muted); font-size: 12px; }
.discover-footprints-feed { gap: 22px; }
.discover-activity-filters { display: flex; gap: 8px; margin: 18px 0 13px; }
.discover-activity-filters button { min-height: 34px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--card); font-size: 13px; font-weight: 700; }
.discover-activity-filters button.active { border-color: var(--ink); color: #fff; background: var(--ink); }
.discover-activity-list { display: grid; gap: 9px; }
.discover-activity-card { display: flex; min-width: 0; align-items: center; gap: 11px; padding: 13px 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); color: var(--ink); }
.discover-activity-card:active { transform: scale(.99); }
.discover-activity-avatar { display: grid; width: 52px; height: 52px; flex: 0 0 52px; place-items: center; overflow: hidden; border: 2px solid #d8d3ce; border-radius: 50%; background: #eee8e1; }
.discover-activity-avatar img { width: 100%; height: 100%; object-fit: cover; }
.discover-activity-card.voice .discover-activity-avatar { border-color: #36d8ad; }
.discover-activity-card.partner .discover-activity-avatar { border-color: #f2c85e; }
.discover-activity-main { min-width: 0; flex: 1; }
.discover-activity-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.discover-activity-top i { padding: 3px 7px; border-radius: 999px; color: #087858; background: #d9f7eb; font-size: 11px; font-style: normal; font-weight: 800; }
.discover-activity-card.partner .discover-activity-top i { color: #785c0b; background: #fff0bb; }
.discover-activity-top small { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.discover-activity-main > strong { display: block; margin-top: 6px; overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.discover-activity-meta { display: block; margin-top: 4px; overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.discover-activity-arrow { flex: 0 0 auto; color: var(--muted); font-size: 24px; }
.discover-empty-actions { margin-top: 14px; }
@media (max-width: 420px) { .discover-tabs { gap: 23px; }.discover-entry-rail { gap: 13px; }.discover-entry { width: 74px; flex-basis: 74px; }.discover-entry strong,.discover-entry small { max-width: 74px; }.discover-activity-card { padding-inline: 10px; } }
@media (min-width: 680px) { .discover-room-waterfall { column-count: 3; } }
.discover-room-waterfall { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px; column-count: initial; align-items: start; }
.discover-room-column { display: grid; min-width: 0; gap: 11px; }
.discover-room-card { display: block; margin: 0; border: 0; border-radius: 14px; background: #19171e; box-shadow: 0 8px 22px rgba(30,25,30,.1); }
.discover-room-cover { position: relative; min-height: 0; aspect-ratio: 4 / 5; background: linear-gradient(145deg,#2a2435,#6a3955); }
.discover-room-cover img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center; }
.discover-room-cover-empty { min-height: 0; height: 100%; }
.discover-room-topline { position: absolute; z-index: 1; top: 9px; right: 9px; left: 9px; display: flex; align-items: center; justify-content: space-between; gap: 7px; }
.discover-room-status,.discover-room-viewers { position: static; padding: 5px 7px; border-radius: 7px; color: #fff; background: rgba(22,20,27,.72); font-size: 10px; font-weight: 800; }
.discover-room-status.live { background: rgba(218,39,91,.9); }
.discover-room-overlay { position: absolute; right: 0; bottom: 0; left: 0; display: grid; gap: 7px; padding: 42px 11px 11px; color: #fff; background: linear-gradient(transparent,rgba(12,10,15,.9)); }
.discover-room-overlay > strong { display: -webkit-box; overflow: hidden; font-size: 14px; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.discover-room-overlay .discover-room-host { color: rgba(255,255,255,.84); }.discover-room-overlay .discover-room-host .avatar { width: 24px; height: 24px; flex-basis: 24px; border: 1px solid rgba(255,255,255,.7); }.discover-room-overlay .discover-room-tags i { color: #fff; background: rgba(255,255,255,.18); }
.discover-modal-open { overflow: hidden; }
.media-shell[data-lightbox-src] { cursor: zoom-in; }
.discover-lightbox[hidden], .discover-comment-shell[hidden], .discover-search-shell[hidden] { display: none; }
.discover-lightbox { position: fixed; z-index: 300; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(18,16,22,.94); opacity: 0; visibility: hidden; transition: opacity .18s ease, visibility .18s ease; }
.discover-lightbox.open { opacity: 1; visibility: visible; }
.discover-lightbox > img { max-width: min(94vw,900px); max-height: 82vh; object-fit: contain; user-select: none; }
.discover-lightbox-close, .discover-lightbox-nav { position: absolute; z-index: 1; display: grid; place-items: center; border: 0; color: #fff; background: rgba(255,255,255,.12); cursor: pointer; }
.discover-lightbox-close { top: max(16px, env(safe-area-inset-top)); right: 16px; width: 42px; height: 42px; border-radius: 50%; font-size: 28px; }
.discover-lightbox-nav { top: 50%; width: 42px; height: 64px; margin-top: -32px; border-radius: 12px; font-size: 38px; }
.discover-lightbox-nav.prev { left: 16px; }.discover-lightbox-nav.next { right: 16px; }
.discover-lightbox-count { position: absolute; top: max(20px, env(safe-area-inset-top)); left: 50%; color: rgba(255,255,255,.82); font-size: 13px; transform: translateX(-50%); }
.discover-comment-shell { position: fixed; z-index: 290; inset: 0; pointer-events: none; }
.discover-comment-shell.open { pointer-events: auto; }
.discover-sheet-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(23,20,28,.42); opacity: 0; transition: opacity .2s ease; }
.discover-comment-shell.open .discover-sheet-backdrop { opacity: 1; }
.discover-comment-panel { position: absolute; right: 0; bottom: 0; left: 50%; display: flex; width: min(720px,100%); height: min(72vh,680px); min-height: 300px; flex-direction: column; padding: 10px 16px calc(12px + env(safe-area-inset-bottom)); border-radius: 22px 22px 0 0; background: var(--paper); box-shadow: 0 -18px 50px rgba(24,20,28,.2); transform: translate(-50%,105%); transition: transform .26s cubic-bezier(.2,.8,.2,1); }
.discover-comment-shell.open .discover-comment-panel { transform: translate(-50%,0); }
.discover-sheet-handle { width: 42px; height: 4px; margin: 0 auto 10px; border-radius: 4px; background: #d6d0cb; }
.discover-comment-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.discover-comment-head h2 { margin: 0; font-size: 19px; }.discover-comment-head > span { color: var(--muted); font-size: 12px; }.discover-comment-head button { width: 34px; height: 34px; border: 0; border-radius: 50%; color: var(--ink); background: transparent; font-size: 24px; }
.discover-comment-context { display: flex; min-width: 0; align-items: center; gap: 9px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.discover-comment-context img { width: 36px; height: 36px; flex: 0 0 36px; border-radius: 50%; object-fit: cover; background: #eee8e1; }.discover-comment-context div { min-width: 0; }.discover-comment-context strong,.discover-comment-context p { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.discover-comment-context strong { font-size: 13px; }.discover-comment-context p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.discover-comment-list { min-height: 120px; flex: 1; overflow: auto; padding: 4px 0 10px; overscroll-behavior: contain; }
.discover-comment-item { display: flex; gap: 9px; padding: 12px 0; border-bottom: 1px solid var(--line); }.discover-comment-item > img { width: 38px; height: 38px; flex: 0 0 38px; }.discover-comment-item > div { min-width: 0; }.discover-comment-item strong { font-size: 13px; }.discover-comment-item p { margin: 4px 0; color: var(--ink); font-size: 13px; line-height: 1.5; overflow-wrap: anywhere; }.discover-comment-item small { color: var(--muted); font-size: 11px; }.discover-comment-empty,.discover-comment-loading { display: grid; min-height: 150px; place-items: center; color: var(--muted); font-size: 13px; text-align: center; }
.discover-comment-form { display: flex; gap: 8px; padding-top: 10px; border-top: 1px solid var(--line); }.discover-comment-form input { min-width: 0; height: 44px; flex: 1; padding: 0 13px; border: 1px solid var(--line); border-radius: 12px; outline: 0; color: var(--ink); background: var(--card); }.discover-comment-form input:focus { border-color: var(--coral); }.discover-comment-form button { min-width: 62px; height: 44px; border: 0; border-radius: 12px; color: #fff; background: var(--coral); font-weight: 800; }.discover-comment-form button:disabled { opacity: .5; }
.discover-search-shell { position: fixed; z-index: 295; inset: 0; pointer-events: none; }
.discover-search-shell.open { pointer-events: auto; }
.discover-search-shell.open .discover-sheet-backdrop { opacity: 1; }
.discover-search-panel { position: absolute; right: 0; bottom: 0; left: 50%; display: flex; width: min(720px,100%); height: min(82vh,760px); min-height: 360px; flex-direction: column; padding: 10px 16px calc(14px + env(safe-area-inset-bottom)); border-radius: 22px 22px 0 0; background: var(--paper); box-shadow: 0 -18px 50px rgba(24,20,28,.2); transform: translate(-50%,105%); transition: transform .26s cubic-bezier(.2,.8,.2,1); }
.discover-search-shell.open .discover-search-panel { transform: translate(-50%,0); }
.discover-search-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }.discover-search-head h2 { margin: 0; font-size: 20px; }.discover-search-head button { width: 34px; height: 34px; border: 0; border-radius: 50%; color: var(--ink); background: transparent; font-size: 24px; }
.discover-search-form { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding: 0 8px 0 12px; border: 1px solid var(--line); border-radius: 13px; background: var(--card); }.discover-search-form > span { color: var(--muted); font-size: 20px; }.discover-search-form input { min-width: 0; height: 46px; flex: 1; border: 0; outline: 0; color: var(--ink); background: transparent; font: inherit; }.discover-search-form input::placeholder { color: var(--muted); }.discover-search-form button { min-width: 56px; height: 34px; border: 0; border-radius: 9px; color: #fff; background: var(--ink); font-weight: 800; }
.discover-search-types { display: flex; gap: 8px; margin: 13px -2px 8px; overflow-x: auto; scrollbar-width: none; }.discover-search-types::-webkit-scrollbar { display: none; }.discover-search-types button { min-height: 32px; flex: 0 0 auto; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--card); font-size: 12px; font-weight: 800; }.discover-search-types button.active { border-color: var(--ink); color: #fff; background: var(--ink); }
.discover-search-results { min-height: 0; flex: 1; overflow: auto; padding: 8px 0 12px; overscroll-behavior: contain; }.discover-search-list { display: grid; gap: 2px; }.discover-search-result { display: flex; min-width: 0; align-items: center; gap: 10px; padding: 11px 4px; border-bottom: 1px solid var(--line); color: var(--ink); }.discover-search-result > .avatar { width: 42px; height: 42px; flex: 0 0 42px; }.discover-search-result-copy { display: grid; min-width: 0; flex: 1; gap: 3px; }.discover-search-result-copy strong,.discover-search-result-copy small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.discover-search-result-copy strong { font-size: 14px; }.discover-search-result-copy small { color: var(--muted); font-size: 12px; }.discover-search-result > i { flex: 0 0 auto; padding: 4px 7px; border-radius: 999px; color: var(--coral-dark); background: #fde7ed; font-size: 11px; font-style: normal; font-weight: 800; }.discover-search-empty,.discover-search-loading { display: grid; min-height: 180px; place-items: center; align-content: center; gap: 7px; color: var(--muted); font-size: 13px; text-align: center; }.discover-search-empty strong { color: var(--ink); font-size: 15px; }.discover-search-recent,.discover-search-suggestions { display: grid; gap: 10px; padding: 10px 2px 18px; }.discover-search-section-head { display: flex; align-items: center; justify-content: space-between; }.discover-search-section-head strong,.discover-search-suggestions > strong { font-size: 15px; }.discover-search-section-head button { padding: 0; border: 0; color: var(--coral-dark); background: transparent; font-size: 12px; }.discover-search-suggestions p { margin: -4px 0 2px; color: var(--muted); font-size: 12px; }.discover-search-keywords { display: flex; flex-wrap: wrap; gap: 8px; }.discover-search-keywords button { min-height: 32px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: var(--card); font-size: 12px; }
.discover-post-target { animation: discoverPostPulse 1.8s ease; }
@keyframes discoverPostPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(242,93,126,0); } 18%,70% { box-shadow: 0 0 0 7px rgba(242,93,126,.18); } }

/* V3 immersive chat and realtime games */
body[data-page="chat"] { height: var(--chat-viewport-height,var(--app-viewport-height,100dvh)); padding-bottom: 0; overflow: hidden; }
.chat-shell-v3 { width: min(720px,100%); height: var(--chat-viewport-height,var(--app-viewport-height,100dvh)); min-width: 0; min-height: 0; overflow: hidden; }
.chat-main-v3 { width: 100%; height: 100%; min-width: 0; display: grid; grid-template-rows: auto minmax(0,1fr) auto auto; padding: 0; overflow: hidden; }
.chat-topbar { min-height: calc(62px + env(safe-area-inset-top)); display: grid; grid-template-columns: 44px minmax(0,1fr) 44px; align-items: end; gap: 5px; padding: env(safe-area-inset-top) 10px 8px; border-bottom: 1px solid var(--line); background: rgba(248,245,239,.96); backdrop-filter: blur(16px); }
.chat-topbar-back,.chat-topbar-menu { width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--ink); background: transparent; }
.chat-topbar-back svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chat-topbar-menu { font-size: 25px; letter-spacing: 2px; }
.chat-recipient { min-width: 0; display: flex; align-items: center; gap: 10px; color: var(--ink); }
.chat-recipient .avatar { width: 40px; height: 40px; flex: 0 0 40px; }
.chat-recipient > span { min-width: 0; display: grid; gap: 3px; }
.chat-recipient strong,.chat-recipient small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chat-recipient strong { font-size: 15px; }
.chat-recipient small { color: var(--muted); font-size: 11px; }
.chat-log-v3 { min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 16px 14px 22px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
.chat-message-row { display: flex; align-items: flex-end; gap: 7px; margin-bottom: 13px; }
.chat-message-row.mine { justify-content: flex-end; }
.chat-message-row .avatar { width: 32px; height: 32px; flex: 0 0 32px; }
.chat-message-row .bubble { max-width: min(78%,480px); padding: 10px 13px; border-radius: 15px 15px 15px 4px; background: #fff; color: var(--ink); box-shadow: 0 2px 9px rgba(30,28,36,.055); white-space: pre-wrap; overflow-wrap: anywhere; }
.chat-message-row .bubble.mine { margin-left: 0; border-radius: 15px 15px 4px 15px; background: var(--mint); box-shadow: none; }
.chat-message-row .bubble small { color: rgba(82,78,88,.66); text-align: right; }
.chat-composer-v3 { width: 100%; max-width: 100%; min-width: 0; display: grid; grid-template-columns: 38px minmax(0,1fr) 38px auto; align-items: center; gap: 7px; padding: 9px 10px calc(9px + env(safe-area-inset-bottom)); overflow: hidden; border-top: 1px solid var(--line); background: rgba(255,253,249,.98); backdrop-filter: blur(18px); }
.chat-composer-v3 input { width: 100%; min-width: 0; max-width: 100%; height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: 20px; outline: 0; background: #fff; color: var(--ink); font-size: 16px; }
.chat-composer-v3 input:focus { border-color: #aaa1a8; }
.chat-composer-tool { width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #eee9e3; color: var(--ink); font-size: 24px; }
.chat-composer-tool.gift { font-size: 17px; }
.chat-composer-tool:disabled { opacity: .4; }
.chat-send-button { min-width: 58px; height: 40px; flex: 0 0 auto; border: 0; border-radius: 14px; padding: 0 13px; background: var(--ink); color: #fff; font-weight: 800; }
.chat-gift-panel { max-height: 42vh; margin: 0; padding: 14px; overflow-y: auto; border-right: 0; border-left: 0; background: var(--paper); }
.chat-game-dock { display: grid; gap: 12px; margin-top: 14px; }
.chat-game-dock[hidden] { display: none; }
.chat-game-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 8px 22px rgba(31,29,43,.06); }
.chat-game-card.completed { opacity: .88; }
.chat-game-head { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 13px; border-bottom: 1px solid var(--line); background: #fbf8f4; }
.chat-game-head > span { min-width: 0; display: grid; gap: 3px; }
.chat-game-head b { font-size: 15px; }.chat-game-head small { color: var(--muted); font-size: 11px; }
.chat-game-cancel { border: 0; background: transparent; color: var(--muted); font-size: 12px; }
.chat-game-copy { display: grid; gap: 12px; padding: 14px; }
.chat-game-copy > small { color: var(--muted); text-align: center; }
.chat-game-players { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.chat-game-players span { min-height: 42px; display: grid; place-items: center; padding: 8px; border-radius: 12px; background: #f3efea; font-size: 13px; }
.chat-game-options { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.chat-game-options button { min-height: 42px; border: 1px solid var(--line); border-radius: 12px; background: #f4f0eb; color: var(--ink); font-weight: 800; }
.chat-game-rolls,.chat-game-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.chat-game-rolls span,.chat-game-slots span { min-width: 0; display: grid; place-items: center; gap: 5px; padding: 13px 8px; border-radius: 13px; background: #f3efea; font-size: 12px; }
.chat-game-rolls b { font-size: 36px; }.chat-game-slots b { font-size: 20px; white-space: nowrap; }.chat-game-slots small { color: var(--muted); }
.chat-game-action { width: 100%; min-height: 44px; }
.chat-game-question,.chat-game-terms { margin: 0; padding: 13px; border-left: 3px solid var(--coral); background: #fff7f9; line-height: 1.7; white-space: pre-wrap; }
.chat-game-answer { width: 100%; min-height: 82px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; resize: none; background: #fff; color: var(--ink); }
.chat-game-answer-result { margin: 0; padding: 12px; border-radius: 12px; background: var(--mint); line-height: 1.65; }
.chat-game-error,.chat-game-launcher-error { display: block; padding: 0 14px 12px; color: #b43152; font-size: 12px; }
.gomoku-board { width: min(100%,420px); aspect-ratio: 1; display: grid; grid-template-columns: repeat(15,1fr); gap: 1px; justify-self: center; padding: 5px; border-radius: 10px; background: #c99b5a; box-shadow: inset 0 0 0 1px rgba(73,49,19,.2); }
.gomoku-cell { min-width: 0; min-height: 0; aspect-ratio: 1; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #151419; font-size: clamp(10px,4.8vw,18px); line-height: 1; }
.gomoku-cell.white { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.4); }.gomoku-cell:disabled { opacity: 1; }
.chat-game-menu[hidden] { display: none; }
.chat-game-menu { position: fixed; z-index: 310; inset: 0; pointer-events: none; }
.chat-game-menu.open { pointer-events: auto; }
.chat-game-menu-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(23,20,28,.44); }
.chat-game-menu-panel { position: absolute; right: 0; bottom: 0; left: 50%; width: min(720px,100%); padding: 10px 16px calc(18px + env(safe-area-inset-bottom)); border-radius: 22px 22px 0 0; background: var(--paper); box-shadow: 0 -18px 50px rgba(24,20,28,.2); transform: translate(-50%,105%); transition: transform .24s ease; }
.chat-game-menu.open .chat-game-menu-panel { transform: translate(-50%,0); }
.chat-game-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.chat-game-menu-head strong { font-size: 18px; }.chat-game-menu-head .icon-button { width: 38px; height: 38px; }
.chat-game-menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 12px 0; }
.chat-game-menu-grid button { min-height: 82px; display: grid; place-items: center; align-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); }
.chat-game-menu-grid span { font-size: 25px; }.chat-game-menu-grid b { font-size: 13px; }
.chat-game-menu-note { display: block; color: var(--muted); font-size: 11px; text-align: center; }
.chat-game-launcher { position: fixed; z-index: 330; inset: 0; display: grid; place-items: center; padding: 18px; background: rgba(23,20,28,.55); }
.chat-game-launcher-panel { width: min(100%,420px); display: grid; gap: 13px; padding: 20px; border-radius: 18px; background: var(--paper); box-shadow: 0 24px 70px rgba(25,22,30,.24); }
.chat-game-launcher-panel p { margin: 0; color: var(--muted); line-height: 1.65; }
@media (max-width:420px) { .chat-log-v3 { padding-inline: 10px; }.chat-composer-v3 { grid-template-columns: 34px 34px minmax(0,1fr) 34px auto; gap: 4px; padding-inline: 7px; }.chat-composer-tool { width: 34px; height: 34px; }.chat-send-button { min-width: 52px; padding-inline: 10px; }.chat-game-card { border-radius: 14px; }.chat-game-copy { padding: 11px; }.chat-game-menu-grid { gap: 7px; }.chat-game-menu-grid button { min-height: 76px; }.gomoku-board { width: 100%; } }

/* Chat timeline improvements */
.chat-main-v3 { grid-template-rows: auto minmax(0,1fr) auto auto auto auto; }
.chat-log-v3 { padding-bottom: calc(104px + env(safe-area-inset-bottom)); }
.chat-log-v3 > .chat-game-dock { display: block; margin-top: 0; }
.chat-message-row { position: relative; }
.chat-message-row .bubble { position: relative; }
.chat-message-text { margin: 0; white-space: pre-wrap; }
.chat-message-image-button { display: block; max-width: min(68vw,280px); margin: 0 0 7px; padding: 0; overflow: hidden; border: 0; border-radius: 12px; background: #eee7df; cursor: zoom-in; }
.chat-message-image { display: block; width: 100%; max-height: 320px; object-fit: cover; }
.chat-message-quote { display: block; max-width: 100%; margin: 0 0 8px; overflow: hidden; border: 0; border-left: 3px solid var(--coral); padding: 6px 8px; color: var(--muted); background: rgba(255,255,255,.55); font-size: 11px; text-align: left; text-overflow: ellipsis; white-space: nowrap; }
.chat-message-reply,.chat-message-retry { margin: 5px 0 0 7px; border: 0; color: var(--muted); background: transparent; font-size: 11px; }
.chat-message-retry { color: #b43152; font-weight: 800; }
.chat-message-row.pending .bubble { opacity: .76; }
.chat-message-row.pending .bubble small { color: #b43152; }
.chat-date-divider { display: flex; align-items: center; gap: 9px; margin: 14px 0 12px; color: var(--muted); font-size: 11px; }
.chat-date-divider::before,.chat-date-divider::after { content: ''; height: 1px; flex: 1; background: var(--line); }
.chat-date-divider span { padding: 3px 9px; border-radius: 999px; background: #eee9e3; }
.chat-new-messages { position: sticky; z-index: 2; top: 6px; display: block; margin: 0 auto 5px; padding: 7px 13px; border: 1px solid rgba(39,34,46,.12); border-radius: 999px; color: var(--ink); background: rgba(255,253,249,.94); box-shadow: 0 5px 18px rgba(31,29,43,.12); font-size: 12px; font-weight: 800; }
.chat-new-messages[hidden] { display: none; }
.chat-attachment-preview,.chat-reply-bar { display: flex; min-height: 0; align-items: center; gap: 9px; padding: 6px 12px; border-top: 1px solid var(--line); background: rgba(255,253,249,.98); }
.chat-attachment-preview[hidden],.chat-reply-bar[hidden] { display: none; }
.chat-attachment-preview > span { position: relative; display: inline-flex; }
.chat-attachment-preview img { width: 54px; height: 54px; border-radius: 9px; object-fit: cover; }
.chat-attachment-preview button,.chat-reply-bar button { width: 24px; height: 24px; border: 0; border-radius: 50%; color: #fff; background: rgba(29,26,35,.78); font-size: 16px; line-height: 1; }
.chat-attachment-preview button { position: absolute; top: -6px; right: -6px; }
.chat-reply-bar { justify-content: space-between; color: var(--muted); font-size: 12px; }
.chat-reply-bar span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chat-reply-bar button { flex: 0 0 24px; color: var(--ink); background: #eee9e3; }
.chat-composer-v3 { grid-template-columns: 38px 38px minmax(0,1fr) 38px auto; }
.chat-composer-tool.image svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.chat-game-card { display: block; margin: 12px 0; }
.chat-game-card > summary { list-style: none; cursor: pointer; }
.chat-game-card > summary::-webkit-details-marker { display: none; }
.chat-game-head > i { color: var(--muted); font-size: 17px; font-style: normal; transition: transform .2s ease; }
.chat-game-card[open] .chat-game-head > i { transform: rotate(180deg); }
.chat-game-card.cancelled { opacity: .78; }
.chat-game-cancelled-copy { padding: 14px; color: var(--muted); font-size: 12px; }
.chat-game-foot { display: flex; justify-content: flex-end; padding: 0 14px 12px; }
.chat-game-foot button { border: 0; color: var(--muted); background: transparent; font-size: 12px; }
.chat-game-foot .chat-game-rematch { color: var(--coral-dark); font-weight: 800; }
.gomoku-cell.last { box-shadow: 0 0 0 2px var(--coral) inset; }
.chat-image-viewer { z-index: 340; }
.chat-message-text { max-width: 100%; overflow-wrap: anywhere; word-break: break-word; }
.chat-action-card { width: min(100%,300px); display: grid; grid-template-columns: 38px minmax(0,1fr) auto; align-items: center; gap: 9px; padding: 10px; border: 1px solid rgba(32,29,43,.08); border-radius: 12px; color: var(--ink); background: rgba(255,255,255,.68); }
.chat-action-card > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; background: #f5dd91; font-size: 20px; }
.chat-action-card > div { min-width: 0; display: grid; gap: 3px; }
.chat-action-card strong,.chat-action-card small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chat-action-card strong { font-size: 13px; }.chat-action-card small { color: var(--muted); font-size: 10px; }
.chat-action-card > b { padding: 6px 8px; border-radius: 8px; color: #fff; background: var(--ink); font-size: 11px; }

/* V3 personal center */
.me-shell-v3 { background: #f7f3ee; }
.me-main-v3 { padding: 0 14px 36px; }
.me-page-v3 { display: grid; gap: 14px; }
.me-hero-v3 { position: relative; min-height: 342px; margin: 0 -14px; overflow: hidden; color: #fff; background: #eadde3; }
.me-cover-image,.me-cover-placeholder,.me-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.me-cover-image { object-fit: cover; }
.me-cover-placeholder { background: #eadde3; }
.me-cover-placeholder::before,.me-cover-placeholder::after { content: ''; position: absolute; border-radius: 50%; opacity: .78; }
.me-cover-placeholder::before { width: 230px; height: 230px; top: -70px; right: -45px; background: #efcfe1; }
.me-cover-placeholder::after { width: 260px; height: 260px; bottom: -110px; left: -80px; background: #cceee8; }
.me-hero-shade { background: rgba(28,24,34,.36); }
.me-hero-v3:not(.has-cover) .me-hero-shade { background: rgba(45,36,48,.2); }
.me-hero-toolbar { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: calc(12px + env(safe-area-inset-top)) 18px 8px; }
.me-hero-label { font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.me-icon-button { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: rgba(20,17,24,.24); }
.me-icon-button svg,.me-menu-icon svg,.me-asset-icon svg,.profile-public-toolbar svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.me-identity { position: absolute; z-index: 2; right: 18px; bottom: 92px; left: 18px; display: flex; align-items: center; gap: 14px; }
.me-avatar-link { width: 86px; height: 86px; flex: 0 0 86px; padding: 4px; border-radius: 50%; background: rgba(255,255,255,.82); }
.me-avatar-link .avatar { width: 100%; height: 100%; }
.me-identity-copy { min-width: 0; }
.me-identity-copy > div { display: flex; min-width: 0; align-items: center; gap: 7px; }
.me-identity-copy h1 { margin: 0; overflow: hidden; font-size: 24px; text-overflow: ellipsis; white-space: nowrap; }
.me-gender-badge,.me-vip-badge { flex: 0 0 auto; padding: 3px 7px; border-radius: 999px; background: rgba(255,255,255,.22); font-size: 11px; font-weight: 800; }
.me-identity-copy p { display: -webkit-box; margin: 7px 0 5px; overflow: hidden; color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.me-identity-copy small { color: rgba(255,255,255,.72); font-size: 11px; }
.me-stats { position: absolute; z-index: 2; right: 18px; bottom: 20px; left: 18px; display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.me-stats span { display: grid; justify-items: center; gap: 3px; }
.me-stats strong { font-size: 19px; }.me-stats small { color: rgba(255,255,255,.72); font-size: 11px; }
.me-assets-v3 { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; margin-top: -2px; padding: 12px 4px; border: 1px solid rgba(50,44,54,.08); border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(40,34,42,.08); }
.me-asset-item { display: grid; min-width: 0; justify-items: center; gap: 5px; padding: 5px 2px; color: var(--ink); }
.me-asset-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; }
.me-asset-item.wallet .me-asset-icon { color: #9a6b16; background: #fff0bd; }.me-asset-item.income .me-asset-icon { color: #287b65; background: #cef4e7; }.me-asset-item.level .me-asset-icon { color: #7b4bb0; background: #ead7ff; }.me-asset-item.vip .me-asset-icon { color: #2d2930; background: #e7e3e7; }
.me-asset-item strong { font-size: 13px; }.me-asset-item small { max-width: 100%; overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.me-vip-banner { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 17px; border-radius: 17px; color: #fff; background: #3b2949; box-shadow: 0 10px 24px rgba(45,31,56,.16); }
.me-vip-banner span { min-width: 0; display: grid; gap: 5px; }.me-vip-banner b { font-size: 15px; }.me-vip-banner small { overflow: hidden; color: rgba(255,255,255,.68); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }.me-vip-banner i { font-size: 28px; font-style: normal; }
.me-tag-line { display: flex; gap: 8px; margin: 0 -14px; padding: 2px 14px; overflow-x: auto; scrollbar-width: none; }.me-tag-line::-webkit-scrollbar { display: none; }.me-tag-line span { flex: 0 0 auto; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.8); font-size: 11px; }
.me-menu-group { overflow: hidden; border: 1px solid rgba(50,44,54,.08); border-radius: 18px; background: #fff; }
.me-menu-group h2 { margin: 0; padding: 15px 17px 8px; color: var(--muted); font-size: 12px; }
.me-menu-row { display: grid; grid-template-columns: 40px minmax(0,1fr) auto; align-items: center; gap: 11px; min-height: 70px; margin: 0 16px; border-bottom: 1px solid var(--line); color: var(--ink); }
.me-menu-row:last-child { border-bottom: 0; }.me-menu-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: #625c65; background: #f1ede8; }.me-menu-row > span:nth-child(2) { min-width: 0; display: grid; gap: 3px; }.me-menu-row strong,.me-menu-row small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.me-menu-row strong { font-size: 14px; }.me-menu-row small { color: var(--muted); font-size: 11px; }.me-menu-row > i { color: #aaa2a9; font-size: 25px; font-style: normal; }

/* V3 public profile */
body[data-page="profile"] { padding-bottom: 0; background: #17141a; }
.profile-public-shell { min-height: 100dvh; background: #17141a; }
.profile-public-main { padding: 0; }
.profile-public-v3 { min-height: 100dvh; padding-bottom: calc(82px + env(safe-area-inset-bottom)); background: #f8f5f0; }
.profile-public-hero { position: relative; min-height: min(68vh,610px); overflow: hidden; color: #fff; background: #302b33; }
.profile-public-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.profile-public-cover-empty { background: #5b4d59; }
.profile-public-cover-empty::before { content: ''; position: absolute; width: 260px; height: 260px; top: 70px; right: -80px; border-radius: 50%; background: #8d7184; opacity: .55; }
.profile-public-shade { position: absolute; inset: 0; background: rgba(16,14,18,.48); }
.profile-public-toolbar { position: absolute; z-index: 2; top: 0; right: 0; left: 0; display: grid; grid-template-columns: 46px minmax(0,1fr) auto; align-items: center; padding: calc(10px + env(safe-area-inset-top)) 12px 8px; }
.profile-public-toolbar > div { display: flex; gap: 4px; }.profile-public-toolbar button { width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; color: #fff; background: rgba(18,16,20,.28); }
.profile-public-identity { position: absolute; z-index: 2; right: 20px; bottom: 112px; left: 20px; display: flex; align-items: center; gap: 14px; }
.profile-public-avatar { width: 88px; height: 88px; flex: 0 0 88px; padding: 4px; border-radius: 50%; background: rgba(255,255,255,.88); }.profile-public-avatar .avatar { width: 100%; height: 100%; }
.profile-public-identity > div:last-child { min-width: 0; }.profile-public-identity h1 { display: flex; min-width: 0; align-items: center; gap: 8px; margin: 0; overflow: hidden; font-size: 25px; text-overflow: ellipsis; white-space: nowrap; }.profile-public-identity h1 em { flex: 0 0 auto; padding: 3px 7px; border-radius: 999px; background: rgba(255,255,255,.2); font-size: 10px; font-style: normal; }.profile-public-identity p { margin: 7px 0 5px; color: rgba(255,255,255,.78); font-size: 12px; }.profile-public-identity small { color: rgba(255,255,255,.62); font-size: 11px; }
.profile-public-tags { position: absolute; z-index: 2; right: 0; bottom: 26px; left: 0; display: flex; gap: 8px; padding: 0 20px; overflow-x: auto; scrollbar-width: none; }.profile-public-tags::-webkit-scrollbar { display: none; }.profile-public-tags span { flex: 0 0 auto; padding: 8px 12px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; background: rgba(18,16,20,.38); color: #fff; font-size: 11px; }
.profile-public-sheet { position: relative; z-index: 3; margin-top: -18px; padding: 20px 16px 36px; border-radius: 24px 24px 0 0; background: #f8f5f0; }
.profile-public-match { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 48px; padding: 0 3px 13px; }.profile-public-match b { flex: 0 0 auto; padding: 7px 12px; border-radius: 999px; color: #c63d68; background: #fde3eb; font-size: 13px; }.profile-public-match small { overflow: hidden; color: var(--muted); font-size: 11px; text-align: right; text-overflow: ellipsis; white-space: nowrap; }
.profile-public-stats { display: grid; grid-template-columns: repeat(4,1fr); padding: 13px 0 17px; border-top: 1px solid var(--line); }.profile-public-stats span { display: grid; justify-items: center; gap: 3px; }.profile-public-stats strong { font-size: 19px; }.profile-public-stats small { color: var(--muted); font-size: 11px; }
.profile-public-tabs { position: sticky; z-index: 4; top: 0; display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--line); background: rgba(248,245,240,.96); backdrop-filter: blur(12px); }.profile-public-tabs button { min-height: 52px; border: 0; border-bottom: 2px solid transparent; color: var(--muted); background: transparent; font-weight: 800; }.profile-public-tabs button.active { border-bottom-color: var(--ink); color: var(--ink); }.profile-public-tabs span { margin-left: 3px; font-size: 10px; font-weight: 600; }
.profile-tab-panel { padding-top: 6px; }.profile-tab-panel[hidden] { display: none; }
.profile-moment { padding: 17px 2px 20px; border-bottom: 1px solid var(--line); }.profile-moment-head { display: flex; justify-content: space-between; gap: 8px; color: var(--muted); font-size: 11px; }.profile-moment-head i { font-style: normal; }.profile-moment > p { margin: 12px 0; line-height: 1.7; white-space: pre-wrap; }.profile-moment-images { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }.profile-moment-images button { aspect-ratio: 1; padding: 0; overflow: hidden; border: 0; border-radius: 8px; background: #eee8e1; }.profile-moment-images img { width: 100%; height: 100%; object-fit: cover; }.profile-moment-actions { display: flex; gap: 22px; margin-top: 13px; color: var(--muted); font-size: 12px; }.profile-moment-actions a { color: inherit; }
.profile-about-block { padding: 18px 2px; }.profile-about-block h2 { margin: 0; font-size: 19px; }.profile-about-block > p { margin: 10px 0 20px; color: var(--muted); line-height: 1.7; white-space: pre-wrap; }.profile-detail-list { display: grid; }.profile-detail-list span { display: flex; min-height: 48px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }.profile-detail-list strong { color: var(--ink); font-weight: 700; }.profile-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 2px 20px; }.profile-tag-cloud span { padding: 8px 11px; border-radius: 999px; background: #eee9e3; font-size: 11px; }.profile-tag-cloud small { color: var(--muted); }
.profile-gift-wall { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; padding: 14px 0; }.profile-gift-wall article { display: grid; min-width: 0; justify-items: center; gap: 6px; padding: 16px 9px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }.profile-gift-wall article > span { font-size: 28px; }.profile-gift-wall strong,.profile-gift-wall small { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.profile-gift-wall strong { font-size: 13px; }.profile-gift-wall small { color: var(--muted); font-size: 10px; }
.profile-public-actions { position: fixed; z-index: 30; right: 50%; bottom: 0; display: grid; width: min(720px,100%); grid-template-columns: minmax(82px,.7fr) minmax(140px,1.3fr) 50px; align-items: center; gap: 8px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,253,249,.98); transform: translateX(50%); backdrop-filter: blur(16px); }.profile-public-actions > * { min-height: 46px; }.profile-follow-button { border: 1px solid var(--ink); border-radius: 12px; color: var(--ink); background: #fff; font-weight: 800; }.profile-follow-button.active { border-color: var(--line); color: var(--muted); background: #eee9e3; }.profile-public-actions .primary-button { border-radius: 12px; background: var(--ink); }.profile-gift-button { display: grid; place-items: center; border-radius: 12px; color: var(--ink); background: #eee9e3; font-size: 20px; }
.profile-more-sheet[hidden] { display: none; }.profile-more-sheet { position: fixed; z-index: 350; inset: 0; }.profile-more-sheet > button { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(18,16,20,.48); }.profile-more-sheet > div { position: absolute; right: 0; bottom: 0; left: 50%; display: grid; width: min(720px,100%); gap: 1px; padding: 10px 14px calc(14px + env(safe-area-inset-bottom)); border-radius: 22px 22px 0 0; background: #f8f5f0; transform: translate(-50%,105%); transition: transform .22s ease; }.profile-more-sheet.open > div { transform: translate(-50%,0); }.profile-more-sheet > div button { min-height: 52px; border: 0; border-bottom: 1px solid var(--line); background: transparent; font-weight: 800; }.profile-more-sheet > div button:last-child { border-bottom: 0; }
.profile-edit-v3 { max-width: 620px; margin: 0 auto; }.profile-edit-cover { display: grid; gap: 10px; }.profile-cover-preview { height: 210px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; color: var(--muted); background: #eee8e1; }.profile-cover-preview img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width:420px) { .me-hero-v3 { min-height: 322px; }.me-identity { bottom: 88px; }.me-avatar-link { width: 76px; height: 76px; flex-basis: 76px; }.me-identity-copy h1 { font-size: 21px; }.me-assets-v3 { padding-inline: 1px; }.me-asset-icon { width: 34px; height: 34px; }.profile-public-hero { min-height: 62vh; }.profile-public-identity { bottom: 106px; }.profile-public-avatar { width: 78px; height: 78px; flex-basis: 78px; }.profile-public-identity h1 { font-size: 22px; } }

/* V3 social profile and Douyin-inspired gift experience */
.chat-main-v3 { grid-template-rows: auto minmax(0,1fr) auto auto auto; }
.chat-log-v3 { padding-bottom: 26px; }
.chat-message-stack { min-width: 0; max-width: min(78%,480px); display: grid; justify-items: start; gap: 4px; }
.chat-message-row.mine .chat-message-stack { justify-items: end; }
.chat-message-row .chat-message-stack .bubble { max-width: 100%; }
.chat-message-meta { display: flex; align-items: center; gap: 3px; min-height: 16px; padding: 0 4px; color: var(--muted); font-size: 10px; }
.chat-message-meta small { color: inherit; font-size: inherit; }
.chat-message-meta .chat-message-reply,.chat-message-meta .chat-message-retry { margin: 0 0 0 4px; }
.chat-message-row.emoji-message .bubble { padding: 1px 4px; background: transparent; box-shadow: none; }
.chat-message-row.emoji-message .bubble.mine { background: transparent; }
.chat-message-row.emoji-message .chat-message-text { font-size: 36px; line-height: 1.25; }
.chat-message-row.gift-message .chat-message-stack { width: min(78%,340px); max-width: 340px; }
.chat-message-row .bubble.gift { width: 100%; padding: 0; overflow: hidden; border: 1px solid rgba(216,72,112,.18); border-radius: 18px; background: #fff; box-shadow: 0 8px 26px rgba(34,29,39,.09); }
.chat-message-row .bubble.gift.mine { background: #fff; }
.chat-gift-message-card { position: relative; min-height: 112px; display: grid; grid-template-columns: 92px minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 10px 12px 10px 8px; color: var(--ink); background: #fff8fa; }
.chat-gift-message-card > img { width: 92px; height: 92px; object-fit: contain; }
.chat-gift-message-card > span { width: 76px; display: grid; place-items: center; font-size: 46px; }
.chat-gift-message-card > div { min-width: 0; display: grid; gap: 3px; }
.chat-gift-message-card > div small { color: #d54471; font-size: 10px; text-align: left; }
.chat-gift-message-card > div strong { overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.chat-gift-message-card > div p { display: -webkit-box; margin: 1px 0 0; overflow: hidden; color: var(--muted); font-size: 11px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.chat-gift-message-card > b { align-self: end; color: #d54471; font-size: 16px; }
.chat-gift-open { overflow: hidden; }
.chat-gift-sheet[hidden],.chat-gift-effect[hidden] { display: none; }
.chat-gift-sheet { position: fixed; z-index: 370; inset: 0; pointer-events: none; }
.chat-gift-sheet.open { pointer-events: auto; }
.chat-gift-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(10,9,13,.56); opacity: 0; transition: opacity .22s ease; }
.chat-gift-sheet.open .chat-gift-backdrop { opacity: 1; }
.chat-gift-sheet-panel { position: absolute; right: 0; bottom: 0; left: 50%; width: min(720px,100%); height: min(62vh,560px); min-height: 410px; display: grid; grid-template-rows: auto auto auto auto minmax(0,1fr) auto auto; overflow: hidden; border-radius: 22px 22px 0 0; color: #fff; background: #19171f; box-shadow: 0 -24px 64px rgba(11,9,14,.34); transform: translate(-50%,105%); transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.chat-gift-sheet.open .chat-gift-sheet-panel { transform: translate(-50%,0); }
.chat-gift-handle { width: 38px; height: 4px; margin: 8px auto 3px; border-radius: 4px; background: rgba(255,255,255,.22); }
.chat-gift-head { min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; }
.chat-gift-head > div { display: flex; align-items: baseline; gap: 8px; }
.chat-gift-head h2 { margin: 0; font-size: 18px; }
.chat-gift-head span { color: rgba(255,255,255,.48); font-size: 11px; }
.chat-gift-head > button { width: 36px; height: 36px; border: 0; color: rgba(255,255,255,.72); background: transparent; font-size: 25px; }
.chat-gift-recipient { display: flex; min-width: 0; align-items: center; gap: 9px; margin: 0 14px 8px; padding: 9px 11px; border-radius: 13px; background: rgba(255,255,255,.06); }
.chat-gift-recipient .avatar { width: 38px; height: 38px; flex: 0 0 38px; }
.chat-gift-recipient > span { min-width: 0; display: grid; flex: 1; gap: 2px; }
.chat-gift-recipient strong,.chat-gift-recipient small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chat-gift-recipient strong { font-size: 13px; }.chat-gift-recipient small { color: rgba(255,255,255,.45); font-size: 10px; }
.chat-gift-recipient > a { flex: 0 0 auto; color: #ff6d91; font-size: 11px; font-weight: 800; }
.chat-gift-tabs { display: flex; gap: 22px; min-height: 42px; padding: 0 15px; border-bottom: 1px solid rgba(255,255,255,.08); }
.chat-gift-tabs button { position: relative; border: 0; color: rgba(255,255,255,.5); background: transparent; font-size: 13px; font-weight: 800; }
.chat-gift-tabs button.active { color: #fff; }
.chat-gift-tabs button.active::after { content: ''; position: absolute; right: 18%; bottom: 0; left: 18%; height: 3px; border-radius: 3px; background: #ff4f7e; }
.chat-gift-scroll { min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 9px 8px 12px; }
.chat-gift-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 5px 2px; }
.chat-gift-item { position: relative; min-width: 0; min-height: 116px; display: grid; justify-items: center; align-content: start; gap: 2px; padding: 5px 2px; border: 1px solid transparent; border-radius: 12px; color: #fff; background: transparent; }
.chat-gift-item[hidden] { display: none; }
.chat-gift-item.selected { border-color: #ff527f; background: rgba(255,82,127,.12); }
.chat-gift-item.unavailable { opacity: .56; }
.chat-gift-visual { position: relative; width: 68px; height: 68px; display: grid; place-items: center; }
.chat-gift-visual img { width: 68px; height: 68px; object-fit: contain; }
.chat-gift-visual i { font-size: 38px; font-style: normal; }
.chat-gift-visual em { position: absolute; right: -1px; bottom: 1px; min-width: 18px; height: 18px; display: grid; place-items: center; padding: 0 4px; border-radius: 9px; color: #fff; background: #ff4f7e; font-size: 9px; font-style: normal; font-weight: 800; }
.chat-gift-item strong,.chat-gift-item small { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chat-gift-item strong { font-size: 11px; }.chat-gift-item small { color: rgba(255,255,255,.43); font-size: 9px; }
.chat-gift-empty { min-height: 190px; display: grid; place-items: center; align-content: center; gap: 6px; text-align: center; }
.chat-gift-empty[hidden] { display: none; }.chat-gift-empty strong { font-size: 15px; }.chat-gift-empty span { color: rgba(255,255,255,.48); font-size: 11px; }.chat-gift-empty a { margin-top: 6px; padding: 8px 15px; border-radius: 999px; color: #fff; background: #ff4f7e; font-size: 11px; font-weight: 800; }
.chat-gift-selection { display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 10px; padding: 8px 13px; border-top: 1px solid rgba(255,255,255,.07); }
.chat-gift-selection[hidden] { display: none; }
.chat-gift-selection span { max-width: 130px; overflow: hidden; color: #ff88a6; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.chat-gift-selection input { min-width: 0; height: 34px; padding: 0 11px; border: 1px solid rgba(255,255,255,.09); border-radius: 17px; outline: 0; color: #fff; background: rgba(255,255,255,.07); font-size: 11px; }
.chat-gift-selection input::placeholder { color: rgba(255,255,255,.35); }
.chat-gift-footer { display: grid; grid-template-columns: minmax(0,1fr) auto auto; align-items: center; gap: 8px; min-height: 58px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,.08); background: #15131a; }
.chat-gift-footer > a { min-width: 0; display: flex; align-items: baseline; gap: 5px; color: rgba(255,255,255,.55); font-size: 10px; }.chat-gift-footer > a strong { color: #ffd26b; font-size: 14px; }
.chat-gift-footer label { height: 38px; display: flex; align-items: center; gap: 5px; padding: 0 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 19px; color: rgba(255,255,255,.55); font-size: 10px; }
.chat-gift-footer select { border: 0; outline: 0; color: #fff; background: transparent; font-weight: 800; }
.chat-gift-footer > button { min-width: 82px; height: 38px; border: 0; border-radius: 19px; color: #fff; background: #ff4f7e; font-weight: 800; }
.chat-gift-footer > button:disabled { color: rgba(255,255,255,.36); background: rgba(255,255,255,.1); }
.chat-gift-effect { position: fixed; z-index: 420; inset: 0; display: grid; place-items: center; background: rgba(10,8,13,.58); opacity: 0; transition: opacity .2s ease; }
.chat-gift-effect.open { opacity: 1; }
.chat-gift-effect > button { position: absolute; inset: 0; width: 100%; border: 0; background: transparent; }
.chat-gift-effect > div { position: relative; z-index: 1; width: min(86vw,440px); display: grid; justify-items: center; gap: 5px; color: #fff; text-align: center; pointer-events: none; }
.chat-gift-effect img { width: min(72vw,360px); height: min(72vw,360px); object-fit: contain; filter: drop-shadow(0 16px 30px rgba(0,0,0,.24)); }
.chat-gift-effect strong { font-size: 22px; text-shadow: 0 2px 12px rgba(0,0,0,.35); }.chat-gift-effect span { color: rgba(255,255,255,.72); font-size: 13px; }

.me-main-v3 { padding-bottom: calc(104px + env(safe-area-inset-bottom)); }
.me-page-v3 { gap: 12px; }
.me-hero-v3 { min-height: 286px; }
.me-cover-image { object-position: center 35%; }
.me-hero-shade { background: rgba(29,24,33,.34); }
.me-hero-v3:not(.has-cover) .me-hero-shade { background: rgba(52,42,55,.18); }
.me-identity { bottom: 73px; justify-content: space-between; }
.me-identity-copy { flex: 1; }
.me-avatar-link { width: 82px; height: 82px; flex-basis: 82px; order: 2; }
.me-stats { bottom: 13px; }
.me-benefit-card { position: relative; z-index: 3; margin-top: -18px; overflow: hidden; border: 1px solid rgba(50,44,54,.08); border-radius: 20px; background: #fff; box-shadow: 0 12px 30px rgba(40,34,42,.09); }
.me-benefit-card .me-assets-v3 { margin: 0; border: 0; border-radius: 0; box-shadow: none; }
.me-benefit-card .me-vip-banner { min-height: 64px; margin: 0; border-radius: 0; box-shadow: none; }
.me-menu-row { min-height: 64px; }

.profile-public-hero { min-height: clamp(410px,52dvh,500px); }
.profile-public-cover { object-position: center 34%; }
.profile-public-cover-fallback { filter: blur(22px); opacity: .78; transform: scale(1.18); }
.profile-public-shade { background: rgba(15,13,17,.42); }
.profile-public-hero.avatar-cover .profile-public-shade { background: rgba(24,20,27,.48); }
.profile-public-toolbar { position: fixed; z-index: 40; right: 50%; left: auto; width: min(720px,100%); transform: translateX(50%); transition: background .18s ease, box-shadow .18s ease; }
.profile-public-toolbar.scrolled { background: rgba(25,22,29,.92); box-shadow: 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(16px); }
.profile-public-toolbar > strong { min-width: 0; overflow: hidden; color: #fff; font-size: 15px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.profile-public-gallery { position: absolute; z-index: 2; top: calc(76px + env(safe-area-inset-top)); right: 16px; display: flex; gap: 5px; }
.profile-public-gallery button,.profile-public-gallery > span { width: 48px; height: 48px; display: grid; place-items: center; overflow: hidden; padding: 0; border: 1px solid rgba(255,255,255,.42); border-radius: 9px; color: #fff; background: rgba(17,15,20,.52); font-size: 11px; }
.profile-public-gallery img { width: 100%; height: 100%; object-fit: cover; }
.profile-public-identity { bottom: 98px; }
.profile-public-tags { bottom: 22px; }
.profile-public-sheet { margin-top: -22px; padding-top: 18px; }
.profile-public-relation { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 8px; }
.profile-public-relation .profile-public-match { min-width: 0; flex: 1; padding: 0; }
.profile-public-relation > span { flex: 0 0 auto; color: var(--muted); font-size: 10px; }
.profile-voice-intro { width: 100%; min-height: 58px; display: flex; align-items: center; gap: 11px; margin: 4px 0 8px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 15px; color: var(--ink); background: #fff; text-align: left; }
.profile-voice-intro > i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #3b2949; font-style: normal; }.profile-voice-intro.playing > i { background: #d54471; }.profile-voice-intro > span { display: grid; gap: 3px; }.profile-voice-intro strong { font-size: 13px; }.profile-voice-intro small { color: var(--muted); font-size: 10px; }
.profile-public-tabs { top: calc(60px + env(safe-area-inset-top)); }
.profile-compact-empty { min-height: 168px; display: grid; place-items: center; align-content: center; gap: 7px; color: var(--muted); text-align: center; }
.profile-compact-empty strong { color: var(--ink); font-size: 17px; }.profile-compact-empty span { font-size: 12px; }.profile-compact-empty a { margin-top: 4px; padding: 9px 17px; border-radius: 999px; color: #fff; background: var(--ink); font-size: 12px; font-weight: 800; }
.profile-gift-wall > .profile-compact-empty { grid-column: 1 / -1; }

@media (max-width:420px) {
  .chat-gift-sheet-panel { height: min(62vh,560px); }
  .chat-gift-grid { gap-inline: 0; }
  .chat-gift-item { min-height: 108px; }
  .chat-gift-visual,.chat-gift-visual img { width: 62px; height: 62px; }
  .me-hero-v3 { min-height: 278px; }
  .me-identity { bottom: 69px; }
  .me-avatar-link { width: 76px; height: 76px; flex-basis: 76px; }
  .me-identity-copy h1 { font-size: 21px; }
  .me-menu-row small { display: none; }
  .profile-public-hero { min-height: clamp(400px,52dvh,470px); }
  .profile-public-identity { bottom: 94px; }
  .profile-public-avatar { width: 76px; height: 76px; flex-basis: 76px; }
}

/* V3 public profile refinement */
.profile-public-toolbar-identity { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 7px; opacity: 0; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease; pointer-events: none; }
.profile-public-toolbar.scrolled .profile-public-toolbar-identity { opacity: 1; transform: translateY(0); }
.profile-public-toolbar-identity .avatar { width: 27px; height: 27px; flex: 0 0 27px; border: 1px solid rgba(255,255,255,.75); }
.profile-public-toolbar-identity strong { min-width: 0; max-width: 180px; overflow: hidden; color: #fff; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.profile-public-gallery-entry { position: absolute; z-index: 2; top: calc(82px + env(safe-area-inset-top)); right: 16px; display: grid; justify-items: end; gap: 6px; padding: 0; border: 0; color: #fff; background: transparent; }
.profile-public-gallery-entry > span { display: flex; align-items: center; }
.profile-public-gallery-entry img { width: 43px; height: 43px; margin-left: -7px; object-fit: cover; border: 2px solid rgba(255,255,255,.82); border-radius: 10px; background: #eee8e1; box-shadow: 0 4px 12px rgba(15,13,18,.2); }
.profile-public-gallery-entry img:first-child { margin-left: 0; }
.profile-public-gallery-entry b { padding: 5px 8px; border-radius: 999px; color: #fff; background: rgba(17,15,20,.52); font-size: 10px; font-weight: 800; backdrop-filter: blur(8px); }
.profile-public-identity h1 em { text-transform: uppercase; letter-spacing: .04em; }
.profile-presence { display: flex; align-items: center; gap: 6px; }
.profile-presence i { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: #aaa1a8; box-shadow: 0 0 0 3px rgba(255,255,255,.08); }
.profile-presence i.online { background: #55d99a; box-shadow: 0 0 0 3px rgba(85,217,154,.18); }
.profile-public-uid { display: inline-flex; align-items: center; gap: 5px; padding: 0; border: 0; color: rgba(255,255,255,.68); background: transparent; font-size: 11px; }
.profile-public-uid span { width: 13px; height: 13px; display: inline-flex; }.profile-public-uid svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.profile-public-tags { gap: 7px; }
.profile-public-tags span { padding: 7px 11px; background: rgba(18,16,20,.46); backdrop-filter: blur(8px); }
.profile-public-tags span.more { min-width: 34px; padding-inline: 9px; text-align: center; }
.profile-relation-card { width: 100%; min-height: 76px; display: grid; grid-template-columns: auto minmax(0,1fr) 24px; align-items: center; gap: 13px; margin-bottom: 4px; padding: 11px 12px; border: 1px solid rgba(213,68,113,.13); border-radius: 17px; color: var(--ink); background: #fff; box-shadow: 0 9px 24px rgba(43,35,44,.055); text-align: left; }
.profile-relation-card > span { width: 64px; height: 54px; display: grid; place-items: center; align-content: center; gap: 1px; border-radius: 14px; color: #cc3f69; background: #fde8ee; }
.profile-relation-card > span strong { font-size: 19px; }.profile-relation-card > span small { font-size: 9px; }
.profile-relation-card > div { min-width: 0; display: grid; gap: 5px; }
.profile-relation-card > div b,.profile-relation-card > div p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.profile-relation-card > div b { font-size: 14px; }.profile-relation-card > div p { margin: 0; color: var(--muted); font-size: 10px; }
.profile-relation-card > i { color: #aaa2a9; font-size: 24px; font-style: normal; text-align: center; }
.profile-public-stats { margin-top: 7px; padding: 14px 0 16px; }
.profile-public-stats button { display: grid; justify-items: center; gap: 3px; padding: 0; border: 0; color: var(--ink); background: transparent; }
.profile-public-stats button strong { font-size: 18px; }.profile-public-stats button small { color: var(--muted); font-size: 10px; }
.profile-public-tabs button { font-size: 14px; }
.profile-public-tabs span { color: var(--muted); }
.profile-moment { padding: 18px 2px 22px; }
.profile-moment-head { align-items: center; }
.profile-moment-head i { padding: 4px 7px; border-radius: 999px; background: #eee9e3; font-size: 9px; }
.profile-moment > p { margin: 13px 0; font-size: 15px; line-height: 1.65; }
.profile-moment-images { gap: 5px; }
.profile-moment-images.count-1 { grid-template-columns: 1fr; }
.profile-moment-images.count-1 button { aspect-ratio: 4 / 3; }
.profile-moment-images.count-2 { grid-template-columns: repeat(2,1fr); }
.profile-moment-images.count-2 button { aspect-ratio: 3 / 4; }
.profile-moment-images.count-3,.profile-moment-images.count-4 { grid-template-columns: repeat(3,1fr); }
.profile-moment-images.count-4 button:last-child { position: relative; }
.profile-moment-images button { border-radius: 10px; }
.profile-moment-actions { justify-content: space-around; gap: 0; margin-top: 11px; padding-top: 10px; border-top: 1px solid rgba(45,39,47,.06); }
.profile-moment-actions > * { min-width: 76px; min-height: 32px; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 0 8px; border: 0; border-radius: 9px; color: var(--muted); background: transparent; font-size: 11px; }
.profile-moment-actions b { font-size: 10px; font-weight: 700; }.profile-moment-actions button.liked { color: #d54471; }.profile-moment-actions button:disabled { opacity: .55; }
.profile-public-actions { grid-template-columns: minmax(88px,.72fr) minmax(150px,1.35fr) 52px; gap: 9px; padding-top: 10px; }
.profile-public-actions > * { min-height: 48px; border-radius: 14px; }
.profile-gift-button { border-radius: 14px; }
.profile-relation-sheet[hidden] { display: none; }
.profile-relation-sheet { position: fixed; z-index: 390; inset: 0; pointer-events: none; }
.profile-relation-sheet.open { pointer-events: auto; }
.profile-relation-sheet > button { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(18,16,20,.48); opacity: 0; transition: opacity .2s ease; }
.profile-relation-sheet.open > button { opacity: 1; }
.profile-relation-sheet > div { position: absolute; right: 0; bottom: 0; left: 50%; width: min(720px,100%); max-height: min(72vh,640px); display: grid; gap: 13px; overflow-y: auto; overscroll-behavior: contain; padding: 9px 18px calc(18px + env(safe-area-inset-bottom)); border-radius: 24px 24px 0 0; background: #f8f5f0; box-shadow: 0 -20px 58px rgba(27,22,30,.22); transform: translate(-50%,105%); transition: transform .24s cubic-bezier(.2,.8,.2,1); }
.profile-relation-sheet.open > div { transform: translate(-50%,0); }
.profile-relation-sheet header { display: flex; align-items: center; justify-content: space-between; }
.profile-relation-sheet h2 { margin: 0; font-size: 19px; }
.profile-relation-sheet header button { width: 36px; height: 36px; border: 0; color: var(--muted); background: transparent; font-size: 25px; }
.profile-relation-score { display: flex; align-items: baseline; gap: 11px; }.profile-relation-score strong { color: #d54471; font-size: 34px; }.profile-relation-score span { font-size: 13px; font-weight: 800; }
.profile-relation-sheet > div > p { margin: -4px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.profile-relation-tags { display: flex; flex-wrap: wrap; gap: 7px; }.profile-relation-tags span { padding: 7px 10px; border-radius: 999px; background: #eee9e3; font-size: 10px; }.profile-relation-tags small { color: var(--muted); }
.profile-relation-sheet dl { display: grid; margin: 0; border-top: 1px solid var(--line); }.profile-relation-sheet dl > div { min-height: 45px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }.profile-relation-sheet dt { color: var(--muted); font-size: 11px; }.profile-relation-sheet dd { margin: 0; font-size: 12px; font-weight: 800; }
.profile-relation-sheet > div > a { min-height: 46px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: var(--ink); font-weight: 800; }

@media (max-width:420px) {
  .profile-public-gallery-entry { top: calc(78px + env(safe-area-inset-top)); }
  .profile-public-gallery-entry img { width: 39px; height: 39px; }
  .profile-public-tags span { padding: 6px 10px; }
  .profile-relation-card { min-height: 72px; }
}

/* V3 discover service and play hub */
.discover-header .header-actions{gap:8px}.discover-blindbox-action{height:38px;display:inline-flex;align-items:center;gap:5px;padding:0 10px;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:19px;font-size:12px;font-weight:800;text-decoration:none;white-space:nowrap}.discover-blindbox-action i{width:20px;height:20px;display:grid;place-items:center;color:#df416b;background:#ffe5ee;border-radius:50%;font-style:normal;font-size:15px}
.discover-play-launchpad{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:10px;margin:2px 0 16px}.discover-play-card{position:relative;display:block;height:132px;overflow:hidden;padding:18px 14px;color:#181620;text-decoration:none;border-radius:8px;isolation:isolate}.discover-play-card.companion{background:#8bc5f6}.discover-play-card.ludo{background:#ffe25c}.discover-play-card>span{position:relative;z-index:2;display:flex;align-items:flex-start;flex-direction:column;width:68%;min-width:0;height:100%}.discover-play-card b{font-size:20px;line-height:1.15;white-space:nowrap}.discover-play-card small{margin-top:7px;font-size:12px;line-height:1.45;color:rgba(24,22,32,.7)}.discover-play-card em{margin-top:auto;padding:5px 9px;color:#fff;background:#171620;border-radius:5px;font-size:11px;font-style:normal;font-weight:800}.discover-play-card img{position:absolute;right:-20px;bottom:-16px;z-index:1;width:112px;height:112px;object-fit:contain;filter:drop-shadow(0 8px 10px rgba(0,0,0,.08))}
.companion-v3-hero,.ludo-v3-hero,.blindbox-v3-hero{position:relative;min-height:210px;overflow:hidden;margin:0 0 16px;padding:28px 24px;color:#fff;background:#2f2934;border-radius:8px}.companion-v3-hero>div,.ludo-v3-hero>div,.blindbox-v3-hero>div{position:relative;z-index:2;max-width:62%}.companion-v3-hero span,.ludo-v3-hero span,.blindbox-v3-hero span{font-size:12px;font-weight:800;opacity:.8}.companion-v3-hero h2,.ludo-v3-hero h2,.blindbox-v3-hero h2{margin:8px 0;font-size:30px;line-height:1.1;letter-spacing:0}.companion-v3-hero p,.ludo-v3-hero p,.blindbox-v3-hero p{margin:0;font-size:13px;line-height:1.65;color:rgba(255,255,255,.82)}.companion-v3-hero img,.ludo-v3-hero img,.blindbox-v3-hero img{position:absolute;right:-38px;bottom:-28px;width:220px;height:220px;object-fit:contain}.companion-v3-hero{background:#326e8f}
.companion-v3-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:16px}.companion-v3-actions a{display:flex;min-width:0;min-height:76px;padding:14px;flex-direction:column;justify-content:center;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:8px;text-decoration:none}.companion-v3-actions b{font-size:15px}.companion-v3-actions span{margin-top:5px;color:var(--muted);font-size:11px;line-height:1.4}.companion-v3-list{margin-top:0}.companion-v3-list>.companion-v3-card+.companion-v3-card{border-top:1px solid var(--line)}.companion-v3-card{display:grid;grid-template-columns:54px minmax(0,1fr) auto;align-items:center;gap:12px;padding:15px 2px;color:var(--ink);text-decoration:none}.companion-v3-avatar{position:relative;display:block;width:54px;height:54px}.companion-v3-avatar .avatar{width:54px;height:54px}.companion-v3-avatar>i{position:absolute;right:1px;bottom:1px;width:11px;height:11px;background:#aaa;border:2px solid #fff;border-radius:50%}.companion-v3-avatar>i.online{background:#1abb83}.companion-v3-card>span:nth-child(2){display:flex;min-width:0;flex-direction:column}.companion-v3-card strong{overflow:hidden;font-size:15px;text-overflow:ellipsis;white-space:nowrap}.companion-v3-card small{overflow:hidden;margin-top:4px;color:var(--muted);font-size:12px;text-overflow:ellipsis;white-space:nowrap}.companion-v3-card em{display:flex;gap:10px;margin-top:7px;font-style:normal;font-size:11px}.companion-v3-card em b{color:#d98a16;font-size:11px}.companion-v3-card em i{color:var(--muted);font-style:normal}.companion-v3-price{text-align:right}.companion-v3-price b{display:block;font-size:15px}.companion-v3-price small{font-size:10px}
body[data-page="ludo"]{background:#eeece8}.ludo-shell{background:#f7f5f1}.ludo-main{padding:0 16px calc(104px + env(safe-area-inset-bottom))}.ludo-main [hidden]{display:none!important}
.ludo-local-header{position:sticky;top:0;z-index:24;display:grid;grid-template-columns:42px minmax(0,1fr) 42px;align-items:center;min-height:62px;padding:calc(7px + env(safe-area-inset-top)) 0 7px;background:rgba(247,245,241,.94);backdrop-filter:blur(18px)}.ludo-local-header>div{display:flex;min-width:0;align-items:center;flex-direction:column}.ludo-local-header small{color:#8a858e;font-size:8px;font-weight:900;letter-spacing:.13em}.ludo-local-header strong{margin-top:2px;font-size:17px}.ludo-circle-action{display:grid;width:38px;height:38px;place-items:center;justify-self:center;color:#211e28;background:#fff;border:1px solid #ded8d1;border-radius:50%;text-decoration:none}.ludo-circle-action span{font-size:22px;line-height:1}.ludo-local-header a span{font-size:14px;font-weight:900}
.ludo-v3-hero{position:relative;min-height:218px;overflow:hidden;margin:0;padding:25px 22px;color:#fff;background:#20222a;border-radius:24px;isolation:isolate}.ludo-v3-hero::after{position:absolute;right:-62px;bottom:-86px;width:230px;height:230px;border:38px solid rgba(255,212,81,.16);border-radius:50%;content:""}.ludo-v3-hero>div:first-child{position:relative;z-index:2;width:58%;max-width:none}.ludo-v3-hero>div:first-child>span{color:#72e3c0;font-size:9px;font-weight:900;letter-spacing:.2em;opacity:1}.ludo-v3-hero h2{margin:12px 0 8px;font-size:28px;line-height:1.12}.ludo-v3-hero p{margin:0;color:rgba(255,255,255,.72);font-size:11px;line-height:1.65}.ludo-v3-hero ul{display:flex;gap:5px;flex-wrap:wrap;margin:17px 0 0;padding:0;list-style:none}.ludo-v3-hero li{padding:4px 7px;color:rgba(255,255,255,.78);background:rgba(255,255,255,.08);border-radius:6px;font-size:8px;font-weight:800}
.ludo-hero-board{position:absolute!important;right:19px!important;bottom:27px!important;z-index:2!important;display:grid!important;width:126px!important;height:126px!important;max-width:none!important;grid-template-columns:1fr 1fr!important;gap:5px!important;padding:10px!important;background:#fff!important;border:7px solid rgba(255,255,255,.13)!important;border-radius:31px!important;transform:rotate(7deg)!important;box-shadow:0 16px 32px rgba(0,0,0,.3)!important}.ludo-hero-board i{display:block;border-radius:11px}.ludo-hero-board i:nth-child(1){background:#ff718f}.ludo-hero-board i:nth-child(2){background:#72e3c0}.ludo-hero-board i:nth-child(3){background:#ffd451}.ludo-hero-board i:nth-child(4){background:#82b9ff}.ludo-hero-board b{position:absolute;inset:50% auto auto 50%;display:grid;width:46px;height:46px;place-items:center;color:#fff;background:#211e28;border:4px solid #fff;border-radius:50%;font-size:22px;transform:translate(-50%,-50%) rotate(-7deg)}
.ludo-hub-tabs{position:sticky;top:calc(62px + env(safe-area-inset-top));z-index:22;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:4px;margin:12px 0 20px;padding:4px;background:rgba(235,231,226,.94);border-radius:14px;backdrop-filter:blur(16px)}.ludo-hub-tabs button{min-width:0;height:42px;padding:0 7px;color:#77717b;background:transparent;border:0;border-radius:11px;font-size:11px;font-weight:900;white-space:nowrap}.ludo-hub-tabs button.active{color:#fff;background:#211e28;box-shadow:0 5px 14px rgba(33,30,40,.18)}.ludo-hub-tabs span{display:inline-grid;min-width:17px;height:17px;place-items:center;margin-left:3px;padding:0 4px;color:inherit;background:rgba(255,255,255,.15);border-radius:9px;font-size:8px}.ludo-hub-tabs button:not(.active) span:empty{display:none}
.ludo-view-panel{min-height:390px}.ludo-section-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-bottom:12px}.ludo-section-heading>div{display:flex;min-width:0;flex-direction:column}.ludo-section-heading small,.ludo-create-panel header small,.ludo-join-panel header small{color:#928c96;font-size:8px;font-weight:900;letter-spacing:.16em}.ludo-section-heading h2{margin:3px 0 0;font-size:20px}.ludo-section-heading>span{color:var(--muted);font-size:9px}.ludo-refresh-button{height:34px;padding:0 12px;color:#625c66;background:#fff;border:1px solid var(--line);border-radius:10px;font-size:9px;font-weight:900}
.ludo-mode-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.ludo-mode-card{position:relative;display:grid;min-width:0;min-height:112px;grid-template-columns:39px minmax(0,1fr);align-content:center;gap:10px;padding:15px;text-align:left;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:17px}.ludo-mode-card.active{border-color:#ef667f;box-shadow:0 0 0 3px rgba(239,102,127,.1)}.ludo-mode-card.locked:not(.active){background:#f1efed}.ludo-mode-card>span{display:grid;width:39px;height:39px;place-items:center;color:#6b4b15;background:#fff0bb;border-radius:13px;font-size:19px}.ludo-mode-card:nth-child(2)>span{color:#a82f59;background:#ffe1eb}.ludo-mode-card:nth-child(3)>span{color:#18765e;background:#d9f4ea}.ludo-mode-card:nth-child(4)>span{color:#3c65a1;background:#e2edff}.ludo-mode-card>div{min-width:0}.ludo-mode-card strong{display:block;padding-right:34px;font-size:13px}.ludo-mode-card small{display:block;margin-top:6px;color:var(--muted);font-size:9px;line-height:1.45}.ludo-mode-card em{position:absolute;top:12px;right:10px;padding:3px 6px;color:#8a5d00;background:#fff0bd;border-radius:5px;font-size:8px;font-style:normal;font-weight:900}.ludo-mode-card em.free{color:#147d5f;background:#daf4e9}
.ludo-create-panel,.ludo-join-panel{margin-top:12px;padding:17px;background:#fff;border:1px solid var(--line);border-radius:19px}.ludo-create-panel>header,.ludo-join-panel>header{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}.ludo-create-panel>header>div,.ludo-join-panel>header>div{display:flex;min-width:0;flex-direction:column}.ludo-create-panel>header strong,.ludo-join-panel>header strong{margin-top:3px;font-size:15px}.ludo-create-panel>header>span{padding:5px 8px;color:#157c5e;background:#daf4e9;border-radius:999px;font-size:8px;font-weight:900}.ludo-join-panel>header>span{color:var(--muted);font-size:9px}.ludo-visibility-field{margin:0 0 11px;padding:0;border:0}.ludo-visibility-field legend{margin-bottom:8px;color:#514c55;font-size:10px;font-weight:900}.ludo-visibility-options{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:7px}.ludo-visibility-options label{display:block;min-width:0;margin:0}.ludo-visibility-options input{position:absolute;width:1px!important;height:1px!important;opacity:0}.ludo-visibility-options label>span{display:flex;min-height:67px;align-items:flex-start;justify-content:center;flex-direction:column;padding:10px;color:#6e6872;background:#f5f2ef;border:1px solid transparent;border-radius:12px}.ludo-visibility-options b{color:#3b3740;font-size:10px}.ludo-visibility-options small{margin-top:4px;font-size:8px;line-height:1.35}.ludo-visibility-options input:checked+span{color:#435c54;background:#edf8f4;border-color:#7bd4b8;box-shadow:inset 0 0 0 1px #7bd4b8}.ludo-visibility-options input:focus-visible+span{outline:2px solid #ef667f;outline-offset:2px}
.ludo-form-row{display:grid;grid-template-columns:76px minmax(0,1fr);align-items:center;gap:10px;margin:9px 0;color:#5d5761;font-size:10px;font-weight:800}.ludo-create-panel input,.ludo-create-panel select,.ludo-join-panel input,.ludo-join-panel select{width:100%;height:44px;padding:0 12px;color:var(--ink);background:#faf9f7;border:1px solid var(--line);border-radius:11px;outline:0;font:inherit;font-size:12px}.ludo-create-panel input:focus,.ludo-create-panel select:focus,.ludo-join-panel input:focus,.ludo-join-panel select:focus{border-color:#ef667f;box-shadow:0 0 0 3px rgba(239,102,127,.09)}.ludo-spectator-settings{display:grid;grid-template-columns:minmax(0,1.7fr) minmax(190px,1fr);gap:8px;margin-top:11px}.ludo-spectator-settings>label{display:flex;min-width:0;min-height:58px;align-items:center;justify-content:space-between;gap:10px;margin:0;padding:10px 11px;color:#514c55;background:#f5f2ef;border-radius:12px}.ludo-spectator-settings>label>span{display:flex;min-width:0;flex-direction:column}.ludo-spectator-settings b{font-size:10px}.ludo-spectator-settings small{margin-top:3px;color:var(--muted);font-size:8px;line-height:1.35}.ludo-spectator-settings input[type="checkbox"]{width:20px;height:20px;flex:0 0 20px;accent-color:#1ca47c}.ludo-spectator-settings>#ludoSpectatorLimit{display:grid;grid-template-columns:minmax(max-content,1fr) 96px;gap:10px}.ludo-spectator-settings>#ludoSpectatorLimit>span{white-space:nowrap}.ludo-spectator-settings select{width:100%;min-width:0;height:38px;padding:0 30px 0 10px;background:#fff;white-space:nowrap}.ludo-consent-note{margin:11px 0 0;padding:10px;color:#746722;background:#fff8d8;border-radius:10px;font-size:8px;line-height:1.55}.ludo-create-panel>.primary-button{width:100%;min-height:48px;margin-top:11px;background:#211e28;border-radius:13px}.ludo-join-panel form{display:grid;grid-template-columns:minmax(0,1fr) 105px 60px;gap:7px}.ludo-join-panel form button{color:#fff;background:#211e28;border:0;border-radius:11px;font-size:10px;font-weight:900}.ludo-join-panel>.secondary-button{width:100%;min-height:42px;margin-top:8px;border-radius:11px;font-size:10px}
.ludo-room-filters{display:flex;gap:6px;margin-bottom:11px}.ludo-room-filters button{height:34px;padding:0 11px;color:#746e78;background:#ebe7e3;border:0;border-radius:10px;font-size:9px;font-weight:900}.ludo-room-filters button.active{color:#fff;background:#211e28}.ludo-room-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.ludo-room-card{display:flex;min-width:0;min-height:214px;padding:15px;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:17px}.ludo-room-card>header{display:flex;align-items:center;justify-content:space-between;gap:8px;color:var(--muted);font-size:8px}.ludo-room-status{display:flex;align-items:center;gap:5px;color:#6c6670;font-weight:900}.ludo-room-status i{width:7px;height:7px;background:#a9a3aa;border-radius:50%}.ludo-room-status.waiting i{background:#e7aa24}.ludo-room-status.playing i{background:#1daf7f;box-shadow:0 0 0 4px rgba(29,175,127,.1)}.ludo-room-card h3{display:-webkit-box;overflow:hidden;margin:14px 0 5px;font-size:16px;line-height:1.35;-webkit-line-clamp:2;-webkit-box-orient:vertical}.ludo-room-card>p{overflow:hidden;margin:0;color:var(--muted);font-size:8px;text-overflow:ellipsis;white-space:nowrap}.ludo-room-players{display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;gap:9px;margin-top:14px}.ludo-room-players>span{display:flex;min-width:36px}.ludo-room-players img{width:32px;height:32px;object-fit:cover;border:2px solid #fff;border-radius:50%}.ludo-room-players img+img{margin-left:-10px}.ludo-room-players i{display:grid;width:34px;height:34px;place-items:center;color:#8c858e;background:#eeeae6;border-radius:50%;font-size:7px;font-style:normal}.ludo-room-players b{overflow:hidden;font-size:9px;text-overflow:ellipsis;white-space:nowrap}.ludo-room-card footer{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px;margin-top:auto;padding-top:14px}.ludo-room-card footer>*{display:grid;min-height:37px;place-items:center;padding:0 8px;border:0;border-radius:10px;font-size:9px;font-weight:900;text-align:center;text-decoration:none}.ludo-room-card footer>*:only-child{grid-column:1/-1}.ludo-room-primary{color:#fff;background:#211e28}.ludo-room-secondary{color:#514c55;background:#eeeae6}.ludo-room-disabled{grid-column:1/-1;color:#99939b;background:#f0eeec}.ludo-room-empty{grid-column:1/-1;display:flex;min-height:280px;align-items:center;justify-content:center;flex-direction:column;padding:28px;color:var(--muted);background:#fff;border:1px dashed #d9d3ce;border-radius:18px;text-align:center}.ludo-room-empty>span{display:grid;width:48px;height:48px;place-items:center;color:#386c5e;background:#dcf4eb;border-radius:15px;font-size:24px}.ludo-room-empty strong{margin-top:13px;color:var(--ink);font-size:15px}.ludo-room-empty p{max-width:300px;margin:6px 0 0;font-size:9px;line-height:1.6}.ludo-room-empty button{height:36px;margin-top:13px;padding:0 13px;color:#fff;background:#211e28;border:0;border-radius:10px;font-size:9px;font-weight:900}
@media(max-width:520px){.ludo-mode-grid,.ludo-room-list{grid-template-columns:1fr}.ludo-mode-card{min-height:92px}.ludo-spectator-settings{grid-template-columns:minmax(0,1.35fr) minmax(170px,1fr)}.ludo-join-panel form{grid-template-columns:minmax(0,1fr) 100px}.ludo-join-panel form button{grid-column:1/-1;height:42px}.ludo-room-card{min-height:205px}}
@media(max-width:440px){.ludo-spectator-settings{grid-template-columns:1fr}.ludo-spectator-settings>#ludoSpectatorLimit{grid-template-columns:minmax(0,1fr) 108px}}
@media(max-width:390px){.ludo-main{padding-inline:12px}.ludo-v3-hero{min-height:204px;padding:22px 18px}.ludo-v3-hero h2{font-size:25px}.ludo-hero-board{right:10px!important;bottom:28px!important;width:112px!important;height:112px!important}.ludo-hub-tabs button{font-size:10px}.ludo-visibility-options{gap:5px}.ludo-visibility-options label>span{min-height:72px;padding:8px}.ludo-form-row{grid-template-columns:68px minmax(0,1fr)}}

/* Compact ludo lobby and 24-hour room lifecycle */
.ludo-main{padding-bottom:calc(132px + env(safe-area-inset-bottom))}.ludo-v3-hero{min-height:178px;padding:20px;border-radius:20px}.ludo-v3-hero::after{right:-72px;bottom:-105px;width:220px;height:220px}.ludo-v3-hero>div:first-child{width:62%}.ludo-v3-hero h2{margin:9px 0 6px;font-size:24px}.ludo-v3-hero p{font-size:10px;line-height:1.55}.ludo-v3-hero ul{margin-top:12px}.ludo-hero-board{right:16px!important;bottom:22px!important;width:106px!important;height:106px!important;padding:8px!important;border-width:6px!important;border-radius:26px!important}.ludo-hero-board b{width:40px;height:40px;font-size:19px}.ludo-shell.ludo-list-view .ludo-v3-hero{display:none}.ludo-shell.ludo-list-view .ludo-hub-tabs{margin-top:4px}.ludo-hub-tabs{margin:10px 0 14px}.ludo-hub-tabs span{display:inline;margin-left:2px;padding:0;color:inherit;background:transparent;border-radius:0;font-size:8px;font-weight:700;opacity:.62}.ludo-hub-tabs button:not(.active) span:empty,.ludo-hub-tabs span:empty{display:none}.ludo-view-panel{min-height:270px}.ludo-section-heading{margin-bottom:10px}.ludo-section-heading h2{font-size:18px}.ludo-mode-card.active{border-color:#69cbae;box-shadow:0 0 0 2px rgba(28,164,124,.13)}.ludo-visibility-options input:focus-visible+span{outline:2px solid #1ca47c;outline-offset:2px}.ludo-create-panel input:focus,.ludo-create-panel select:focus,.ludo-join-panel input:focus,.ludo-join-panel select:focus{border-color:#69cbae;box-shadow:0 0 0 2px rgba(28,164,124,.13)}.ludo-mode-card:focus-visible,.ludo-hub-tabs button:focus-visible,.ludo-room-filters button:focus-visible,.ludo-refresh-button:focus-visible,.ludo-room-card button:focus-visible,.ludo-room-card a:focus-visible,.ludo-room-empty button:focus-visible{outline:2px solid #1ca47c;outline-offset:2px}.ludo-room-list{gap:8px;padding-bottom:8px}.ludo-room-card{min-height:174px;padding:13px;border-radius:15px}.ludo-room-card.mine{min-height:186px}.ludo-room-card.unavailable{background:#f3f1ef;border-style:dashed}.ludo-room-card.unavailable h3,.ludo-room-card.unavailable .ludo-room-players{opacity:.72}.ludo-room-card>header{min-height:17px}.ludo-room-status.expired i,.ludo-room-status.cancelled i,.ludo-room-status.closed i{background:#aaa4aa;box-shadow:none}.ludo-room-card h3{margin:9px 0 4px;font-size:15px;line-height:1.3}.ludo-room-meta{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:8px;color:#625c66;font-size:8px}.ludo-room-meta span{padding:3px 6px;color:#147d5f;background:#dcf4eb;border-radius:5px;font-weight:900}.ludo-room-meta time{font-style:normal;font-weight:800;white-space:nowrap}.ludo-room-meta time.expired{color:#9a6067}.ludo-room-players{gap:8px;margin-top:9px}.ludo-room-players>span{min-width:32px}.ludo-room-players img{width:29px;height:29px}.ludo-room-players i{width:30px;height:30px}.ludo-room-card footer{padding-top:10px}.ludo-room-card footer>*{min-height:36px}.ludo-room-empty{min-height:176px;padding:20px;border-radius:15px}.ludo-room-empty>span{width:42px;height:42px;border-radius:13px;font-size:20px}.ludo-room-empty strong{margin-top:10px;font-size:14px}.ludo-room-empty button{margin-top:10px}.ludo-room-primary,.ludo-room-secondary{cursor:pointer}.ludo-room-disabled{cursor:not-allowed}
@media(max-width:520px){.ludo-room-card,.ludo-room-card.mine{min-height:0}.ludo-create-panel input,.ludo-create-panel select,.ludo-join-panel input,.ludo-join-panel select{font-size:16px}.ludo-room-empty{min-height:164px}}
@media(max-width:390px){.ludo-main{padding-inline:12px;padding-bottom:calc(136px + env(safe-area-inset-bottom))}.ludo-v3-hero{min-height:170px;padding:18px 16px}.ludo-v3-hero h2{font-size:23px}.ludo-v3-hero ul{max-width:190px}.ludo-hero-board{right:9px!important;bottom:23px!important;width:98px!important;height:98px!important}.ludo-hub-tabs{margin-bottom:12px}.ludo-section-heading h2{font-size:17px}.ludo-room-card{padding:12px}.ludo-room-card h3{font-size:14px}.ludo-room-meta{font-size:8px}.ludo-room-empty{min-height:154px}.ludo-room-card:last-child{margin-bottom:4px}}
.blindbox-v3-hero{background:#6f3854}.blindbox-v3-hero img{right:-26px;width:205px;height:205px}.blindbox-control{padding:18px;background:#fff;border:1px solid var(--line);border-radius:8px}.blindbox-price{display:grid;grid-template-columns:auto 1fr;align-items:end;column-gap:8px;padding-bottom:14px;border-bottom:1px solid var(--line)}.blindbox-price span{color:var(--muted);font-size:12px}.blindbox-price strong{font-size:28px;line-height:1}.blindbox-price small{grid-column:1/-1;margin-top:7px;color:var(--muted);font-size:11px}.blindbox-preference{padding:16px 0}.blindbox-preference>span{display:block;margin-bottom:9px;color:var(--muted);font-size:12px}.blindbox-preference>div{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}.blindbox-preference button{height:38px;color:var(--muted);background:#f5f3f1;border:1px solid transparent;border-radius:6px;font-weight:700}.blindbox-preference button.active{color:#d83f6b;background:#ffe6ee;border-color:#f8b7ca}.blindbox-draw-button{display:flex;width:100%;min-height:58px;align-items:center;justify-content:center;flex-direction:column;color:#fff;background:#d93e69;border:0;border-radius:8px;font-weight:800}.blindbox-draw-button span{font-size:16px}.blindbox-draw-button small{margin-top:4px;color:rgba(255,255,255,.78);font-size:10px;font-weight:500}.blindbox-draw-button:disabled{background:#b8b2b5}.blindbox-rules{margin:12px 0 0;color:var(--muted);font-size:10px;line-height:1.6}#blindboxCurrent{margin-top:16px}.blindbox-result-card{display:grid;grid-template-columns:120px minmax(0,1fr);overflow:hidden;margin-bottom:12px;background:#fff;border:1px solid var(--line);border-radius:8px}.blindbox-result-card.current{border-color:#ed8aa7;box-shadow:0 10px 28px rgba(117,41,65,.12)}.blindbox-result-cover{position:relative;min-height:210px;background:#ece8e8}.blindbox-result-cover>img{width:100%;height:100%;object-fit:cover}.blindbox-result-cover>span{display:grid;width:100%;height:100%;place-items:center;font-size:40px}.blindbox-result-cover>i{position:absolute;left:8px;bottom:8px;padding:4px 7px;color:#fff;background:rgba(25,22,29,.72);border-radius:4px;font-size:9px;font-style:normal}.blindbox-result-copy{display:flex;min-width:0;padding:15px;flex-direction:column}.blindbox-result-copy>div:first-child{display:flex;align-items:center;gap:7px}.blindbox-result-copy h3{overflow:hidden;margin:0;font-size:17px;text-overflow:ellipsis;white-space:nowrap}.blindbox-result-copy>div:first-child em{padding:2px 5px;color:#11845e;background:#daf5e9;border-radius:3px;font-size:9px;font-style:normal}.blindbox-result-copy>p{margin:6px 0;color:var(--muted);font-size:11px}.blindbox-result-copy blockquote{display:-webkit-box;overflow:hidden;margin:6px 0 10px;color:#4f4a55;font-size:12px;line-height:1.5;-webkit-box-orient:vertical;-webkit-line-clamp:2}.blindbox-result-copy>div:nth-of-type(2){display:flex;gap:5px;overflow:hidden;flex-wrap:wrap}.blindbox-result-copy>div:nth-of-type(2) span{padding:3px 5px;color:#756d7a;background:#f4f1f3;border-radius:3px;font-size:9px}.blindbox-result-copy footer{display:grid;grid-template-columns:1fr 1fr;gap:7px;margin-top:auto}.blindbox-result-copy footer a,.blindbox-result-copy footer button{display:grid;min-height:35px;place-items:center;border-radius:5px;font-size:11px;font-weight:800;text-decoration:none}.blindbox-result-copy footer a{color:var(--ink);background:#f4f1f2}.blindbox-result-copy footer button{color:#fff;background:#221d28;border:0}.blindbox-history{margin-top:16px}.blindbox-history>.section-head+div{display:grid;gap:0}
@media (max-width:390px){.discover-play-card{height:124px;padding:15px 12px}.discover-play-card b{font-size:18px}.discover-play-card img{right:-28px;width:104px;height:104px}.companion-v3-hero>div,.ludo-v3-hero>div,.blindbox-v3-hero>div{max-width:68%}.ludo-join-panel form{grid-template-columns:1fr 84px}.ludo-join-panel form button{grid-column:1/-1;height:42px}.blindbox-result-card{grid-template-columns:104px minmax(0,1fr)}}
.ludo-create-panel label[hidden]{display:none!important}
.companion-v3-hero>div{max-width:52%}.companion-v3-hero p{font-size:12px}

/* V3 companion marketplace */
.companion-market-shell{background:#f7f5f1}.companion-market-main{padding:0 16px calc(98px + env(safe-area-inset-bottom))}.companion-market-v3{max-width:720px;margin:0 auto}.companion-market-toolbar{position:sticky;top:0;z-index:12;display:flex;min-height:66px;align-items:center;justify-content:space-between;gap:12px;padding:calc(8px + env(safe-area-inset-top)) 0 8px;background:rgba(247,245,241,.94);backdrop-filter:blur(18px)}.companion-market-toolbar>div{display:flex;min-width:0;flex-direction:column}.companion-market-toolbar small{color:var(--muted);font-size:9px;font-weight:900;letter-spacing:.14em}.companion-market-toolbar strong{margin-top:3px;font-size:17px}.companion-market-toolbar button{display:flex;height:38px;max-width:46%;align-items:center;gap:5px;padding:0 12px;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:19px;font-size:11px;font-weight:800;white-space:nowrap}.companion-market-toolbar button span{color:#16946f;font-size:15px}
.companion-market-hero{position:relative;min-height:188px;overflow:hidden;padding:24px 20px;color:#fff;background:linear-gradient(135deg,#20232b 0%,#393640 60%,#51444c 100%);border-radius:22px}.companion-market-hero>div{position:relative;z-index:2;width:59%}.companion-market-hero span{display:inline-flex;padding:5px 8px;color:#d9fff1;background:rgba(100,236,191,.16);border:1px solid rgba(175,255,228,.24);border-radius:999px;font-size:9px;font-weight:800}.companion-market-hero h1{margin:14px 0 8px;font-size:25px;line-height:1.12}.companion-market-hero p{margin:0;color:rgba(255,255,255,.76);font-size:11px;line-height:1.65}.companion-market-hero img{position:absolute;right:-44px;bottom:-48px;width:220px;height:220px;object-fit:contain;filter:drop-shadow(0 12px 20px rgba(0,0,0,.24))}
.companion-market-shortcuts{display:grid;grid-template-columns:1fr 1.45fr;gap:9px;margin-top:11px}.companion-market-shortcuts>a,.companion-market-shortcuts>button{display:grid;min-width:0;min-height:78px;grid-template-columns:42px minmax(0,1fr);grid-template-rows:auto auto;align-content:center;column-gap:11px;padding:12px;text-align:left;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:16px;text-decoration:none}.companion-market-shortcuts>button{font:inherit}.companion-market-shortcuts span{grid-row:1/3;display:grid;width:42px;height:42px;place-items:center;color:#197f63;background:#d9f6eb;border-radius:13px;font-size:10px;font-weight:900}.companion-market-shortcuts>button span{color:#a76c00;background:#fff0be}.companion-market-shortcuts b{align-self:end;overflow:hidden;font-size:13px;text-overflow:ellipsis;white-space:nowrap}.companion-market-shortcuts small{align-self:start;margin-top:3px;color:var(--muted);font-size:9px;line-height:1.3}
.companion-market-controls{margin:17px -16px 0;padding:0 16px 12px;background:#f7f5f1;border-bottom:1px solid var(--line)}.companion-market-controls form{display:grid;grid-template-columns:minmax(0,1fr) 58px;gap:7px}.companion-market-controls form label{display:flex;height:42px;align-items:center;gap:7px;padding:0 12px;background:#fff;border:1px solid var(--line);border-radius:13px}.companion-market-controls form label span{color:var(--muted);font-size:18px}.companion-market-controls input{min-width:0;flex:1;border:0;outline:0;background:transparent;font:inherit;font-size:12px}.companion-market-controls form>button{color:#fff;background:#211e28;border:0;border-radius:12px;font-size:11px;font-weight:800}.companion-category-rail{display:flex;gap:7px;overflow-x:auto;margin:12px -16px 0;padding:0 16px;scrollbar-width:none}.companion-category-rail::-webkit-scrollbar{display:none}.companion-category-rail button{display:flex;height:37px;align-items:center;gap:4px;padding:0 12px;color:#736e77;background:#fff;border:1px solid var(--line);border-radius:999px;font-size:10px;font-weight:800;white-space:nowrap}.companion-category-rail button i{font-style:normal}.companion-category-rail button.active{color:#fff;background:#211e28;border-color:#211e28}.companion-filter-line{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:11px}.companion-filter-line>div{display:flex;gap:5px}.companion-filter-line button{height:31px;padding:0 10px;color:var(--muted);background:transparent;border:0;border-radius:8px;font-size:10px;font-weight:800}.companion-filter-line button.active{color:#178462;background:#dff5ed}.companion-filter-line select{height:33px;padding:0 25px 0 9px;color:var(--muted);background:#fff;border:1px solid var(--line);border-radius:9px;font-size:10px}
.companion-market-results{margin:0 -16px;padding:15px 16px 0;background:#fff}.companion-market-result-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:4px}.companion-market-result-head>div{display:flex;align-items:baseline;gap:8px}.companion-market-result-head h2{margin:0;font-size:16px}.companion-market-result-head span{color:var(--muted);font-size:9px}.companion-market-result-head button{width:35px;height:35px;color:var(--muted);background:transparent;border:0;font-size:19px}.companion-market-card{display:grid;grid-template-columns:70px minmax(0,1fr) auto;gap:12px;padding:15px 0;color:var(--ink);border-bottom:1px solid var(--line);text-decoration:none}.companion-market-avatar{position:relative;width:70px;height:86px;overflow:hidden;background:#eeeae5;border-radius:14px}.companion-market-avatar .avatar{width:100%;height:100%;object-fit:cover;border-radius:0}.companion-market-avatar>i{position:absolute;right:6px;bottom:6px;width:10px;height:10px;background:#aaa;border:2px solid #fff;border-radius:50%}.companion-market-avatar>i.online{background:#17ad7c}.companion-market-avatar>i.busy{background:#eea82c}.companion-market-copy{display:flex;min-width:0;flex-direction:column}.companion-market-copy>span:first-child{display:flex;align-items:center;gap:6px}.companion-market-copy>span:first-child strong{overflow:hidden;font-size:14px;text-overflow:ellipsis;white-space:nowrap}.companion-market-copy>span:first-child em{padding:2px 5px;color:#16805f;background:#ddf5ec;border-radius:4px;font-size:8px;font-style:normal}.companion-market-copy>b{overflow:hidden;margin-top:5px;font-size:12px;text-overflow:ellipsis;white-space:nowrap}.companion-market-copy>small{display:-webkit-box;overflow:hidden;margin-top:4px;color:var(--muted);font-size:9px;line-height:1.45;-webkit-box-orient:vertical;-webkit-line-clamp:2}.companion-market-badges{display:flex;gap:4px;overflow:hidden;margin-top:6px}.companion-market-badges i{padding:2px 5px;color:#716b74;background:#f2efec;border-radius:4px;font-size:8px;font-style:normal;white-space:nowrap}.companion-market-proof{display:flex;gap:8px;margin-top:auto;padding-top:5px}.companion-market-proof i{color:var(--muted);font-size:8px;font-style:normal}.companion-market-proof i:first-child{color:#d68b15}.companion-market-price{display:flex;min-width:48px;align-items:flex-end;flex-direction:column}.companion-market-price>strong{font-size:18px;line-height:1}.companion-market-price>strong small{font-size:9px}.companion-market-price>small{margin-top:3px;color:var(--muted);font-size:8px}.companion-market-price>b{display:grid;min-width:42px;height:27px;place-items:center;margin-top:auto;color:#fff;background:#211e28;border-radius:8px;font-size:9px}.companion-market-loading{display:grid;gap:10px;padding:14px 0}.companion-market-loading i{display:block;height:82px;background:linear-gradient(90deg,#f2efeb,#faf9f7,#f2efeb);background-size:220% 100%;border-radius:14px;animation:skeleton 1.3s infinite}
.provider-sheet,.companion-booking-sheet{position:fixed;inset:0;z-index:80;pointer-events:none}.provider-sheet.open,.companion-booking-sheet.open{pointer-events:auto}.provider-sheet>button,.companion-booking-sheet>button{position:absolute;inset:0;width:100%;border:0;background:rgba(22,20,25,.48);opacity:0;transition:opacity .22s}.provider-sheet.open>button,.companion-booking-sheet.open>button{opacity:1}.provider-sheet>div,.companion-booking-sheet>div{position:absolute;right:0;bottom:0;left:50%;width:min(720px,100%);max-height:min(88dvh,780px);overflow:hidden;padding:9px 16px calc(18px + env(safe-area-inset-bottom));background:#faf9f7;border-radius:24px 24px 0 0;box-shadow:0 -20px 58px rgba(20,18,22,.2);transform:translate(-50%,105%);transition:transform .24s cubic-bezier(.2,.8,.2,1)}.provider-sheet.open>div,.companion-booking-sheet.open>div{transform:translate(-50%,0)}.provider-sheet-handle,.companion-booking-sheet>div>i{display:block;width:38px;height:4px;margin:0 auto 9px;background:#d9d5d2;border-radius:999px}.provider-sheet header,.companion-booking-sheet header{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;padding-bottom:11px;border-bottom:1px solid var(--line)}.provider-sheet header small,.companion-booking-sheet header small{color:#99939d;font-size:8px;font-weight:900;letter-spacing:.16em}.provider-sheet h2,.companion-booking-sheet h2{margin:3px 0 0;font-size:20px}.provider-sheet header>button,.companion-booking-sheet header>button{width:35px;height:35px;color:#817b84;background:#eeeae6;border:0;border-radius:50%;font-size:21px}.provider-sheet-body{max-height:calc(min(88dvh,780px) - 82px);overflow-y:auto;padding:14px 1px 0;overscroll-behavior:contain}.provider-cert-state{display:grid;grid-template-columns:1fr 1fr;gap:8px}.provider-cert-state>span{display:grid;grid-template-columns:30px minmax(0,1fr);gap:0 9px;padding:12px;background:#fff;border:1px solid var(--line);border-radius:14px}.provider-cert-state i{grid-row:1/3;display:grid;width:30px;height:30px;place-items:center;color:#8b858c;background:#eeeae6;border-radius:50%;font-style:normal;font-weight:900}.provider-cert-state .done i{color:#fff;background:#1aa577}.provider-cert-state b{font-size:11px}.provider-cert-state small{margin-top:3px;color:var(--muted);font-size:8px;line-height:1.3}.provider-cert-action{display:grid;height:42px;place-items:center;margin-top:9px;color:#fff;background:#211e28;border-radius:12px;font-size:11px;font-weight:800;text-decoration:none}.provider-rejected{margin-bottom:10px;padding:12px;color:#8b4d16;background:#fff0dd;border:1px solid #f0d1ab;border-radius:13px}.provider-rejected b{font-size:12px}.provider-rejected p{margin:4px 0 0;font-size:9px;line-height:1.5}.provider-apply-form,.provider-service-form{display:grid;gap:11px;margin-top:14px}.provider-identity-preview,.provider-approved-head>div{display:flex;align-items:center;gap:10px}.provider-identity-preview .avatar,.provider-approved-head .avatar{width:48px;height:48px}.provider-identity-preview>div,.provider-approved-head>div>span{display:flex;flex-direction:column}.provider-identity-preview b,.provider-approved-head b{font-size:13px}.provider-identity-preview small,.provider-approved-head small{margin-top:3px;color:var(--muted);font-size:9px}.provider-apply-form>label,.provider-service-form>label{display:grid;gap:6px;color:#514c55;font-size:10px;font-weight:800}.provider-apply-form input:not([type=checkbox]),.provider-apply-form textarea,.provider-service-form input,.provider-service-form textarea,.provider-service-form select,.companion-booking-sheet input,.companion-booking-sheet select{width:100%;min-height:44px;padding:10px 12px;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:11px;outline:0;font:inherit;font-size:12px}.provider-apply-form textarea,.provider-service-form textarea{min-height:86px;resize:vertical}.provider-apply-form label>small{color:var(--muted);font-weight:500;line-height:1.5}.provider-apply-form fieldset{display:grid;gap:8px;margin:0;padding:12px;background:#fff;border:1px solid var(--line);border-radius:12px}.provider-apply-form legend{padding:0 5px;color:#514c55;font-size:10px;font-weight:800}.provider-apply-form fieldset label,.provider-agreement{display:flex!important;align-items:flex-start;gap:7px;color:#5f5963!important;font-size:10px!important;font-weight:600!important;line-height:1.45}.provider-apply-form input[type=checkbox]{width:18px;height:18px;flex:0 0 18px}.provider-proof-preview{display:flex;gap:7px;overflow-x:auto}.provider-proof-preview img{width:62px;height:62px;object-fit:cover;border-radius:9px}.provider-apply-form>.primary-button:disabled{opacity:.45}.provider-state{padding:18px 4px}.provider-state>span{display:inline-flex;padding:5px 8px;color:#8c6010;background:#fff0c8;border-radius:999px;font-size:9px;font-weight:800}.provider-state h3{margin:12px 0 6px;font-size:20px}.provider-state p{margin:0;color:var(--muted);font-size:11px;line-height:1.7}.provider-state dl{margin:18px 0 0;border-top:1px solid var(--line)}.provider-state dl>div{display:flex;min-height:45px;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line);font-size:10px}.provider-state dt{color:var(--muted)}.provider-state dd{margin:0;font-weight:800}.provider-approved-head{display:flex;align-items:center;justify-content:space-between;gap:10px}.provider-approved-head>button{height:36px;padding:0 12px;color:#fff;background:#211e28;border:0;border-radius:10px;font-size:9px;font-weight:800}.provider-service-row{display:grid;grid-template-columns:minmax(0,1fr) auto auto;align-items:center;gap:9px;padding:12px 0;border-bottom:1px solid var(--line)}.provider-service-row>div{display:flex;min-width:0;flex-direction:column}.provider-service-row>div span{align-self:flex-start;padding:2px 5px;color:#16805f;background:#def5ec;border-radius:4px;font-size:8px}.provider-service-row>div b{overflow:hidden;margin-top:4px;font-size:11px;text-overflow:ellipsis;white-space:nowrap}.provider-service-row>div small{margin-top:3px;color:var(--muted);font-size:8px}.provider-service-row>strong{font-size:12px}.provider-service-row>button{height:30px;padding:0 9px;color:#635d66;background:#eeeae6;border:0;border-radius:8px;font-size:8px}.provider-service-empty{padding:24px 0;text-align:center;color:var(--muted);font-size:10px}.provider-approved-head+#providerServices{margin:10px 0}.provider-service-form{padding-top:13px;border-top:1px solid var(--line)}.provider-service-form[hidden]{display:none}.provider-service-form h3{margin:0;font-size:16px}.provider-service-price{display:grid;grid-template-columns:1fr 1fr;gap:8px}.provider-service-price label{display:grid;gap:6px;color:#514c55;font-size:10px;font-weight:800}.provider-service-form>div:last-child{display:grid;grid-template-columns:1fr 1.4fr;gap:8px}.provider-service-form .secondary-button,.provider-service-form .primary-button{min-height:44px}
.companion-detail-shell{background:#f7f5f1}.companion-detail-main{padding:0 16px 96px}.companion-detail-v3{max-width:720px;margin:0 auto}.companion-detail-toolbar{position:sticky;top:0;z-index:12;display:flex;min-height:58px;align-items:center;justify-content:space-between;padding:calc(7px + env(safe-area-inset-top)) 0 7px;background:rgba(247,245,241,.94);backdrop-filter:blur(18px)}.companion-detail-toolbar button{display:grid;width:38px;height:38px;place-items:center;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:50%;font-size:22px}.companion-detail-profile{display:grid;grid-template-columns:92px minmax(0,1fr);gap:16px;padding:17px;color:#fff;background:linear-gradient(135deg,#25222a,#4a4249);border-radius:21px}.companion-detail-profile>.avatar{width:92px;height:118px;object-fit:cover;border-radius:16px}.companion-detail-profile>div{display:flex;min-width:0;flex-direction:column}.companion-detail-profile>div>span{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,.7);font-size:9px}.companion-detail-profile>div>span i{width:7px;height:7px;background:#999;border-radius:50%}.companion-detail-profile>div>span i.online{background:#46e0a7}.companion-detail-profile h1{margin:8px 0 5px;font-size:22px}.companion-detail-profile p{display:-webkit-box;overflow:hidden;margin:0;color:rgba(255,255,255,.74);font-size:10px;line-height:1.55;-webkit-box-orient:vertical;-webkit-line-clamp:3}.companion-detail-profile>div>div{display:flex;gap:5px;flex-wrap:wrap;margin-top:auto}.companion-detail-profile>div>div b{padding:3px 6px;color:#e5fff5;background:rgba(74,225,170,.15);border-radius:5px;font-size:8px}.companion-detail-stats{display:grid;grid-template-columns:repeat(3,1fr);margin:10px 0;padding:13px 0;background:#fff;border:1px solid var(--line);border-radius:15px}.companion-detail-stats span{display:flex;align-items:center;flex-direction:column;border-right:1px solid var(--line)}.companion-detail-stats span:last-child{border:0}.companion-detail-stats strong{font-size:17px}.companion-detail-stats small{margin-top:3px;color:var(--muted);font-size:8px}.companion-detail-section{margin-top:10px;padding:16px;background:#fff;border:1px solid var(--line);border-radius:17px}.companion-detail-section>header{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}.companion-detail-section h2{margin:0;font-size:15px}.companion-detail-section>header span{color:var(--muted);font-size:9px}.companion-detail-services{display:grid;gap:7px}.companion-detail-services label{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:12px;padding:12px;background:#f7f5f2;border:1px solid transparent;border-radius:13px}.companion-detail-services label.active{background:#eefaf6;border-color:#8bdcc1}.companion-detail-services input{position:absolute;opacity:0;pointer-events:none}.companion-detail-services label>span{display:flex;min-width:0;flex-direction:column}.companion-detail-services label>span i{align-self:flex-start;padding:2px 5px;color:#15815e;background:#daf4ea;border-radius:4px;font-size:8px;font-style:normal}.companion-detail-services label>span b{margin-top:5px;font-size:11px}.companion-detail-services label>span small{margin-top:4px;color:var(--muted);font-size:8px;line-height:1.45}.companion-detail-services label>strong{align-self:center;font-size:17px}.companion-detail-services label>strong small{font-size:8px}.companion-detail-services label>strong em{display:block;margin-top:2px;color:var(--muted);font-size:7px;font-style:normal;text-align:right}.companion-review-list article{padding:11px 0;border-bottom:1px solid var(--line)}.companion-review-list article:last-child{border:0}.companion-review-list article>div{display:flex;align-items:center;justify-content:space-between}.companion-review-list strong{font-size:10px}.companion-review-list article span{color:#e19a21;font-size:9px}.companion-review-list p{margin:6px 0;color:#514c55;font-size:10px;line-height:1.55}.companion-review-list small,.companion-review-empty{color:var(--muted);font-size:8px}.companion-review-empty{padding:16px 0;text-align:center}.companion-booking-bar{position:fixed;right:0;bottom:0;left:50%;z-index:30;display:grid;width:min(720px,100%);grid-template-columns:auto minmax(0,1fr);align-items:center;gap:14px;padding:10px 16px calc(10px + env(safe-area-inset-bottom));background:rgba(255,255,255,.96);border-top:1px solid var(--line);transform:translateX(-50%);backdrop-filter:blur(18px)}.companion-booking-bar>div{display:flex;min-width:72px;flex-direction:column}.companion-booking-bar small{color:var(--muted);font-size:8px}.companion-booking-bar strong{font-size:20px}.companion-booking-bar>button{height:50px;color:#fff;background:#211e28;border:0;border-radius:14px;font-size:14px;font-weight:900}.companion-booking-sheet>div{max-height:min(80dvh,650px)}.companion-booking-sheet header p{margin:4px 0 0;color:var(--muted);font-size:9px}.companion-booking-sheet form{display:grid;gap:11px;padding-top:14px}.companion-booking-sheet form>label{position:relative;display:grid;grid-template-columns:82px minmax(0,1fr) auto;align-items:center;gap:7px;color:#4f4952;font-size:10px;font-weight:800}.companion-booking-sheet form>label[hidden]{display:none}.companion-booking-sheet form>label select{min-width:78px}.companion-booking-sheet form>label span{color:var(--muted);font-size:9px}.companion-booking-sheet form>p{margin:0;padding:10px;color:#74670f;background:#fff7d8;border-radius:10px;font-size:9px;line-height:1.55}.companion-booking-sheet .primary-button{min-height:50px}
@media(max-width:390px){.companion-market-main{padding-inline:12px}.companion-market-controls,.companion-market-results{margin-inline:-12px;padding-inline:12px}.companion-category-rail{margin-inline:-12px;padding-inline:12px}.companion-market-hero{min-height:176px;padding:20px 17px}.companion-market-hero h1{font-size:22px}.companion-market-hero img{right:-58px;width:205px;height:205px}.companion-market-card{grid-template-columns:64px minmax(0,1fr) auto;gap:9px}.companion-market-avatar{width:64px;height:82px}.companion-market-price{min-width:43px}.provider-cert-state{grid-template-columns:1fr}.companion-detail-profile{grid-template-columns:82px minmax(0,1fr)}.companion-detail-profile>.avatar{width:82px;height:108px}}
.post-setting-value{justify-self:end;color:var(--muted);font-size:13px}
.post-media-panel[hidden],.post-media-empty[hidden],.post-video-preview[hidden],.post-upload-progress[hidden],.post-media-grid[hidden],.post-add-media[hidden]{display:none!important}

/* Fixed single-screen post composer */
.post-composer-active,.post-composer-active body{height:100%;overflow:hidden}.post-composer-active body{padding-bottom:0;background:#fff;overscroll-behavior:none}.post-composer-active body>#app{height:100%}
.post-create-shell{height:var(--post-composer-height,100dvh);min-height:0;overflow:hidden;background:#fff}.post-create-main{height:100%;min-height:0;padding:0}.post-create-form{display:grid;height:100%;min-height:0;grid-template-rows:auto auto auto minmax(74px,1fr) auto auto auto;gap:0;overflow:hidden;padding:10px 16px 0}
.post-create-form .post-media-card{height:clamp(176px,28dvh,270px);min-height:0;margin:0;padding:52px 14px 12px;border-radius:22px;box-shadow:0 10px 28px rgba(37,33,39,.055)}.post-create-form .post-media-mode{top:11px;left:11px;padding:3px;border-radius:10px}.post-create-form .post-media-mode button{min-width:54px;height:31px;padding:0 11px;border-radius:8px;font-size:13px}.post-create-form .post-media-panel{height:100%;min-height:0;align-content:stretch;overflow:auto;overscroll-behavior:contain;scrollbar-width:none}.post-create-form .post-media-panel::-webkit-scrollbar{display:none}.post-create-form .post-media-empty{height:100%;min-height:0;gap:6px}.post-create-form .post-media-empty>span{width:58px;height:58px;border-radius:18px}.post-create-form .post-media-empty svg{width:30px;height:30px}.post-create-form .post-media-empty strong{font-size:18px}.post-create-form .post-media-empty small{font-size:11px}.post-create-form .post-media-grid{align-content:start}.post-create-form .post-add-media{margin-top:7px;padding:7px 11px}
.post-create-form .post-video-preview{height:100%;min-height:0;grid-template-rows:minmax(0,1fr) auto auto;gap:7px}.post-create-form .post-video-stage{min-height:0;border-radius:13px}.post-create-form .post-video-stage video{height:100%;max-height:100%}.post-create-form .post-video-info button{width:30px;height:30px;flex-basis:30px}.post-create-form .post-cover-note{margin:4px 0 3px;font-size:10px;line-height:18px}
.post-create-form .post-author-summary{grid-template-columns:38px minmax(0,1fr) auto;gap:9px;min-height:52px;padding:6px 0}.post-create-form .post-author-summary .avatar{width:38px;height:38px}.post-create-form .post-author-summary>div{gap:2px}.post-create-form .post-author-summary strong{font-size:14px}.post-create-form .post-author-summary span{font-size:10px}.post-create-form .post-author-summary>b{padding:5px 7px;border-radius:8px;font-size:10px}
.post-create-form .post-copy-editor{min-height:0;overflow:hidden;padding:9px 0 4px}.post-create-form .post-copy-editor textarea{display:block;height:100%;min-height:0;padding:0 0 21px;font-size:16px;line-height:1.55}.post-create-form .post-copy-editor>span{bottom:4px;font-size:10px}
.post-create-form .post-meta-block{min-height:0;padding:7px 0;border-top:1px solid var(--line)}.post-create-form .post-meta-block h2{margin:0 0 6px;font-size:13px}.post-create-form .post-topic-rail{gap:6px;margin-right:-16px;padding-right:16px}.post-create-form .post-topic-chip{min-height:32px;padding:0 11px;font-size:11px}
.post-create-form .post-setting-list{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:7px;min-height:0;padding:7px 0;border-top:1px solid var(--line)}.post-create-form .post-setting-list>label{display:flex;min-width:0;min-height:40px;align-items:center;gap:6px;padding:0 9px;border:0;border-radius:10px;background:#f5f3f1}.post-create-form .post-setting-list>label:first-of-type{flex:1}.post-create-form .post-setting-list .post-setting-icon{width:24px;height:24px;flex:0 0 24px;border-radius:7px;background:#fff}.post-create-form .post-setting-list b{flex:0 0 auto;font-size:11px;white-space:nowrap}.post-create-form .post-setting-list input[type=text],.post-create-form .post-setting-list input:not([type]){min-width:0;height:36px;flex:1;padding:0;text-align:left;font-size:11px}.post-create-form .post-setting-list input[type=checkbox]{width:19px;height:19px;margin:0}.post-create-form .post-safety-note{display:none}
.post-create-form .post-publish-bar{position:static;right:auto;bottom:auto;width:auto;margin:0 -16px;padding:9px 16px calc(9px + env(safe-area-inset-bottom));transform:none}.post-create-form .post-publish-bar .primary-button{min-height:50px;border-radius:14px;font-size:15px}
.post-create-shell.keyboard-open .post-media-card,.post-create-shell.keyboard-open .post-cover-note,.post-create-shell.keyboard-open .post-author-summary{display:none}.post-create-shell.keyboard-open .post-create-form{grid-template-rows:minmax(88px,1fr) auto auto auto;padding-top:4px}.post-create-shell.keyboard-open .post-copy-editor{padding-top:6px}
@media(max-height:720px){.post-create-form{padding-top:7px}.post-create-form .post-media-card{height:clamp(164px,27dvh,194px);padding-top:47px}.post-create-form .post-media-mode{top:9px}.post-create-form .post-media-empty>span{width:52px;height:52px}.post-create-form .post-author-summary{min-height:48px;padding:4px 0}.post-create-form .post-copy-editor{padding-top:6px}.post-create-form .post-meta-block{padding-block:5px}.post-create-form .post-setting-list{padding-block:5px}.post-create-form .post-publish-bar{padding-top:7px;padding-bottom:calc(7px + env(safe-area-inset-bottom))}.post-create-form .post-publish-bar .primary-button{min-height:46px}}

/* Companion activity-board layout */
.companion-market-shell{background:#f2f4f7}.companion-market-main{padding:0 16px calc(178px + env(safe-area-inset-bottom))}.companion-market-stage{position:relative;min-height:292px;overflow:hidden;margin:0 -16px;color:#fff;background:#24242b;isolation:isolate}.companion-market-stage-shade{position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(16,17,20,.36),rgba(17,18,21,.1) 37%,rgba(15,15,18,.72))}.companion-market-stage>header{position:relative;z-index:3;display:grid;grid-template-columns:84px minmax(0,1fr) 84px;min-height:58px;align-items:center;padding:calc(8px + env(safe-area-inset-top)) 16px 8px}.companion-market-stage>header>strong{text-align:center;font-size:18px}.companion-market-stage>header>button{justify-self:end;display:flex;height:34px;align-items:center;gap:4px;padding:0;color:#fff;background:transparent;border:0;font-size:11px;font-weight:800}.companion-market-stage>header>button i{font-size:9px;font-style:normal}.companion-market-stage>div:nth-of-type(2){position:relative;z-index:3;width:58%;padding:27px 0 68px 18px}.companion-market-stage>div:nth-of-type(2) small{font-size:9px;font-weight:800;opacity:.72}.companion-market-stage h1{margin:10px 0 7px;font-size:25px;line-height:1.16}.companion-market-stage p{margin:0;color:rgba(255,255,255,.76);font-size:10px;line-height:1.6}.companion-market-stage>img{position:absolute;right:-55px;bottom:25px;z-index:2;width:225px;height:225px;object-fit:contain;filter:drop-shadow(0 16px 24px rgba(0,0,0,.28))}.companion-market-stage>nav{position:absolute;right:0;bottom:0;left:0;z-index:4;display:grid;height:58px;grid-template-columns:repeat(3,1fr);align-items:stretch;border-top:1px solid rgba(255,255,255,.25)}.companion-market-stage>nav button{position:relative;color:rgba(255,255,255,.84);background:rgba(9,10,12,.12);border:0;font-size:12px;font-weight:800}.companion-market-stage>nav button.active{color:#171820;background:#fff;border-radius:20px 20px 0 0}.companion-market-stage>nav button.active:after{content:"";position:absolute;right:-21px;bottom:0;width:22px;height:22px;background:radial-gradient(circle at 100% 0,transparent 21px,#fff 22px)}
.companion-market-controls{position:relative;z-index:5;margin:0 -16px;padding:14px 16px 13px;background:#fff;border:0;border-radius:0 22px 0 0;box-shadow:0 7px 18px rgba(35,42,50,.06)}.companion-market-filter-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:5px}.companion-market-filter-row label{min-width:0}.companion-market-filter-row select{width:100%;height:38px;padding:0 22px 0 9px;color:#34343a;background:#f6f7f9;border:0;border-radius:9px;font-size:10px;font-weight:800}.companion-market-controls form{display:grid;grid-template-columns:minmax(0,1fr) 56px;gap:7px;margin-top:9px}.companion-market-controls form label{height:38px;background:#f6f7f9;border:0;border-radius:10px}.companion-market-controls form label span{font-size:15px}.companion-market-controls form>button{border-radius:9px}
.companion-market-results{margin:0 -16px;padding:17px 12px 0;background:#eef2f7}.companion-market-result-head{margin:0 4px 10px}.companion-market-result-head>div:first-child{display:flex;align-items:baseline;gap:8px}.companion-market-result-head h2{font-size:17px}.companion-market-result-head>div:last-child{display:flex;align-items:center;gap:3px}.companion-market-result-head a{padding:7px 9px;color:#555d68;background:#fff;border-radius:8px;font-size:9px;font-weight:800;text-decoration:none}.companion-market-result-head button{font-size:18px}.companion-market-card{display:block;overflow:hidden;margin-bottom:12px;padding:0;color:var(--ink);background:#fff;border:1px solid #e2e7ed;border-radius:16px;box-shadow:0 6px 16px rgba(42,53,66,.055)}.companion-market-card-main{display:grid;min-height:148px;grid-template-columns:108px minmax(0,1fr) auto;gap:12px;align-items:center;padding:14px 13px}.companion-market-cover{position:relative;width:100px;height:122px;transform:rotate(-2deg)}.companion-market-cover:before{content:"";position:absolute;inset:2px -5px -2px 6px;background:#dde4ec;border:1px solid #cfd7e1;border-radius:13px;transform:rotate(6deg)}.companion-market-cover .avatar{position:relative;z-index:2;width:100%;height:100%;object-fit:cover;border:3px solid #fff;border-radius:13px;box-shadow:0 5px 12px rgba(25,31,39,.13)}.companion-market-cover>i{position:absolute;right:6px;bottom:6px;z-index:3;width:10px;height:10px;background:#20b785;border:2px solid #fff;border-radius:50%}.companion-market-copy{display:flex;align-self:stretch;justify-content:center}.companion-market-provider{display:flex;min-width:0;align-items:center;gap:5px}.companion-market-provider .avatar{width:22px;height:22px}.companion-market-provider strong{overflow:hidden;max-width:88px;font-size:10px;text-overflow:ellipsis;white-space:nowrap}.companion-market-provider em{padding:2px 4px;color:#526071;background:#eef1f5;border-radius:4px;font-size:7px;font-style:normal;white-space:nowrap}.companion-market-copy>b{display:-webkit-box;overflow:hidden;margin-top:9px;font-size:14px;line-height:1.35;-webkit-box-orient:vertical;-webkit-line-clamp:2}.companion-market-meta{display:flex;gap:8px;margin-top:7px;color:#858b94;font-size:8px}.companion-market-meta i,.companion-market-orders i{font-style:normal}.companion-market-orders{display:flex;align-items:center;gap:7px;margin-top:auto;color:#68707b;font-size:8px}.companion-market-orders i:first-child{color:#d08a13}.companion-market-price{align-self:stretch;min-width:55px;padding-top:39px}.companion-market-price>strong{font-size:18px}.companion-market-price>b{min-width:54px;height:34px;margin-top:auto;color:#fff;background:#171820;border-radius:8px;font-size:9px}.companion-market-summary{display:block;padding:10px 13px;color:#5f6b78;background:#e9f0f7;border-top:1px solid #dce5ee;font-size:9px;line-height:1.55}.companion-market-summary b{color:#20242a}.companion-market-end{padding:17px 0 30px;text-align:center;color:#a0a6ad;font-size:10px}.companion-provider-fab{position:fixed;right:max(16px,calc((100vw - 720px)/2 + 16px));bottom:calc(86px + env(safe-area-inset-bottom));z-index:32;display:flex;height:50px;align-items:center;gap:7px;padding:0 18px;color:#171820;background:#ffd143;border:0;border-radius:25px;box-shadow:0 8px 24px rgba(95,70,0,.22);font-size:11px}.companion-provider-fab span{font-size:18px;line-height:1}.companion-provider-fab b{font-size:11px}.companion-market-loading i{height:150px;background:#e3e8ee}
@media(max-width:390px){.companion-market-main{padding-inline:12px}.companion-market-stage,.companion-market-controls,.companion-market-results{margin-inline:-12px}.companion-market-stage{min-height:278px}.companion-market-stage>div:nth-of-type(2){width:62%;padding-left:15px}.companion-market-stage h1{font-size:22px}.companion-market-stage>img{right:-65px;width:210px;height:210px}.companion-market-controls{padding-inline:12px}.companion-market-results{padding-inline:9px}.companion-market-card-main{grid-template-columns:92px minmax(0,1fr) auto;gap:9px;padding:12px 10px}.companion-market-cover{width:86px;height:112px}.companion-market-provider em:nth-of-type(2){display:none}.companion-market-price{min-width:48px}.companion-market-price>b{min-width:48px}.companion-market-meta{gap:5px}.companion-provider-fab{right:12px}}

/* Service provider center and storefront */
.me-provider-card{margin:14px 20px 0;padding:17px;color:#fff;background:#28242d;border-radius:18px;box-shadow:0 14px 30px rgba(36,30,42,.14)}
.me-provider-card.pending{color:var(--ink);background:#fff;border:1px solid var(--line);box-shadow:none}
.me-provider-card>header{display:flex;align-items:center;justify-content:space-between;gap:16px}.me-provider-card>header>div{min-width:0}.me-provider-card>header span{display:flex;align-items:center;gap:6px;color:rgba(255,255,255,.72);font-size:10px;font-weight:800}.me-provider-card.pending>header span{color:#a3750b}.me-provider-card>header span i{width:7px;height:7px;background:#8d8890;border-radius:50%}.me-provider-card>header span i.online{background:#45d49d}.me-provider-card h2{margin:7px 0 4px;font-size:18px}.me-provider-card p{overflow:hidden;margin:0;color:rgba(255,255,255,.62);font-size:10px;text-overflow:ellipsis;white-space:nowrap}.me-provider-card.pending p{color:var(--muted)}.me-provider-card>header>a{flex:0 0 auto;padding:9px 12px;color:#211d27;background:#fff;border-radius:9px;font-size:10px;font-weight:900;text-decoration:none}.me-provider-card.pending>header>a{color:#fff;background:#211d27}.me-provider-card>div{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;margin:15px -8px -5px}.me-provider-card>div>a{display:flex;min-width:0;align-items:center;flex-direction:column;padding:10px 4px;color:#fff;border-right:1px solid rgba(255,255,255,.1);text-decoration:none}.me-provider-card>div>a:last-child{border:0}.me-provider-card>div strong{font-size:14px}.me-provider-card>div small{overflow:hidden;width:100%;margin-top:4px;color:rgba(255,255,255,.56);font-size:8px;text-align:center;text-overflow:ellipsis;white-space:nowrap}

.provider-center-shell{background:#f7f4ef}.provider-center-main{padding:0 16px calc(104px + env(safe-area-inset-bottom))}.provider-center-v3{max-width:720px;margin:0 auto}.provider-center-toolbar{position:sticky;top:0;z-index:20;display:grid;min-height:62px;grid-template-columns:42px minmax(0,1fr) 42px;align-items:center;padding:calc(8px + env(safe-area-inset-top)) 0 8px;background:rgba(247,244,239,.92);backdrop-filter:blur(18px)}.provider-center-toolbar>button,.provider-center-toolbar>a{display:grid;width:38px;height:38px;place-items:center;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:50%;font-size:22px;text-decoration:none}.provider-center-toolbar>div{display:flex;min-width:0;align-items:center;flex-direction:column}.provider-center-toolbar small{color:var(--muted);font-size:8px;font-weight:900}.provider-center-toolbar strong{overflow:hidden;max-width:100%;margin-top:2px;font-size:14px;text-overflow:ellipsis;white-space:nowrap}.provider-center-hero{position:relative;min-height:246px;display:flex;overflow:hidden;align-items:flex-end;padding:22px;color:#fff;background-image:var(--provider-cover);background-position:center;background-size:cover;border-radius:22px;isolation:isolate}.provider-center-hero-shade{position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(18,16,21,.08),rgba(18,16,21,.82))}.provider-center-identity{display:grid;min-width:0;grid-template-columns:70px minmax(0,1fr);align-items:center;gap:13px}.provider-center-identity>.avatar{width:70px;height:70px;border:3px solid rgba(255,255,255,.9)}.provider-center-identity>span{min-width:0}.provider-center-identity>span>small{display:flex;align-items:center;gap:6px;color:rgba(255,255,255,.78);font-size:9px}.provider-center-identity>span>small i{width:7px;height:7px;background:#999;border-radius:50%}.provider-center-identity>span>small i.online{background:#4ce0a8}.provider-center-identity h1{overflow:hidden;margin:5px 0 3px;font-size:23px;text-overflow:ellipsis;white-space:nowrap}.provider-center-identity p{overflow:hidden;margin:0;color:rgba(255,255,255,.72);font-size:10px;text-overflow:ellipsis;white-space:nowrap}.provider-center-hero>button{position:absolute;right:18px;bottom:24px;height:36px;padding:0 12px;color:#201c25;background:#fff;border:0;border-radius:18px;font-size:10px;font-weight:900}.provider-center-metrics{display:grid;grid-template-columns:repeat(4,1fr);margin-top:10px;padding:14px 0;background:#fff;border:1px solid var(--line);border-radius:15px}.provider-center-metrics span{display:flex;align-items:center;flex-direction:column;border-right:1px solid var(--line)}.provider-center-metrics span:last-child{border:0}.provider-center-metrics strong{font-size:18px}.provider-center-metrics small{margin-top:4px;color:var(--muted);font-size:8px}.provider-center-tabs{position:sticky;top:calc(62px + env(safe-area-inset-top));z-index:18;display:grid;grid-template-columns:repeat(5,1fr);margin:13px -16px 0;padding:0 16px;background:#f7f4ef;border-bottom:1px solid var(--line)}.provider-center-tabs button{position:relative;height:48px;padding:0;color:#817a84;background:transparent;border:0;font-size:11px;font-weight:800}.provider-center-tabs button.active{color:var(--ink)}.provider-center-tabs button.active:after{content:"";position:absolute;right:26%;bottom:-1px;left:26%;height:3px;background:#211d28;border-radius:3px 3px 0 0}.provider-center-panel[hidden]{display:none}.provider-center-panel{padding-top:20px}.provider-center-section-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:13px}.provider-center-section-head small{color:#98919a;font-size:8px;font-weight:900;letter-spacing:.12em}.provider-center-section-head h2{margin:3px 0 0;font-size:19px}.provider-center-section-head>span,.provider-center-section-head>a{color:var(--muted);font-size:9px;text-decoration:none}.provider-center-quick-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px}.provider-center-quick-grid>button{position:relative;display:grid;min-width:0;min-height:82px;grid-template-columns:42px minmax(0,1fr) auto;align-items:center;gap:10px;padding:12px;text-align:left;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:14px}.provider-center-quick-grid>button>i{display:grid;width:42px;height:42px;place-items:center;color:#167c60;background:#d9f6eb;border-radius:13px;font-size:11px;font-style:normal;font-weight:900}.provider-center-quick-grid>button:nth-child(2)>i{color:#916800;background:#fff0bc}.provider-center-quick-grid>button:nth-child(3)>i{color:#6f4da9;background:#eee3ff}.provider-center-quick-grid>button:nth-child(4)>i{color:#b33f66;background:#ffe2ec}.provider-center-quick-grid>button>span{display:flex;min-width:0;flex-direction:column}.provider-center-quick-grid b{font-size:12px}.provider-center-quick-grid small{overflow:hidden;margin-top:4px;color:var(--muted);font-size:8px;text-overflow:ellipsis;white-space:nowrap}.provider-center-quick-grid em{display:grid;min-width:21px;height:21px;place-items:center;color:#fff;background:#e5416c;border-radius:11px;font-size:8px;font-style:normal}.provider-center-quick-grid u{color:#aaa2ab;font-size:20px;text-decoration:none}.provider-center-latest{margin-top:22px}.provider-center-latest>header{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}.provider-center-latest h2{margin:0;font-size:16px}.provider-center-latest>header button{color:var(--muted);background:transparent;border:0;font-size:9px}.provider-order-filters{display:flex;gap:7px;overflow-x:auto;margin:0 -16px 12px;padding:0 16px;scrollbar-width:none}.provider-order-filters button{height:34px;flex:0 0 auto;padding:0 12px;color:var(--muted);background:#fff;border:1px solid var(--line);border-radius:17px;font-size:9px;font-weight:800}.provider-order-filters button.active{color:#fff;background:#211d28;border-color:#211d28}.provider-order-card{margin-bottom:9px;padding:15px;background:#fff;border:1px solid var(--line);border-radius:14px}.provider-order-card[hidden]{display:none}.provider-order-card>header{display:flex;align-items:center;justify-content:space-between}.provider-order-card>header>span{padding:4px 7px;color:#8b670c;background:#fff2c9;border-radius:5px;font-size:8px;font-weight:900}.provider-order-card>header>.status-serving{color:#126b55;background:#d8f4e9}.provider-order-card>header>.status-completed{color:#666;background:#eee}.provider-order-card>header small{color:var(--muted);font-size:8px}.provider-order-card h3{margin:10px 0 8px;font-size:15px}.provider-order-meta{display:grid;grid-template-columns:minmax(0,1fr) auto auto;align-items:center;gap:8px;color:var(--muted);font-size:8px}.provider-order-meta span:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.provider-order-meta strong{color:var(--ink);font-size:15px}.provider-order-privacy{margin:12px 0 0;padding:9px;color:#777078;background:#f5f2ef;border-radius:8px;font-size:8px}.provider-order-contact{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:10px;margin-top:12px;padding:10px;color:#185f4e;background:#e5f8f1;border-radius:8px}.provider-order-contact span{font-size:8px}.provider-order-contact strong{overflow:hidden;font-size:12px;text-overflow:ellipsis;white-space:nowrap}.provider-order-contact button{height:28px;color:#fff;background:#176f57;border:0;border-radius:7px;font-size:8px}.provider-order-card>footer{display:flex;justify-content:flex-end;margin-top:12px}.provider-order-card>footer button{height:36px;padding:0 16px;color:#fff;background:#211d28;border:0;border-radius:9px;font-size:10px;font-weight:900}.provider-center-service{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:12px;margin-bottom:9px;padding:14px;background:#fff;border:1px solid var(--line);border-radius:14px}.provider-center-service>div{min-width:0}.provider-center-service>div>span{padding:3px 6px;color:#137458;background:#dff6ed;border-radius:4px;font-size:7px}.provider-center-service h3{overflow:hidden;margin:8px 0 4px;font-size:14px;text-overflow:ellipsis;white-space:nowrap}.provider-center-service p{margin:0;color:var(--muted);font-size:8px}.provider-center-service>strong{align-self:center;font-size:20px}.provider-center-service>strong small{font-size:9px}.provider-center-service>strong em{display:block;color:var(--muted);font-size:7px;font-style:normal;text-align:right}.provider-center-service>footer{grid-column:1/-1;display:flex;justify-content:flex-end;gap:7px;padding-top:10px;border-top:1px solid var(--line)}.provider-center-service>footer button{height:30px;padding:0 10px;color:#625c65;background:#f2efec;border:0;border-radius:7px;font-size:8px}.provider-center-form,.provider-profile-form{display:grid;gap:12px;margin-top:20px;padding:17px;background:#fff;border:1px solid var(--line);border-radius:16px}.provider-form-title{display:flex;align-items:center;justify-content:space-between}.provider-form-title small{color:var(--muted);font-size:8px;font-weight:900}.provider-form-title h2{margin:3px 0 0;font-size:18px}.provider-form-title button{color:var(--muted);background:transparent;border:0;font-size:9px}.provider-center-form>label,.provider-profile-form>label,.provider-form-grid label{display:grid;gap:7px}.provider-center-form label>span,.provider-profile-form label>span,.provider-form-grid label>span{color:#5e5861;font-size:9px;font-weight:800}.provider-center-form input,.provider-center-form select,.provider-center-form textarea,.provider-profile-form input,.provider-profile-form textarea{width:100%;min-height:44px;padding:10px 12px;color:var(--ink);background:#f6f4f1;border:1px solid #eee9e4;border-radius:9px;font:inherit;font-size:11px}.provider-center-form textarea,.provider-profile-form textarea{min-height:90px;resize:vertical}.provider-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px}.provider-center-primary{min-height:48px;color:#fff;background:#211d28;border:0;border-radius:12px;font-size:13px;font-weight:900}.provider-cover-editor{height:190px;display:flex;align-items:flex-end;justify-content:flex-end;padding:12px;background-image:linear-gradient(180deg,transparent,rgba(20,17,22,.34)),var(--provider-cover);background-position:center;background-size:cover;border-radius:13px}.provider-cover-editor label,.provider-media-editor header>label,.provider-video-editor header>label{padding:8px 10px;color:#fff;background:rgba(27,23,31,.82);border-radius:8px;font-size:9px;font-weight:900}.provider-media-editor,.provider-video-editor{display:grid;gap:10px;padding-top:12px;border-top:1px solid var(--line)}.provider-media-editor header,.provider-video-editor header{display:flex;align-items:center;justify-content:space-between;gap:12px}.provider-media-editor header>div,.provider-video-editor header>div{display:flex;min-width:0;flex-direction:column}.provider-media-editor b,.provider-video-editor b{font-size:12px}.provider-media-editor small,.provider-video-editor small{margin-top:3px;color:var(--muted);font-size:8px}.provider-media-editor header>label,.provider-video-editor header>label{color:#211d28;background:#f0ece8}.provider-media-editor>div{display:grid;grid-template-columns:repeat(3,1fr);gap:6px}.provider-media-editor>div>span{position:relative;aspect-ratio:1;overflow:hidden;background:#eee;border-radius:9px}.provider-media-editor>div>span img{width:100%;height:100%;object-fit:cover}.provider-media-editor>div>span button{position:absolute;top:4px;right:4px;width:23px;height:23px;color:#fff;background:rgba(22,19,24,.72);border:0;border-radius:50%}.provider-media-editor>div>small{grid-column:1/-1;padding:25px 0;text-align:center}.provider-video-editor>div{display:grid;gap:7px}.provider-video-editor video{width:100%;max-height:300px;background:#141217;border-radius:10px}.provider-video-editor>div>button{height:34px;color:#b0395c;background:#ffe8ef;border:0;border-radius:8px}.provider-video-editor>div>span{padding:24px;color:var(--muted);background:#f6f3f0;border-radius:10px;font-size:9px;text-align:center}.provider-notification-card{padding:22px;background:#fff;border:1px solid var(--line);border-radius:16px;text-align:center}.provider-notification-card>i{display:grid;width:58px;height:58px;place-items:center;margin:0 auto;color:#146f54;background:#d8f6ea;border-radius:18px;font-size:16px;font-style:normal;font-weight:900}.provider-notification-card h3{margin:14px 0 7px;font-size:18px}.provider-notification-card p{margin:0;color:var(--muted);font-size:10px;line-height:1.65}.provider-notification-card>button{width:100%;height:48px;margin-top:17px;color:#fff;background:#211d28;border:0;border-radius:12px;font-size:12px;font-weight:900}.provider-notification-card ul{margin:16px 0 0;padding:14px 0 0 20px;border-top:1px solid var(--line);color:var(--muted);font-size:9px;line-height:1.9;text-align:left}.provider-center-empty{max-width:440px;margin:0 auto;padding:calc(110px + env(safe-area-inset-top)) 24px 40px;text-align:center}.provider-center-empty>span{color:#1b7c61;font-size:10px;font-weight:900;letter-spacing:.14em}.provider-center-empty h1{margin:12px 0 8px;font-size:27px}.provider-center-empty p{margin:0;color:var(--muted);font-size:12px;line-height:1.7}.provider-center-empty a,.provider-center-empty button{display:grid;width:100%;min-height:48px;place-items:center;margin-top:24px;border-radius:12px;font-size:12px;font-weight:900;text-decoration:none}.provider-center-empty a{color:#fff;background:#211d28}.provider-center-empty button{color:var(--muted);background:transparent;border:0}

.companion-detail-main{padding:0 0 96px}.companion-store-v3{max-width:720px;margin:0 auto}.companion-store-hero{position:relative;height:min(68dvh,560px);min-height:430px;overflow:hidden;color:#fff;background:#27242b}.companion-store-toolbar{position:absolute;top:0;right:0;left:0;z-index:12;display:flex;align-items:center;justify-content:space-between;padding:calc(12px + env(safe-area-inset-top)) 16px 10px}.companion-store-toolbar>button,.companion-store-toolbar>div button{display:grid;width:42px;height:42px;place-items:center;color:#fff;background:rgba(25,22,28,.48);border:1px solid rgba(255,255,255,.16);border-radius:50%;font-size:22px;backdrop-filter:blur(10px)}.companion-store-toolbar>div{display:flex;gap:8px}.companion-store-toolbar>div button.active{color:#ffd04f}.companion-store-media,.companion-store-media>button{width:100%;height:100%;padding:0;background:#27242b;border:0}.companion-store-media img,.companion-store-media video{width:100%;height:100%;object-fit:cover}.companion-store-thumbs{position:absolute;top:calc(76px + env(safe-area-inset-top));right:16px;z-index:10;display:flex;gap:7px}.companion-store-thumbs button{position:relative;width:54px;height:54px;overflow:hidden;padding:0;background:#514d54;border:2px solid rgba(255,255,255,.45);border-radius:10px}.companion-store-thumbs button.active{border-color:#fff}.companion-store-thumbs img{width:100%;height:100%;object-fit:cover}.companion-store-thumbs i{position:absolute;inset:0;display:grid;place-items:center;color:#fff;background:rgba(20,18,22,.28);font-style:normal}.companion-store-dots{position:absolute;right:0;bottom:27px;left:0;display:flex;justify-content:center;gap:7px}.companion-store-dots i{width:26px;height:4px;background:rgba(255,255,255,.35);border-radius:2px}.companion-store-dots i:first-child{background:#fff}.companion-store-sheet{position:relative;z-index:4;margin-top:-18px;padding:23px 18px 26px;background:#f8f5f1;border-radius:24px 24px 0 0}.companion-store-profile-head{display:grid;grid-template-columns:76px minmax(0,1fr) auto;align-items:center;gap:13px}.companion-store-profile-head>.avatar{width:76px;height:76px;margin-top:-47px;border:4px solid #f8f5f1}.companion-store-profile-head>div{min-width:0}.companion-store-profile-head>div>span{display:flex;align-items:center;gap:5px;color:var(--muted);font-size:9px}.companion-store-profile-head>div>span i{width:7px;height:7px;background:#9a959b;border-radius:50%}.companion-store-profile-head>div>span i.online{background:#24bd86}.companion-store-profile-head h1{overflow:hidden;margin:5px 0 3px;font-size:23px;text-overflow:ellipsis;white-space:nowrap}.companion-store-profile-head p{overflow:hidden;margin:0;color:var(--muted);font-size:9px;text-overflow:ellipsis;white-space:nowrap}.companion-store-profile-head>button{height:36px;padding:0 12px;color:#8e6300;background:#fff0ba;border:0;border-radius:18px;font-size:9px;font-weight:900}.companion-store-badges{display:flex;gap:6px;flex-wrap:wrap;margin-top:14px}.companion-store-badges span{padding:5px 8px;color:#1b765c;background:#daf4ea;border-radius:6px;font-size:8px;font-weight:800}.companion-store-stats{display:grid;grid-template-columns:repeat(4,1fr);margin:15px 0 0;padding:14px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.companion-store-stats span{display:flex;align-items:center;flex-direction:column;border-right:1px solid var(--line)}.companion-store-stats span:last-child{border:0}.companion-store-stats strong{font-size:18px}.companion-store-stats small{margin-top:4px;color:var(--muted);font-size:8px}.companion-store-tabs{position:sticky;top:0;z-index:15;display:grid;grid-template-columns:repeat(4,1fr);margin:0 -18px;padding:0 18px;background:rgba(248,245,241,.95);border-bottom:1px solid var(--line);backdrop-filter:blur(16px)}.companion-store-tabs button{position:relative;height:55px;color:#827b85;background:transparent;border:0;font-size:12px;font-weight:900}.companion-store-tabs button.active{color:var(--ink)}.companion-store-tabs button.active:after{content:"";position:absolute;right:27%;bottom:-1px;left:27%;height:3px;background:#211d28;border-radius:3px 3px 0 0}.companion-store-panel[hidden]{display:none}.companion-store-panel{padding:20px 0 0}.companion-store-panel>h2{margin:0 0 10px;font-size:18px}.companion-store-panel>p{margin:0;color:#57515a;font-size:11px;line-height:1.75}.companion-store-tag-cloud{display:flex;gap:7px;flex-wrap:wrap;margin-top:14px}.companion-store-tag-cloud span{padding:6px 9px;color:#665f69;background:#eeeae6;border-radius:7px;font-size:9px}.companion-store-panel dl{margin:18px 0 0;border-top:1px solid var(--line)}.companion-store-panel dl>div{display:flex;min-height:44px;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line)}.companion-store-panel dt{color:var(--muted);font-size:9px}.companion-store-panel dd{margin:0;font-size:10px;font-weight:800}.companion-store-service{display:grid;grid-template-columns:86px minmax(0,1fr);gap:13px;margin-bottom:12px;padding:12px;background:#fff;border:1px solid var(--line);border-radius:15px}.companion-store-service.active{border-color:#75d6b8;box-shadow:0 0 0 2px rgba(66,194,153,.1)}.companion-store-service-art{height:105px;display:flex;justify-content:flex-end;flex-direction:column;padding:10px;color:#57efb2;background:#111214;border-radius:10px}.companion-store-service-art span{font-size:17px;font-weight:900}.companion-store-service-art b{font-size:8px}.companion-store-service>div:nth-child(2){display:flex;min-width:0;flex-direction:column}.companion-store-service>div:nth-child(2)>i{align-self:flex-start;padding:3px 6px;color:#167358;background:#dcf5eb;border-radius:4px;font-size:7px;font-style:normal}.companion-store-service h3{overflow:hidden;margin:7px 0 4px;font-size:14px;text-overflow:ellipsis;white-space:nowrap}.companion-store-service p{display:-webkit-box;overflow:hidden;margin:0;color:var(--muted);font-size:8px;line-height:1.45;-webkit-box-orient:vertical;-webkit-line-clamp:2}.companion-store-service div>small{margin-top:3px;color:var(--muted);font-size:7px}.companion-store-service div>strong{margin-top:auto;font-size:19px}.companion-store-service div>strong em{color:var(--muted);font-size:8px;font-style:normal}.companion-store-service>button{grid-column:1/-1;height:38px;color:#fff;background:#211d28;border:0;border-radius:9px;font-size:10px;font-weight:900}.companion-store-post{padding:15px 0;border-bottom:1px solid var(--line)}.companion-store-post>header{display:flex;align-items:center;justify-content:space-between}.companion-store-post>header span,.companion-store-post>header small{color:var(--muted);font-size:8px}.companion-store-post>p{margin:10px 0;font-size:12px;line-height:1.65}.companion-store-post>div{display:grid;grid-template-columns:repeat(3,1fr);gap:5px}.companion-store-post>div button{aspect-ratio:1;overflow:hidden;padding:0;background:#eee;border:0;border-radius:8px}.companion-store-post>div img{width:100%;height:100%;object-fit:cover}.companion-store-empty{padding:50px 10px;color:var(--muted);font-size:10px;text-align:center}.companion-store-review-summary{display:flex;align-items:baseline;gap:9px;padding:14px;background:#fff3d1;border-radius:10px}.companion-store-review-summary strong{font-size:28px}.companion-store-review-summary span{color:#7f682a;font-size:9px}.companion-store-booking{grid-template-columns:110px minmax(0,1fr)}.companion-store-lightbox[hidden]{display:none}.companion-store-lightbox{position:fixed;inset:0;z-index:500;display:grid;place-items:center;padding:18px;background:rgba(12,10,14,.94)}.companion-store-lightbox>button{position:absolute;top:calc(14px + env(safe-area-inset-top));right:16px;width:42px;height:42px;color:#fff;background:rgba(255,255,255,.13);border:0;border-radius:50%;font-size:24px}.companion-store-lightbox img{max-width:100%;max-height:88dvh;object-fit:contain}

@media(max-width:390px){.me-provider-card{margin-inline:14px}.provider-center-main{padding-inline:12px}.provider-center-tabs{margin-inline:-12px;padding-inline:12px}.provider-center-hero{min-height:224px;padding:17px}.provider-center-hero>button{right:14px;bottom:18px}.provider-center-identity{grid-template-columns:62px minmax(0,1fr)}.provider-center-identity>.avatar{width:62px;height:62px}.provider-center-identity h1{font-size:20px}.provider-center-quick-grid{grid-template-columns:1fr}.companion-store-hero{min-height:410px}.companion-store-thumbs button{width:48px;height:48px}.companion-store-profile-head{grid-template-columns:68px minmax(0,1fr) auto}.companion-store-profile-head>.avatar{width:68px;height:68px}.companion-store-profile-head h1{font-size:20px}.companion-store-service{grid-template-columns:78px minmax(0,1fr)}.companion-store-service-art{height:98px}}

/* Storefront reference alignment: media-first profile and compact commission rows */
.companion-store-hero{height:min(72dvh,680px);min-height:500px}.companion-store-sheet{margin-top:-30px;padding:27px 20px 30px;background:#fff}.companion-store-profile-head{grid-template-columns:84px minmax(0,1fr) 58px;gap:15px}.companion-store-profile-head>.avatar{width:84px;height:84px;margin-top:-58px;border-color:#fff}.companion-store-profile-head>div>span{font-size:10px}.companion-store-profile-head h1{margin-top:7px;font-size:25px;line-height:1.12}.companion-store-profile-head p{margin-top:5px;font-size:10px}.companion-store-profile-head>button{width:58px;height:58px;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:3px;padding:0;color:#9a6a00;background:#fff0ba;border-radius:50%}.companion-store-profile-head>button span{font-size:18px;line-height:1}.companion-store-profile-head>button small{font-size:7px;font-weight:900}.companion-store-profile-head>button.active{color:#9a6a00;background:#ffeaa1}.companion-store-badges{margin-top:16px}.companion-store-badges span{padding:5px 8px}.companion-store-tabs{margin:17px -20px 0;padding:0 20px;background:rgba(255,255,255,.96)}.companion-store-tabs button{height:58px;font-size:12px}.companion-store-tabs button.active:after{right:22%;left:22%;height:4px}.companion-store-panel{padding:20px 0 0}.companion-store-panel[data-store-panel="services"]{margin:0 -6px}.companion-store-service{min-height:154px;grid-template-columns:116px minmax(0,1fr) 96px;align-items:stretch;gap:14px;margin-bottom:14px;padding:14px;background:#fff;border-color:#e2ddd7;border-radius:18px;box-shadow:0 7px 18px rgba(39,33,41,.035)}.companion-store-service.active{border-color:#72d8b9;box-shadow:0 0 0 3px rgba(72,203,160,.1)}.companion-store-service-art{grid-column:1;grid-row:1;height:126px;align-self:center;padding:14px;border-radius:13px}.companion-store-service-art span{font-size:22px}.companion-store-service-art b{margin-top:3px;font-size:9px}.companion-store-service>div:nth-child(2){grid-column:2;grid-row:1;justify-content:flex-start;padding:4px 0}.companion-store-service>div:nth-child(2)>i{font-size:8px}.companion-store-service h3{margin:9px 0 5px;font-size:16px}.companion-store-service p{font-size:9px;-webkit-line-clamp:2}.companion-store-service div>small{margin-top:5px;font-size:8px}.companion-store-service div>strong{margin-top:auto;font-size:22px}.companion-store-service>button{grid-column:3;grid-row:1;align-self:end;height:46px;padding:0 9px;border-radius:23px;font-size:11px;white-space:nowrap}.companion-store-review-summary{padding:16px}.companion-store-booking{grid-template-columns:126px minmax(0,1fr);padding:12px 16px calc(12px + env(safe-area-inset-bottom))}.companion-store-booking>button{height:54px;border-radius:16px}.companion-store-booking strong{font-size:23px}
.companion-store-more-menu[hidden]{display:none}.companion-store-more-menu{position:absolute;top:calc(64px + env(safe-area-inset-top));right:16px;z-index:20;display:grid;width:126px;padding:5px;background:rgba(28,24,31,.9);border:1px solid rgba(255,255,255,.13);border-radius:12px;box-shadow:0 12px 30px rgba(0,0,0,.24);backdrop-filter:blur(14px)}.companion-store-more-menu button{height:38px;color:#fff;background:transparent;border:0;border-radius:8px;font-size:10px;text-align:left;padding:0 11px}.companion-store-more-menu button+button{color:#ffafc4;border-top:1px solid rgba(255,255,255,.1);border-radius:0 0 8px 8px}
@media(max-width:430px){.companion-store-hero{height:min(66dvh,620px);min-height:470px}.companion-store-sheet{padding-inline:16px}.companion-store-profile-head{grid-template-columns:74px minmax(0,1fr) 54px;gap:12px}.companion-store-profile-head>.avatar{width:74px;height:74px}.companion-store-profile-head h1{font-size:21px}.companion-store-profile-head>button{width:54px;height:54px}.companion-store-tabs{margin-inline:-16px;padding-inline:16px}.companion-store-service{min-height:136px;grid-template-columns:96px minmax(0,1fr) 78px;gap:10px;padding:12px;border-radius:15px}.companion-store-service-art{height:112px;padding:11px}.companion-store-service-art span{font-size:18px}.companion-store-service h3{font-size:14px}.companion-store-service p{font-size:8px}.companion-store-service div>strong{font-size:19px}.companion-store-service>button{height:40px;padding:0 7px;font-size:9px}.companion-store-panel[data-store-panel="services"]{margin-inline:0}}

/* Mobile booking sheet: prevent iOS WeChat focus zoom and horizontal clipping. */
.companion-booking-sheet>div{overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch}.companion-booking-sheet form>label{display:grid;grid-template-columns:1fr;gap:7px}.companion-booking-sheet .booking-field-label{color:#4f4952;font-size:11px;font-weight:900}.companion-booking-sheet .booking-duration-control{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:9px}.companion-booking-sheet .booking-contact-control{display:grid;grid-template-columns:96px minmax(0,1fr);align-items:center;gap:9px}.companion-booking-sheet .booking-duration-control small{color:var(--muted);font-size:11px;font-weight:700}.companion-booking-sheet input,.companion-booking-sheet select{min-width:0;font-size:16px!important;line-height:1.25}.companion-booking-sheet form>p{font-size:11px}.companion-booking-sheet .primary-button{font-size:14px}
@media(max-width:430px){.companion-booking-sheet>div{width:100%;max-height:calc(100dvh - 48px);padding:9px 16px calc(14px + env(safe-area-inset-bottom))}.companion-booking-sheet h2{font-size:18px}.companion-booking-sheet .booking-contact-control{grid-template-columns:88px minmax(0,1fr)}.companion-booking-sheet input,.companion-booking-sheet select{min-height:48px;padding:11px 12px}}

/* Relationship commerce: membership center, newcomer packs and real relationship data. */
.membership-plan-grid{grid-template-columns:repeat(auto-fit,minmax(88px,1fr))!important}.relationship-list{width:100%;max-width:100dvw;min-width:0;grid-template-columns:minmax(0,1fr)!important;box-sizing:border-box;overflow:hidden}.relationship-person{width:min(100%,calc(100dvw - 36px))!important;max-width:100%;min-width:0;grid-template-columns:72px minmax(0,1fr) 68px!important;gap:10px!important;box-sizing:border-box;overflow:hidden}.relationship-person>.relationship-mask-visual,.relationship-person-avatar{width:72px!important;height:82px!important}.relationship-person>button,.relationship-person>a:last-child{width:68px!important;min-width:0!important;max-width:68px;padding:0 4px!important;box-sizing:border-box;white-space:nowrap}
.membership-plan-card strong>small{font-size:12px}.membership-newcomer-entry{width:100%;color:#342c35;border:1px solid #f2d8a8!important;border-radius:17px}.membership-modal-open{overflow:hidden;touch-action:none}
.membership-plan-card>span{font-size:11px;font-weight:900}.membership-plan-card>em{align-self:end;margin-top:8px;color:#918a96;font-size:9px;font-style:normal}.membership-preview-person>.relationship-mask-visual{position:absolute;display:block;padding:0;color:inherit}.membership-preview-person>small{position:relative;z-index:2;align-self:end;display:block;padding:8px;color:#fff;font-size:8px;font-weight:800}.relationship-person>.relationship-mask-visual{width:78px;height:86px;border-radius:13px}.relationship-person>.relationship-mask-visual+div,.relationship-person>.relationship-person-avatar+div{display:grid;gap:5px;min-width:0}.relationship-person>.relationship-mask-visual+div>span,.relationship-person>.relationship-person-avatar+div>span{display:flex;align-items:center;gap:5px;color:#24aa82;font-size:8px;font-weight:900}.relationship-person>.relationship-mask-visual+div>span:before,.relationship-person>.relationship-person-avatar+div>span:before{width:6px;height:6px;background:currentColor;border-radius:50%;content:""}.relationship-person>.relationship-mask-visual+div>strong,.relationship-person>.relationship-person-avatar+div>strong{overflow:hidden;font-size:14px;text-overflow:ellipsis;white-space:nowrap}.relationship-person>.relationship-mask-visual+div>small,.relationship-person>.relationship-person-avatar+div>small{color:#908994;font-size:9px;line-height:1.45}.relationship-person-avatar{position:relative;width:78px;height:86px;overflow:hidden;background:#eee9e5;border-radius:13px}.relationship-person-avatar img{width:100%;height:100%;object-fit:cover}.relationship-person-avatar>i{position:absolute;right:6px;bottom:6px;width:10px;height:10px;background:#37d5a1;border:2px solid #fff;border-radius:50%}.relationship-person>button,.relationship-person>a:last-child{display:grid;min-width:66px;height:38px;place-items:center;padding:0 11px;color:#fff;background:#211d29;border:0;border-radius:12px;font-size:9px;font-weight:900}.relationship-person.locked>button{background:#ef4d76}.relationship-page .empty-state{min-height:310px;margin:0 18px;background:#fff;border:1px solid #e8e1da;border-radius:18px}
@media(max-width:379px){.membership-topbar{grid-template-columns:40px minmax(0,1fr) 40px;padding-inline:9px}.membership-topbar>button,.membership-topbar>a{width:36px;height:36px}.membership-topbar nav a{font-size:9px}.membership-hero{grid-template-columns:minmax(0,1fr) 88px;padding-inline:20px}.membership-hero h1{font-size:30px}.membership-hero>i{width:82px;height:82px;font-size:39px}.membership-content{padding-inline:12px}.membership-plan-card{min-height:130px;padding-inline:4px}.membership-plan-card strong{font-size:23px}.membership-benefits,.membership-relation-preview{padding:16px}.membership-preview-grid{gap:5px}.membership-newcomer-entry{grid-template-columns:48px minmax(0,1fr) 30px}.membership-newcomer-entry>i{width:46px;height:46px}.relationship-list{padding-inline:12px}.relationship-person{grid-template-columns:66px minmax(0,1fr);gap:10px}.relationship-person-media{width:66px;height:78px}.relationship-person-action{grid-column:1/-1;width:100%}.relationship-heading{padding-inline:15px}.relationship-heading h2{font-size:23px}.relationship-tabs{padding-inline:10px}.relationship-tabs a{padding-inline:11px}.me-relationship-card{margin-inline:14px;padding-inline:12px}.me-relationship-card>div{gap:4px}.me-relationship-card>div a{padding-inline:1px}.me-relationship-card small{font-size:8px}}
body[data-page=relationship-center]{background:#faf8f5}.relationship-shell,.relationship-main{min-height:100dvh;background:#faf8f5}.relationship-main{padding:0!important}.relationship-page{min-height:100dvh;padding-bottom:calc(94px + env(safe-area-inset-bottom));color:#211d29}.relationship-topbar{position:sticky;top:0;z-index:20;display:grid;grid-template-columns:46px minmax(0,1fr) 46px;align-items:center;min-height:70px;padding:env(safe-area-inset-top) 16px 0;background:rgba(250,248,245,.95);border-bottom:1px solid #ebe5df;backdrop-filter:blur(16px)}.relationship-topbar>button,.relationship-topbar>a{display:grid;width:42px;height:42px;place-items:center;color:#211d29;background:#fff;border:1px solid #e5ddd5;border-radius:50%;font-size:23px}.relationship-topbar>div{text-align:center}.relationship-topbar span{color:#9a929d;font-size:8px;font-weight:900;letter-spacing:1.7px}.relationship-topbar h1{margin:3px 0 0;font-size:18px}.relationship-tabs{position:sticky;top:70px;z-index:19;display:flex;gap:4px;overflow-x:auto;padding:9px 14px;background:rgba(250,248,245,.96);border-bottom:1px solid #eee8e2;scrollbar-width:none}.relationship-tabs::-webkit-scrollbar{display:none}.relationship-tabs a{position:relative;flex:0 0 auto;padding:10px 13px;color:#8d8690;background:#f0ece8;border-radius:20px;font-size:11px;font-weight:900;white-space:nowrap}.relationship-tabs a.active{color:#fff;background:#211d29}.relationship-tabs small{position:absolute;top:-3px;right:-2px;min-width:17px;height:17px;padding:0 4px;color:#fff;background:#ef416c;border:2px solid #faf8f5;border-radius:9px;font-size:7px;line-height:13px;text-align:center}.relationship-heading{display:flex;align-items:flex-end;justify-content:space-between;padding:27px 20px 18px}.relationship-heading span{color:#ef476f;font-size:9px;font-weight:900;letter-spacing:1.6px}.relationship-heading h2{margin:6px 0 5px;font-size:27px}.relationship-heading p{margin:0;color:#8d8691;font-size:10px}.relationship-heading>strong{font-size:35px}.relationship-access-note{margin:0 18px 13px;padding:14px 15px;background:#fff6dc;border:1px solid #f1deab;border-radius:14px}.relationship-access-note span{display:flex;align-items:center;gap:8px}.relationship-access-note i{display:grid;width:22px;height:22px;place-items:center;color:#fff;background:#e9ae34;border-radius:50%;font-size:10px;font-style:normal}.relationship-access-note b{font-size:11px}.relationship-access-note p{margin:7px 0 0;color:#907b49;font-size:8px;line-height:1.5}.relationship-list{display:grid;gap:10px;padding:0 18px}.relationship-person{display:grid;grid-template-columns:78px minmax(0,1fr) auto;align-items:center;gap:13px;min-height:112px;padding:13px;background:#fff;border:1px solid #e9e2dc;border-radius:17px}.relationship-person-media{position:relative;width:78px;height:86px;overflow:hidden;background:#eee9e5;border-radius:13px}.relationship-person-media img,.relationship-person-media>.relationship-mask-visual{width:100%;height:100%;object-fit:cover}.relationship-person-copy{display:grid;gap:5px;min-width:0}.relationship-person-copy>span{display:flex;align-items:center;gap:5px;color:#24aa82;font-size:8px;font-weight:900}.relationship-person-copy>span:before{width:6px;height:6px;background:currentColor;border-radius:50%;content:""}.relationship-person-copy strong{overflow:hidden;font-size:14px;text-overflow:ellipsis;white-space:nowrap}.relationship-person-copy small{color:#908994;font-size:9px;line-height:1.45}.relationship-person-action{min-width:66px;height:38px;padding:0 11px;color:#fff;background:#211d29;border:0;border-radius:12px;font-size:9px;font-weight:900}.relationship-person-action.secondary{color:#211d29;background:#f0ece8}.relationship-person-action.unlock{background:#ef4d76}.relationship-empty{display:grid;min-height:360px;place-items:center;margin:0 18px;padding:30px;color:#8d8690;background:#fff;border:1px solid #e8e1da;border-radius:18px;text-align:center}.relationship-empty i{display:grid;width:74px;height:74px;place-items:center;margin:auto;background:#f5eef1;border-radius:50%;font-size:30px;font-style:normal}.relationship-empty h3{margin:15px 0 5px;color:#211d29;font-size:19px}.relationship-empty p{max-width:260px;margin:0;font-size:10px;line-height:1.65}.relationship-privacy-note{padding:22px 28px;color:#a099a2;font-size:8px;line-height:1.65;text-align:center}.relationship-unlock-bar{position:fixed;right:0;bottom:0;left:0;z-index:35;display:grid;grid-template-columns:116px minmax(0,1fr);align-items:center;gap:10px;min-height:78px;padding:10px 18px calc(10px + env(safe-area-inset-bottom));background:rgba(255,255,255,.96);border-top:1px solid #e7e0da;box-shadow:0 -9px 26px rgba(31,27,34,.07);backdrop-filter:blur(16px)}.relationship-unlock-bar span{display:grid;gap:2px}.relationship-unlock-bar small{color:#918a94;font-size:8px}.relationship-unlock-bar strong{font-size:12px}.relationship-unlock-bar a{display:grid;height:53px;place-items:center;color:#fff;background:#211d29;border-radius:15px;font-size:12px;font-weight:900}
.relationship-mask-visual{position:relative;overflow:hidden;background:linear-gradient(135deg,#bdc5d3,#786f82)}.relationship-mask-visual:before,.relationship-mask-visual:after{position:absolute;border-radius:50%;filter:blur(12px);content:""}.relationship-mask-visual:before{top:8%;left:6%;width:85%;height:64%;background:rgba(255,211,205,.72)}.relationship-mask-visual:after{right:-8%;bottom:-4%;width:75%;height:62%;background:rgba(46,42,55,.7)}.relationship-mask-visual>i{position:absolute;top:50%;left:50%;z-index:2;display:grid;width:34px;height:34px;place-items:center;color:#fff;background:rgba(25,22,30,.52);border:1px solid rgba(255,255,255,.35);border-radius:50%;font-size:14px;font-style:normal;transform:translate(-50%,-50%);backdrop-filter:blur(8px)}.newcomer-pack-sheet[hidden]{display:none}.newcomer-pack-sheet{position:fixed;inset:0;z-index:80;display:grid;place-items:end center;background:rgba(18,14,21,.68);backdrop-filter:blur(8px)}.newcomer-pack-panel{position:relative;width:min(100%,520px);max-height:88dvh;overflow:auto;padding:18px 18px calc(18px + env(safe-area-inset-bottom));background:#fff;border-radius:24px 24px 0 0}.newcomer-pack-panel>button:first-child{position:absolute;top:14px;right:14px;z-index:2;width:40px;height:40px;color:#57505a;background:#f2efed;border:0;border-radius:50%;font-size:22px}.newcomer-pack-hero{margin:-18px -18px 16px;padding:31px 22px 24px;color:#fff;background:linear-gradient(125deg,#ff708d,#ad4d8c);border-radius:24px 24px 18px 18px}.newcomer-pack-hero span{font-size:9px;font-weight:900;letter-spacing:1.5px}.newcomer-pack-hero h2{max-width:78%;margin:8px 0;font-size:27px}.newcomer-pack-hero p{margin:0;color:rgba(255,255,255,.8);font-size:10px}.newcomer-pack-tabs{display:flex;gap:7px;overflow:auto;padding-bottom:4px}.newcomer-pack-tabs button{min-width:82px;height:38px;padding:0 13px;color:#827a84;background:#f4f1ef;border:1px solid transparent;border-radius:11px;font-size:11px;font-weight:900}.newcomer-pack-tabs button.active{color:#d04062;background:#fff0f3;border-color:#f4a8bb}.newcomer-pack-body{padding:16px 2px 3px}.newcomer-pack-body>h3{margin:0;font-size:19px}.newcomer-pack-body>p{margin:6px 0 0;color:#8f8792;font-size:10px}.newcomer-pack-benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:16px}.newcomer-pack-benefits article{display:grid;min-height:112px;place-items:center;padding:11px 5px;background:#faf7f5;border:1px solid #ede5df;border-radius:13px;text-align:center}.newcomer-pack-benefits i{font-size:28px;font-style:normal}.newcomer-pack-benefits strong{font-size:11px}.newcomer-pack-benefits small{color:#938b95;font-size:8px}.newcomer-pack-summary{display:flex;align-items:center;justify-content:space-between;margin-top:16px;padding:13px 14px;background:#fff5d8;border-radius:12px}.newcomer-pack-summary span{display:grid}.newcomer-pack-summary small{color:#927c47;font-size:9px}.newcomer-pack-summary strong{font-size:21px}.newcomer-pack-summary del{color:#a59a82;font-size:10px}.newcomer-pack-buy{width:100%;height:54px;margin-top:14px;color:#fff;background:#211c28;border:0;border-radius:15px;font-size:14px;font-weight:900}
.me-stats a{display:grid;gap:4px;color:inherit;text-decoration:none}.me-relationship-card{margin:14px 20px 0;padding:18px;background:#fff;border:1px solid #ebe4dc;border-radius:20px}.me-relationship-card header{display:flex;align-items:flex-end;justify-content:space-between}.me-relationship-card header span{color:#99919f;font-size:9px;font-weight:900;letter-spacing:1.5px}.me-relationship-card header h2{margin:3px 0 0;font-size:21px}.me-relationship-card header a{color:#ec466d;font-size:12px;font-weight:900}.me-relationship-card>div{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-top:17px}.me-relationship-card>div a{display:grid;gap:3px;padding:13px 3px;color:inherit;text-align:center;background:#f8f5f2;border-radius:13px}.me-relationship-card strong{font-size:18px}.me-relationship-card small{color:#857f8c;font-size:10px}
body[data-page=vip]{background:#f7f4f0}.membership-shell,.membership-main{min-height:100dvh;background:#f7f4f0}.membership-main{padding:0!important}.membership-page{--member-accent:#ee4f78;--member-soft:#ffe1e9;--member-ink:#241f2b;--member-hero:#f5698d;position:relative;min-height:100dvh;padding-bottom:calc(92px + env(safe-area-inset-bottom));color:var(--member-ink)}.membership-page[data-membership-theme=vip]{--member-accent:#a66b00;--member-soft:#fff1c6;--member-hero:#ecb53f}.membership-page[data-membership-theme=svip]{--member-accent:#9d6545;--member-soft:#f1dfd3;--member-hero:#302c2c}.membership-page[data-membership-theme=black]{--member-accent:#d79b39;--member-soft:#efe3ca;--member-hero:#111112}.membership-topbar{position:sticky;top:0;z-index:30;display:grid;grid-template-columns:46px minmax(0,1fr) 46px;align-items:center;height:62px;padding:env(safe-area-inset-top) 14px 0;color:#fff;background:var(--member-hero)}.membership-topbar>button,.membership-topbar>a{display:grid;place-items:center;width:40px;height:40px;color:inherit;background:rgba(0,0,0,.13);border:1px solid rgba(255,255,255,.2);border-radius:50%;font-size:23px}.membership-topbar nav{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));height:100%;align-items:center}.membership-topbar nav a{position:relative;padding:21px 2px 17px;color:rgba(255,255,255,.58);font-size:11px;font-weight:900;text-align:center;white-space:nowrap}.membership-topbar nav a.active{color:#fff}.membership-topbar nav a.active:after{position:absolute;right:28%;bottom:8px;left:28%;height:3px;background:#fff;border-radius:2px;content:""}.membership-hero{position:relative;display:grid;grid-template-columns:minmax(0,1fr) 118px;min-height:218px;padding:33px 25px 31px;overflow:hidden;color:#fff;background:var(--member-hero)}.membership-hero:after{position:absolute;right:-90px;bottom:-140px;width:310px;height:310px;border:54px solid rgba(255,255,255,.11);border-radius:50%;content:""}.membership-hero>div{position:relative;z-index:2}.membership-hero>div>span{font-size:10px;font-weight:900;letter-spacing:2px}.membership-hero h1{max-width:280px;margin:12px 0 8px;font-size:35px;line-height:1.06;letter-spacing:0}.membership-hero p{max-width:320px;margin:0;color:rgba(255,255,255,.78);font-size:12px;line-height:1.65}.membership-hero small{display:flex;align-items:center;gap:7px;margin-top:19px;font-size:10px;font-weight:800}.membership-hero small .avatar{width:29px;height:29px;border:1px solid rgba(255,255,255,.7)}.membership-hero>i{position:relative;z-index:2;display:grid;place-items:center;width:104px;height:104px;align-self:center;color:#fff;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.22);border-radius:28px;box-shadow:0 18px 40px rgba(0,0,0,.12);font-size:50px;font-style:normal;transform:rotate(5deg)}.membership-content{position:relative;z-index:3;margin-top:-14px;padding:0 17px 30px;background:#f7f4f0;border-radius:20px 20px 0 0}.membership-content>section{background:#fff;border:1px solid #ebe4dc;border-radius:19px}.membership-plan-section{padding:19px 14px 13px}.membership-plan-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}.membership-plan-card{position:relative;display:grid;min-height:138px;padding:20px 8px 13px;color:#39333d;background:#fff;border:1px solid #dfd8d1;border-radius:14px;text-align:center}.membership-plan-card input{position:absolute;opacity:0;pointer-events:none}.membership-plan-card.active{color:var(--member-accent);border:2px solid var(--member-accent);box-shadow:0 7px 18px color-mix(in srgb,var(--member-accent) 15%,transparent)}.membership-plan-card>small:first-of-type{font-size:11px;font-weight:900}.membership-plan-card del{margin-top:6px;color:#aaa3ac;font-size:9px}.membership-plan-card strong{margin-top:7px;font-size:26px;line-height:1}.membership-plan-card>small:last-child{align-self:end;margin-top:8px;color:#918a96;font-size:9px}.membership-plan-empty{display:grid;grid-column:1/-1;min-height:102px;place-items:center;padding:20px;color:#827b87;background:#f8f6f4;border:1px dashed #dcd4cd;border-radius:14px;text-align:center;font-size:12px;line-height:1.7}.membership-plan-section>p{margin:14px 3px 0;color:#99919d;font-size:9px;line-height:1.6}.membership-newcomer-entry{display:grid!important;grid-template-columns:56px minmax(0,1fr) 36px;align-items:center;gap:12px;margin-top:13px;padding:13px 14px!important;background:linear-gradient(120deg,#fff4c9,#ffe5ec)!important;border-color:#f2d8a8!important;text-align:left}.membership-newcomer-entry>i{display:grid;width:54px;height:54px;place-items:center;background:#fff;border-radius:15px;font-size:24px;font-style:normal}.membership-newcomer-entry span{display:grid;gap:4px}.membership-newcomer-entry strong{font-size:14px}.membership-newcomer-entry small{color:#8f7680;font-size:9px}.membership-newcomer-entry>b{color:#c75942;font-size:22px}.membership-benefits{margin-top:13px;padding:19px}.membership-benefits header,.membership-relation-preview header{display:flex;align-items:flex-end;justify-content:space-between}.membership-benefits header span,.membership-relation-preview header span{color:var(--member-accent);font-size:8px;font-weight:900;letter-spacing:1.4px}.membership-benefits h2,.membership-relation-preview h2{margin:4px 0 0;font-size:20px}.membership-benefits header>small{color:#99919e;font-size:10px}.membership-benefits>div{display:grid;margin-top:14px}.membership-benefits article{display:grid;grid-template-columns:45px minmax(0,1fr);align-items:center;gap:12px;min-height:70px;border-top:1px solid #f0ebe7}.membership-benefits article:first-child{border-top:0}.membership-benefits article>i{display:grid;width:43px;height:43px;place-items:center;color:var(--member-accent);background:var(--member-soft);border-radius:50%;font-size:18px;font-style:normal}.membership-benefits article span{display:grid;gap:4px}.membership-benefits article strong{font-size:13px}.membership-benefits article small{color:#96909a;font-size:9px;line-height:1.5}.membership-relation-preview{margin-top:13px;padding:19px}.membership-relation-preview header a{color:var(--member-accent);font-size:11px;font-weight:900}.membership-preview-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:7px;margin-top:15px}.membership-preview-person{position:relative;display:grid;aspect-ratio:.72;align-content:end;overflow:hidden;background:#eee9e4;border-radius:12px}.membership-preview-person img,.membership-preview-person .relationship-mask-visual{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.membership-preview-person:after{position:absolute;inset:45% 0 0;background:linear-gradient(transparent,rgba(20,17,23,.83));content:""}.membership-preview-person span{position:relative;z-index:2;display:grid;gap:2px;padding:8px;color:#fff}.membership-preview-person strong{overflow:hidden;font-size:9px;text-overflow:ellipsis;white-space:nowrap}.membership-preview-person small{font-size:7px;opacity:.78}.membership-preview-empty{grid-column:1/-1;padding:22px;color:#8e8791;background:#f8f5f2;border-radius:13px;text-align:center;font-size:11px}.membership-relation-preview>p{margin:13px 0 0;color:#9c959f;font-size:8px;line-height:1.6}.membership-service-links{display:flex;justify-content:center;gap:20px;padding:20px 0 5px}.membership-service-links a{color:#8c8590;font-size:9px;text-decoration:underline}.membership-purchase-bar{position:fixed;right:0;bottom:0;left:0;z-index:40;display:grid;grid-template-columns:104px minmax(0,1fr);align-items:center;gap:10px;min-height:78px;padding:10px 18px calc(10px + env(safe-area-inset-bottom));background:rgba(255,255,255,.96);border-top:1px solid #e5ded8;box-shadow:0 -10px 28px rgba(29,24,31,.08);backdrop-filter:blur(16px)}.membership-purchase-bar>span{display:grid}.membership-purchase-bar small{color:#8e8791;font-size:9px}.membership-purchase-bar strong{margin-top:2px;font-size:20px}.membership-purchase-bar button{height:54px;color:#fff;background:var(--member-ink);border:0;border-radius:15px;font-size:14px;font-weight:900}.membership-purchase-bar button:disabled{color:#9a939d;background:#e8e4e6}

/* Prevent iOS Safari and the iOS WeChat webview from auto-zooming form fields. */
@supports (-webkit-touch-callout:none){input:not([type=checkbox]):not([type=radio]):not([type=range]):not([type=file]),textarea,select{font-size:16px!important}}

/* The timed newcomer gift is a compact centered dialog, not another page-sized sheet. */
.newcomer-pack-sheet:not([hidden]){place-items:center;padding:20px}
.newcomer-pack-sheet:not([hidden]) .newcomer-pack-panel{width:min(100%,480px);max-height:86dvh;border-radius:26px;box-shadow:0 30px 90px rgba(12,9,15,.35)}

/* Highlight a public game opened from the global activity banner. */
.ludo-room-card.targeted{border-color:#ef6684;box-shadow:0 0 0 4px rgba(239,102,132,.16),0 14px 32px rgba(79,29,47,.12)}
