:root {
  --bg: #07070a;
  --panel: #14141b;
  --panel-2: #15151c;
  --line: #2d2d3a;
  --text: #f7f7fb;
  --muted: #aaaab5;
  --cyan: #25f4ee;
  --pink: #fe2c55;
  --yellow: #ffcf3d;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: #f4f4f4;
  color: var(--text);
  font-family: "Noto Sans SC", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
html,body,#app,#app * { -webkit-user-select:none; user-select:none; }
input,textarea,select,[contenteditable="true"] { -webkit-user-select:text !important; user-select:text !important; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.phone-shell {
  width: min(100%, 375px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px #000, 0 0 40px rgba(0,0,0,.16);
}
.screen { padding: 12px 12px 70px; background: var(--bg); }
.screen.no-nav { padding-bottom: 28px; }
.screen::before, .screen::after {
  content: "";
  position: fixed;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .18;
  pointer-events: none;
}
.screen::before { background: var(--pink); top: -45px; margin-left: 280px; }
.screen::after { background: var(--cyan); bottom: -55px; margin-left: -55px; }
.card {
  position: relative;
  z-index: 1;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 13px;
  margin-bottom: 12px;
}
.hero {
  min-height: 184px;
  padding: 16px;
  background:
    radial-gradient(circle at 95% 5%, rgba(255,45,89,.8), transparent 24%),
    radial-gradient(circle at 4% 100%, rgba(24,224,220,.65), transparent 27%),
    linear-gradient(135deg,#15151d,#0b0b10);
  border: 0;
}
.brand { display: flex; gap: 9px; align-items: center; margin-bottom: 13px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: #0b0b10; color: #fff; font-weight: 1000; font-size: 18px;
  box-shadow: -2px 0 var(--cyan), 2px 0 var(--pink);
}
.brand strong { display:block; font-size: 16px; }
.brand small, .muted { color: var(--muted); }
h1,h2,h3,p { margin-top: 0; }
h1 { font-size: 24px; line-height: 1.05; margin-bottom: 6px; }
h2 { font-size: 17px; margin-bottom: 10px; }
h3 { font-size: 15px; margin-bottom: 7px; }
p, label, input, textarea, .small { font-size: 12px; line-height: 1.5; }
.primary {
  border: 0; border-radius: 999px; background: var(--pink); padding: 12px 18px;
  font-weight: 900; cursor: pointer; box-shadow: -2px 0 var(--cyan);
}
.primary.block { width: 100%; }
.secondary { border: 1px solid var(--line); background: var(--panel-2); border-radius: 12px; padding: 10px 12px; cursor: pointer; }
.link { border: 0; background: transparent; color: var(--cyan); font-weight: 800; padding: 0; cursor: pointer; }
.notice { border-color: rgba(24,224,220,.35); background: rgba(24,224,220,.09); color: #c6f3f6; }
.banner {
  height: 163px; overflow: hidden; color:#fff; position:relative;
  background:
    radial-gradient(circle at 100% 100%,rgba(255,45,89,.35),transparent 30%),
    radial-gradient(circle at 0 0,rgba(24,224,220,.55),transparent 23%),
    #050508;
  display:grid; grid-template-columns: 1.1fr .9fr; align-items:center;
}
.banner-art { text-align:center; }
.banner-art span { display:inline-grid; place-items:center; width:82px; height:98px; font-size:66px; font-weight:1000; color:white; text-shadow:-5px 0 var(--cyan),5px 0 var(--pink); transform:rotate(6deg); }
.banner b { display:block; font-size: 16px; line-height:1.05; margin-bottom:12px; }
.banner b span { color:var(--cyan); }
.banner strong { font-size:16px; line-height:1.05; }
.banner-dots { position:absolute; left:0; right:0; bottom:5px; text-align:center; color:#5d5e68; font-size:8px; letter-spacing:4px; }
.section-head { display:flex; align-items:center; justify-content:space-between; margin: 16px 1px 9px; }
.section-head h2 { margin:0; }
.survey-list { display:grid; gap:9px; }
.survey {
  display:grid; grid-template-columns: 96px 1fr; gap:10px; padding:9px; margin:0; cursor:pointer;
}
.survey-thumb {
  min-height:74px; border-radius:10px; display:grid; place-items:center; text-align:center;
  background: linear-gradient(145deg,#fff3f7,#dffeff); color:#17171c; font-weight:900; font-size:11px;
}
.survey-meta { display:flex; justify-content:space-between; color:var(--cyan); font-size:10px; margin-top:10px; }
.bottom-nav {
  position:fixed; z-index:15; left:50%; bottom:0; transform:translateX(-50%);
  width:min(100%,375px); height:62px; display:grid; grid-template-columns:repeat(3,1fr);
  background:rgba(8,8,12,.96); border-top:1px solid #181821; backdrop-filter:blur(12px);
}
.nav-item { border:0; background:transparent; color:#7f8291; font-size:10px; cursor:pointer; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; }
.nav-item svg { width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.nav-item .nav-detail { fill:currentColor; stroke:none; }
.nav-item span { display:block; font-size:10px; }
.nav-item.active { color:var(--pink); }
.nav-item.active svg { fill:var(--pink); stroke:var(--pink); }
.nav-item.active .nav-detail { fill:#fff; }
.topbar { height:42px; display:grid; grid-template-columns:42px 1fr 42px; align-items:center; text-align:center; position:relative; z-index:2; }
.back { width:34px; height:34px; border-radius:50%; border:1px solid var(--line); background:var(--panel); color:var(--cyan); cursor:pointer; }
.task-hero { background: radial-gradient(circle at 95% 5%,rgba(255,45,89,.7),transparent 28%), radial-gradient(circle at 3% 100%,rgba(24,224,220,.7),transparent 25%), var(--panel); }
.task-screen { padding-top: 4px; }
.task-screen .task-hero { min-height: 237px; padding: 13px; margin-bottom: 10px; }
.task-screen .task-hero p { margin-bottom: 7px; color:#fff; font-size:12px; line-height:1.45; font-weight:400; }
.glitch-title {
  font-size: 26px;
  line-height:1.08;
  margin-bottom: 7px;
  text-shadow: -2px 0 var(--cyan), 2px 0 var(--pink);
}
.task-form-card { min-height: 540px; margin-bottom: 10px; }
.task-form-card h2 { margin-bottom:7px; font-size:16px; line-height:1.2; }
.task-form-card .steps { min-height: 132px; }
.task-form-card .steps p { margin-bottom:6px; color:#f0f1fa; font-size:11px; line-height:1.45; font-weight:400; }
.task-form-card .steps { color:#f0f1fa; }
.task-form-card > .small.muted { color:#4f5d78; font-size:12px; line-height:1.2; }
.task-form-card textarea::placeholder { color:#8e91a2; opacity:1; }
.task-form-card textarea { min-height:150px; padding:11px; font-size:16px; line-height:1.45; font-weight:400; }
.task-form-card .upload { width:74px; height:74px; font-size:20px; grid-template-rows:1fr auto; padding:11px 0 13px; line-height:1; }
.task-form-card .upload small { font-size:10px; line-height:1; }
.task-footnote { color:#e9e9f4; font-size:10px; line-height:1.55; font-weight:400; margin-bottom:0; }
.task-history { min-height: 86px; margin-bottom: 0; }
.task-history h2 { margin-bottom:8px; font-size:16px; line-height:1.2; }
.task-history p { margin:4px 0 0; color:#8fa4c7; font-size:11px; line-height:1.45; font-weight:400; }
.support-bubble {
  position: fixed;
  z-index: 16;
  left: calc(50% + 139px);
  bottom: 98px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #5364ff;
  box-shadow: 0 4px 18px rgba(0,0,0,.35);
  font-size: 0;
  cursor:pointer;
}
.support-bubble svg { width:24px; height:24px; fill:none; stroke:#5866ff; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.global-support { left:calc(50% + 139px); }
.steps { background:var(--panel-2); border:1px solid var(--line); padding:10px; border-radius:10px; }
.field { margin-bottom:12px; }
.field label { display:block; font-weight:800; margin-bottom:5px; }
.email-hint { display:block; margin-top:6px; color:#777c94; font-size:9px; line-height:1.4; }
input, textarea {
  width:100%; background:var(--panel-2); border:1px solid var(--line); color:var(--text);
  border-radius:11px; padding:12px; outline:none;
}
input:focus, textarea:focus { border-color:var(--cyan); box-shadow:0 0 0 2px rgba(24,224,220,.1); }
textarea { min-height:112px; resize:vertical; }
.upload {
  width:76px; height:74px; display:grid; place-items:center; border:1px dashed #4e5164;
  border-radius:10px; background:var(--panel-2); color:var(--cyan); cursor:pointer; font-weight:900;
}
.history-empty { text-align:center; padding:28px 10px; color:var(--muted); }
.account-hero { display:flex; align-items:center; gap:10px; min-height:142px; }
.guest-account-hero { display:block; padding:14px; cursor:pointer; }
.account-brand-row { display:flex; align-items:center; gap:9px; }
.account-brand-row strong,.account-brand-row small { display:block; }
.account-brand-row strong { font-size:16px; }
.account-brand-row small { font-size:10px; }
.account-login-row { display:flex; align-items:center; margin-top:17px; }
.account-login-row h2 { margin:0 0 3px; font-size:18px; }
.account-login-row p { margin:0; }
.account-login-row .chev { font-size:22px; }
.logged-account-hero { min-height:153px; padding:13px; cursor:pointer; }
.logged-account-hero .account-brand-row { margin-bottom:15px; }
.account-user-row { display:flex; align-items:center; gap:10px; }
.account-user-row h2 { margin:0 0 3px; font-size:18px; max-width:220px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.account-user-row p { margin:0; font-size:11px; }
.account-user-row .chev { font-size:22px; }
.avatar-wrap { position:relative; width:62px; height:62px; display:inline-block; flex:0 0 62px; vertical-align:middle; }
.avatar { width:100%; height:100%; box-sizing:border-box; border-radius:50%; display:block; background:#f5f5f5; color:#252530; border:3px solid white; box-shadow:-3px 0 var(--cyan),3px 0 var(--pink); }
.avatar.silhouette { position:relative; overflow:hidden; background-color:#fff; background-image:linear-gradient(45deg,#e6e6e6 25%,transparent 25%),linear-gradient(-45deg,#e6e6e6 25%,transparent 25%),linear-gradient(45deg,transparent 75%,#e6e6e6 75%),linear-gradient(-45deg,transparent 75%,#e6e6e6 75%);background-size:14px 14px;background-position:0 0,0 7px,7px -7px,-7px 0; }
.avatar.silhouette::before { content:""; position:absolute; z-index:1; width:45%; aspect-ratio:1; border-radius:50%; top:8%; left:50%; transform:translateX(-50%); background:#272732; }
.avatar.silhouette::after { content:""; position:absolute; z-index:1; width:78%; height:49%; border-radius:54% 54% 14% 14%; left:50%; bottom:0; transform:translateX(-50%); background:#272732; }
.avatar.has-photo { background:#fff; }
.avatar.has-photo::before,.avatar.has-photo::after { display:none; }
.avatar-photo { position:relative; z-index:2; width:100%; height:100%; display:block; object-fit:cover; object-position:center; border-radius:50%; }
.camera-badge { position:absolute; z-index:3; right:-5px; bottom:-3px; width:25px; height:25px; border-radius:50%; display:grid; place-items:center; background:var(--pink); border:2px solid #111118; }
.camera-badge svg { width:15px; height:15px; fill:none; stroke:#fff; stroke-width:1.8; }
.chev { margin-left:auto; color:var(--muted); }
.balance { font-size:30px; color:var(--cyan); font-weight:1000; }
.quick-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:12px; }
.quick { min-height:80px; font-size:11px; font-weight:800; }
.quick span { display:block; margin:auto auto 7px; width:31px; height:31px; border-radius:10px; display:grid; place-items:center; background:var(--pink); }
.stats { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.stat { padding:12px; border:1px solid var(--line); border-radius:12px; }
.stat b { font-size:24px; }
.stat-with-icon { display:grid; grid-template-columns:34px 1fr; grid-template-rows:24px auto; column-gap:8px; align-items:center; min-height:80px; }
.stat-icon { grid-row:1/3; width:32px; height:32px; border-radius:10px; display:grid; place-items:center; color:#071013; font-weight:900; }
.stat-icon.cyan { background:var(--cyan); }
.stat-icon.pink { background:var(--pink); color:#fff; }
.stat-with-icon b { font-size:22px; line-height:1; }
.stat-with-icon small { line-height:1.1; }
.menu { padding:0; overflow:hidden; }
.menu button { width:100%; border:0; border-bottom:1px solid var(--line); background:transparent; text-align:left; padding:15px 13px; font-weight:800; cursor:pointer; }
.menu button:last-child { border-bottom:0; }
.menu button::after { content:'›'; float:right; color:var(--muted); }
.auth-wrap { padding-top:18px; }
.auth-wrap { position:relative; min-height:100vh; padding-top:40px; }
.auth-back { position:absolute; left:12px; top:16px; z-index:3; }
.auth-title { text-align:center; margin:0 0 26px; padding:0 15px; }
.auth-title h1 { margin:4px 0 8px; font-size:28px; }
.auth-title .register-title { margin-top:16px; }
.auth-title p { max-width:340px; margin:0 auto; font-size:12px; line-height:1.45; }
.check { display:flex; gap:8px; align-items:flex-start; color:var(--muted); }
.check input { width:auto; margin-top:3px; }
.tabs { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--line); border-radius:999px; overflow:hidden; margin-bottom:16px; }
.tabs button { border:0; background:transparent; padding:10px 4px; font-weight:800; cursor:pointer; color:var(--muted); }
.tabs button.active { background:var(--pink); color:white; box-shadow:-2px 0 var(--cyan); }
.profile-avatar { text-align:center; padding:24px; }
.profile-avatar .avatar-wrap { display:block; margin:0 auto 10px; width:96px; height:96px; }
.profile-avatar-control { display:block; cursor:pointer; }
.profile-avatar-control .link { display:block; }
.profile-list { padding:12px 13px; }
.profile-list h3 { margin-bottom:8px; }
.info-row { display:flex; align-items:center; gap:9px; padding:14px 0; border-bottom:1px solid var(--line); }
.info-row:last-child { border-bottom:0; }
.info-row .value { margin-left:auto; color:#dde0ef; text-align:right; max-width:55%; }
.editable-row { width:100%; background:transparent; color:inherit; border-left:0;border-right:0;border-top:0;text-align:left;cursor:pointer;font:inherit; }
.id-box { display:grid;place-items:center;width:20px;height:20px;background:#8057d8;color:#fff;font-size:10px; }
.id-mark { color:var(--cyan); font-size:18px; min-width:24px; }
.identity-row b { line-height:1.05; }
.editor-overlay { position:fixed;z-index:80;inset:0;background:rgba(0,0,0,.7);display:grid;place-items:center;padding:18px; }
.profile-editor { width:min(350px,100%);background:var(--panel);border:1px solid var(--line);border-radius:16px;padding:16px;color:var(--text); }
.editor-head { display:flex;align-items:center;justify-content:space-between;margin-bottom:14px; }
.editor-head h2 { margin:0; }
.editor-close { width:32px;height:32px;border-radius:50%;border:1px solid var(--line);background:var(--panel-2);color:#fff;font-size:20px;cursor:pointer; }
.profile-editor label { display:block;font-weight:800;margin-bottom:6px; }
.profile-editor input,.profile-editor textarea { margin-bottom:14px; }
.password-editor { padding:0 15px 15px; }
.password-editor .editor-head { margin:0 -15px 19px; padding:14px 15px; border-bottom:1px solid #e2e2e8; }
.password-editor input { height:46px; }
.editor-actions { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.editor-actions button { min-height:45px; border-radius:999px; font-weight:900; }
.verification-screen { padding-top:14px; }
.verification-screen .topbar { margin-bottom:0; }
.verification-subtitle { margin:-5px 0 14px; text-align:center; color:var(--muted); font-size:11px; }
.verification-intro,.verification-card { padding:14px; }
.verification-intro h2,.verification-card h2 { margin:0 0 10px; font-size:16px; }
.verification-intro p { margin:5px 0; color:#c7cada; font-size:12px; line-height:1.55; }
.verification-intro strong { color:#fff; }
.verification-options { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:10px; }
.verification-options.two { grid-template-columns:1fr 1fr; }
.verification-options button { min-height:40px; padding:7px 4px; border:1px solid var(--line); border-radius:10px; background:var(--panel-2); color:#d8daea; font-size:11px; font-weight:800; cursor:pointer; }
.verification-options button.active { border-color:var(--cyan); background:#15262c; color:#fff; box-shadow:inset 0 0 0 1px rgba(37,235,232,.2); }
.verification-files { display:grid; gap:8px; min-width:0; width:100%; overflow:hidden; }
.verification-files.two { grid-template-columns:minmax(0,1fr) minmax(0,1fr); }
.verification-file { position:relative; min-width:0; width:100%; max-width:100%; min-height:96px; box-sizing:border-box; overflow:hidden; border:1px dashed rgba(37,235,232,.65); border-radius:12px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:7px; padding:10px; text-align:center; cursor:pointer; background:#191a22; }
.verification-file:hover { border-color:var(--cyan); background:#1b2028; }
.verification-file span { min-width:31px; height:31px; padding:0 7px; border-radius:10px; display:grid; place-items:center; background:var(--cyan); color:#071013; font-size:11px; font-weight:1000; }
.verification-file b { font-size:11px; font-weight:500; }
.verification-file small { width:100%; color:var(--muted); font-size:9px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.verification-preview { position:absolute; z-index:1; inset:0; width:100%; height:100%; display:block; object-fit:cover; object-position:center; }
.verification-preview[hidden] { display:none; }
.verification-file.has-preview > span,.verification-file.has-preview > b { visibility:hidden; }
.verification-file.has-preview small { position:absolute; z-index:2; left:0; right:0; bottom:0; width:auto; padding:6px 8px; box-sizing:border-box; color:#fff; background:linear-gradient(transparent,rgba(0,0,0,.8)); text-align:center; }
.verification-phone { margin:12px 0 0; }
.verification-phone input { margin-bottom:0; }
.verification-submit { margin-bottom:16px; min-height:47px; }
.verification-note { padding:11px 13px; color:#d9dceb; font-size:10px; line-height:1.45; }
.verification-record ul { margin:8px 0; padding-left:18px; }
.verification-record li { margin:5px 0; word-break:break-word; }
.preference-images { display:grid; grid-template-columns:repeat(2,1fr); gap:7px; margin:10px 0; }
.preference-images figure { margin:0; min-width:0; }
.preference-images img { width:100%; height:120px; display:block; object-fit:cover; border-radius:9px; border:1px solid var(--line); }
.preference-images figcaption { padding-top:4px; color:var(--muted); font-size:9px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; }
.wheel-wrap { padding:18px 8px; text-align:center; }
.wheel {
  width:280px; max-width:90%; aspect-ratio:1; margin:10px auto; border-radius:50%; border:6px solid white;
  display:grid; place-items:center; background:conic-gradient(var(--pink) 0 45deg,#101016 45deg 90deg,var(--cyan) 90deg 135deg,var(--pink) 135deg 180deg,#101016 180deg 225deg,var(--pink) 225deg 270deg,var(--cyan) 270deg 315deg,#101016 315deg);
  box-shadow:0 0 0 4px var(--pink),0 14px 30px rgba(0,0,0,.5); transition:transform 2.6s cubic-bezier(.1,.7,.1,1);
}
.wheel button { width:72px; height:72px; border-radius:50%; border:4px solid var(--pink); background:white; color:var(--pink); font-weight:1000; cursor:pointer; }
.privacy { font-size:13px; line-height:1.75; }
.privacy h2 { margin-top:20px; }
.toast { position:fixed; z-index:50; left:50%; bottom:78px; transform:translateX(-50%); width:min(330px,90%); padding:11px 14px; border-radius:11px; background:#f6f6fa; color:#14141b; font-size:12px; font-weight:800; box-shadow:0 10px 30px rgba(0,0,0,.35); }
.toast.dark { bottom:46%; width:auto; max-width:260px; white-space:nowrap; padding:8px 18px; border-radius:4px; background:rgba(12,12,17,.94); color:#fff; font-weight:500; box-shadow:0 5px 18px rgba(0,0,0,.32); }
.danger { color:var(--pink); }
.amount-row { display:flex; gap:8px; }
.amount-row button { flex:0 0 auto; }
@media (min-width: 650px) { .phone-shell { margin-top:0; } }

.home-screen { padding-top:11px; }
.home-screen .home-hero { min-height:186px; height:186px; padding:11px 12px; }
.home-hero .brand { margin-bottom:8px; }
.home-hero .brand-mark { width:30px; height:30px; border-radius:9px; font-size:16px; }
.home-hero .brand strong { font-size:15px; }
.home-hero .brand small { font-size:10px; }
.home-hero h1 { font-size:23px; line-height:.98; margin-bottom:5px; }
.home-hero p { font-size:12px; line-height:1.25; margin-bottom:10px; }
.home-hero .primary { min-width:102px; min-height:35px; padding:8px 14px; font-size:12px; }
.home-screen .notice { min-height:72px; padding:12px; }
.home-screen .notice p { margin:0; font-size:11px; line-height:1.4; }
.home-screen .banner { margin-bottom:15px; }
.home-screen .section-head { margin-top:0; }

.support-screen { min-height:100vh; padding:12px 10px 70px; background:#07070a; }
.support-screen .topbar { grid-template-columns:42px 1fr 42px; }
.support-messages { height:calc(100vh - 125px); overflow:auto; padding:10px 3px; }
.chat-row { display:flex; margin:8px 0; }
.chat-row.mine { justify-content:flex-end; }
.chat-bubble { max-width:78%; padding:9px 11px; border-radius:13px 13px 13px 3px; background:#171821; border:1px solid #2e3040; font-size:12px; }
.chat-row.mine .chat-bubble { background:#172b31; border-color:#1ab9b7; border-radius:13px 13px 3px 13px; }
.chat-bubble small { display:block; margin-top:4px; color:#85899d; font-size:8px; }
.support-composer { position:fixed; z-index:22; left:50%; bottom:8px; transform:translateX(-50%); width:min(355px,calc(100% - 20px)); height:38px; display:grid; grid-template-columns:1fr 38px; gap:5px; align-items:center; }
.support-composer input { height:36px; border-radius:999px; padding:8px 14px; }
.support-composer button { width:38px; height:36px; border-radius:999px; border:1px solid #2e3040; background:#14151e; color:var(--cyan); padding:0; cursor:pointer; font-size:16px; }

.admin-app { min-height:100vh; width:100%; background:#0b0b10; color:var(--text); }
.admin-shell { min-height:100vh; max-width:1220px; margin:auto; padding:26px; }
.admin-login { max-width:430px; margin:10vh auto; padding:24px; }
.admin-header { display:flex; justify-content:space-between; align-items:center; padding:18px 20px; background:var(--panel); border:1px solid var(--line); border-radius:16px; margin-bottom:18px; }
.admin-header h1 { margin-bottom:4px; }
.admin-header p { margin:0; color:var(--muted); }
.admin-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:18px; }
.admin-card,.admin-panel { background:var(--panel); border:1px solid var(--line); border-radius:15px; padding:18px; }
.admin-card b { display:block; color:var(--cyan); font-size:30px; }
.admin-card span { color:var(--muted); }
.admin-panel { margin-bottom:18px; }
.admin-user { display:grid; grid-template-columns:minmax(200px,1fr) 90px 110px minmax(140px,1fr) 64px 64px 64px; gap:9px; align-items:center; padding:12px 0; border-bottom:1px solid var(--line); }
.admin-user small { display:block; margin-top:3px; color:var(--muted); word-break:break-all; }
.admin-user input { padding:9px; }
.admin-search { margin:0 0 14px; }
.admin-search input { width:100%; max-width:460px; padding:10px 12px; }
.admin-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:12px; }
.admin-submission { background:var(--panel-2); border:1px solid var(--line); border-radius:12px; padding:13px; }
.admin-submission small { color:var(--muted); }
.admin-images { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; margin-top:10px; }
.admin-images img { width:100%; height:110px; object-fit:cover; border-radius:8px; border:1px solid var(--line); }
.admin-message { display:grid; grid-template-columns:220px 1fr 160px; gap:12px; padding:11px 0; border-bottom:1px solid var(--line); }
.admin-message small { color:var(--muted); text-align:right; }
@media(max-width:800px){.admin-shell{padding:12px}.admin-stats{grid-template-columns:1fr}.admin-user{grid-template-columns:1fr 90px}.admin-user input,.admin-user button{grid-column:1/-1}.admin-message{grid-template-columns:1fr}.admin-message small{text-align:left}}

/* ===== Support inbox (three-pane) ===== */
.cs-layout { display:grid; grid-template-columns:150px 290px 1fr; gap:14px; min-height:560px; }
.cs-side { border-right:1px solid var(--line); padding-right:10px; }
.cs-side-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.cs-side-head b { font-size:13px; }
.linklike { border:0; background:none; color:var(--cyan); cursor:pointer; font-size:11px; font-weight:800; padding:2px 4px; }
.cs-side-label { color:var(--muted); font-size:11px; font-weight:800; margin:10px 0 4px; }
.cs-filter { display:flex; align-items:center; gap:8px; width:100%; border:0; background:none; color:var(--muted); padding:7px 8px; border-radius:8px; cursor:pointer; font-size:12px; font-weight:700; text-align:left; }
.cs-filter .dot { width:10px; height:10px; border-radius:50%; border:2px solid var(--muted); flex:0 0 auto; box-sizing:border-box; }
.cs-filter:hover { color:#fff; }
.cs-filter.active { color:#fff; background:var(--panel-2); }
.cs-filter.active .dot { border-color:var(--cyan); background:var(--cyan); }
.cs-list { border-right:1px solid var(--line); padding-right:12px; display:flex; flex-direction:column; min-height:0; }
.cs-list .admin-search { margin-bottom:10px; }
.cs-list .admin-search input { max-width:none; }
.cs-list-head { color:var(--muted); font-size:11px; font-weight:800; margin-bottom:8px; }
.cs-items { overflow:auto; display:flex; flex-direction:column; gap:8px; max-height:520px; padding-right:2px; }
.cs-item { text-align:left; border:1px solid var(--line); background:var(--panel-2); border-radius:12px; padding:10px 12px; cursor:pointer; color:inherit; font:inherit; }
.cs-item:hover { border-color:var(--cyan); }
.cs-item.active { border-color:var(--pink); box-shadow:-2px 0 var(--cyan); }
.cs-item-top { display:flex; justify-content:space-between; gap:8px; align-items:baseline; }
.cs-item-top small { color:var(--muted); }
.cs-item-mail { display:block; color:var(--muted); margin:2px 0 5px; word-break:break-all; }
.cs-item p { margin:0; color:#d8daea; font-size:12px; display:flex; gap:6px; align-items:center; }
.cs-snippet { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.cs-unread { background:var(--pink); color:#fff; border-radius:999px; font-size:10px; font-weight:900; padding:1px 7px; flex:0 0 auto; }
.cs-star { color:var(--yellow); flex:0 0 auto; }
.cs-main { display:flex; flex-direction:column; min-height:0; }
.cs-main-head { display:flex; justify-content:space-between; gap:10px; align-items:center; padding-bottom:10px; border-bottom:1px solid var(--line); }
.cs-main-head small { display:block; color:var(--muted); margin-top:2px; }
.cs-head-actions { display:flex; gap:8px; flex:0 0 auto; }
.cs-on { color:var(--yellow); border-color:var(--yellow) !important; }
.cs-thread { flex:1; overflow:auto; padding:12px 4px; display:flex; flex-direction:column; gap:8px; max-height:430px; }
.cs-composer { display:flex; gap:8px; padding-top:10px; border-top:1px solid var(--line); }
.cs-composer input { flex:1; padding:10px 12px; }
.cs-empty { display:grid; place-items:center; height:100%; min-height:300px; color:var(--muted); text-align:center; }
.cs-empty .empty-icon { font-size:34px; margin-bottom:8px; }
@media(max-width:900px){ .cs-layout{grid-template-columns:1fr} .cs-side,.cs-list{border-right:0;padding-right:0} .cs-items{max-height:300px} }

/* ===== Status pills ===== */
.pill { display:inline-block; padding:2px 8px; border-radius:999px; font-size:10px; font-weight:800; vertical-align:middle; }
.pill-pending { background:rgba(255,207,61,.14); color:var(--yellow); border:1px solid rgba(255,207,61,.4); }
.pill-ok { background:rgba(24,224,220,.12); color:var(--cyan); border:1px solid rgba(24,224,220,.4); }
.pill-bad { background:rgba(255,45,89,.12); color:var(--pink); border:1px solid rgba(255,45,89,.4); }

/* ===== Survey detail questions ===== */
.survey-reward b { color:var(--cyan); }
.q-field label { display:block; font-weight:800; margin-bottom:8px; }
.q-options { display:grid; gap:8px; }
.q-opt { display:flex; align-items:center; gap:10px; text-align:left; padding:12px; border-radius:10px; background:#14141b; border:1px solid transparent; color:#e8e9f2; font-size:12px; cursor:pointer; }
.q-opt .radio { width:16px; height:16px; border-radius:50%; background:#fff; flex:0 0 16px; }
.q-opt.active { border-color:var(--cyan); }
.q-opt.active .radio { background:var(--cyan); box-shadow:inset 0 0 0 4px #14141b; }
.q-field { background:#191921; border:1px solid var(--line); border-radius:12px; padding:12px; margin-bottom:12px; }
.q-head { display:flex; justify-content:space-between; align-items:flex-start; gap:8px; margin-bottom:10px; }
.q-head label { margin:0; }
.req { color:var(--pink); font-size:10px; font-weight:900; flex:0 0 auto; }
.q-rating { display:flex; gap:8px; }
.q-rating button { width:40px; height:40px; border:1px solid var(--line); border-radius:10px; background:var(--panel-2); color:#5b5e70; font-size:20px; cursor:pointer; }
.q-rating button.active { color:var(--yellow); border-color:var(--yellow); background:#262213; }

/* ===== Wheel labels ===== */
.wheel-wrap .wheel { position:relative; }
.wheel-labels { position:absolute; inset:0; pointer-events:none; }
.wheel-labels span { position:absolute; left:50%; top:50%; max-width:74px; margin-left:-37px; text-align:center; font-size:9px; font-weight:800; color:#fff; text-shadow:0 1px 3px rgba(0,0,0,.8); transform-origin:center 0; }

/* ===== Draw result overlay ===== */
.result-overlay { position:fixed; z-index:90; inset:0; background:rgba(0,0,0,.75); display:grid; place-items:center; padding:20px; }
.result-card { width:min(320px,100%); background:var(--panel); border:1px solid var(--line); border-radius:18px; padding:26px 20px; text-align:center; }
.result-badge { display:inline-block; padding:4px 16px; border-radius:999px; font-size:12px; font-weight:900; margin-bottom:14px; }
.result-badge.win { background:var(--cyan); color:#062b2a; }
.result-badge.lose { background:#2e3040; color:var(--muted); }
.result-amount { font-size:40px; font-weight:1000; color:var(--pink); margin:0 0 8px; }
.result-amount.thanks { font-size:30px; color:#fff; }
.result-card h3 { font-size:18px; font-weight:900; margin:0 0 6px; }
.result-label { font-size:14px; font-weight:900; color:var(--cyan); margin:0 0 10px; }
.result-note { font-size:12px; color:var(--muted); margin:0 0 18px; }
.result-actions { display:flex; flex-direction:column; gap:8px; }
.no-ticket-hint { margin:14px auto 0; width:max-content; max-width:100%; background:#14151e; border:1px solid var(--line); border-radius:12px; padding:10px 18px; font-size:13px; font-weight:700; color:#e8e9f2; }

/* ===== Admin tabs & actions ===== */
.admin-tabs { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:16px; }
.admin-tabs button { border:1px solid var(--line); background:var(--panel); color:var(--muted); border-radius:999px; padding:8px 14px; font-weight:800; font-size:12px; cursor:pointer; }
.admin-tabs button.active { background:var(--pink); border-color:var(--pink); color:#fff; box-shadow:-2px 0 var(--cyan); }
.admin-stats { display:grid; grid-template-columns:repeat(4,1fr); }
.admin-row-actions { display:flex; flex-wrap:wrap; gap:7px; align-items:center; margin-top:10px; }
.admin-row-actions input { flex:1; min-width:110px; padding:9px; }
.admin-row-actions .review-tickets { flex:0 0 74px; }
.admin-row-actions button { flex:0 0 auto; }
.danger-outline { color:var(--pink); border-color:rgba(255,45,89,.5) !important; }
.admin-conversation .admin-thread { max-height:220px; overflow:auto; padding:4px 2px; margin-top:8px; }
.admin-field-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:0 12px; }
.field-label-bold { display:block; font-weight:800; margin:6px 0 8px; }

/* ===== Survey editor (admin) ===== */
.admin-editor-overlay { align-items:flex-start; overflow:auto; padding:30px 16px; }
.admin-survey-editor { width:min(680px,100%); max-height:none; }
.q-editor-row { display:grid; grid-template-columns:130px 1fr 1fr 28px; gap:7px; align-items:center; padding:8px; border:1px solid var(--line); border-radius:10px; margin-bottom:7px; background:var(--panel-2); }
.q-editor-row select { padding:9px; border-radius:9px; background:var(--panel); color:var(--text); border:1px solid var(--line); }
.q-editor-row input { padding:9px; }
@media(max-width:640px){ .q-editor-row { grid-template-columns:1fr 28px; } }

/* ===== Survey list page (reference style) ===== */
.list-screen { padding-top:16px; }
.list-head { display:flex; align-items:center; gap:12px; margin-bottom:6px; }
.list-head .back { width:44px; height:44px; font-size:20px; }
.list-head h1 { margin:0; font-size:24px; font-weight:900; }
.list-sub { text-align:center; color:var(--muted); margin:0 0 14px; }
.search-bar { display:flex; align-items:center; gap:8px; background:var(--panel); border:1px solid var(--line); border-radius:999px; padding:4px 6px 4px 16px; margin-bottom:14px; }
.search-bar input { flex:1; border:0; background:transparent; box-shadow:none; padding:10px 0; font-size:14px; }
.search-bar .link { font-size:14px; font-weight:900; padding:0 12px; }
.survey { grid-template-columns:96px 1fr; align-items:stretch; }
.survey-thumb-img { width:96px; aspect-ratio:353/279; border-radius:12px; object-fit:cover; display:block; }
.survey-body { min-width:0; display:flex; flex-direction:column; }
.survey-body h3 { font-size:15px; margin-bottom:4px; }
.survey-body p { margin:0 0 8px; }
.survey-foot { margin-top:auto; display:flex; align-items:center; justify-content:space-between; }
.survey-foot .muted { font-size:11px; }
.start-btn { border:0; border-radius:999px; background:var(--pink); color:#fff; font-weight:900; font-size:13px; padding:9px 22px; cursor:pointer; box-shadow:-3px 0 0 var(--cyan); }

/* ===== Pill header (Back pill + centered title) ===== */
.pill-head { position:relative; text-align:center; margin-bottom:14px; }
.back-pill { position:fixed; top:12px; left:max(12px, calc(50% - 163px)); z-index:40; border:1px solid var(--line); background:var(--panel); color:var(--cyan); font-weight:900; border-radius:999px; padding:9px 16px; font-size:12px; cursor:pointer; }
.pill-head h1 { margin:0 0 6px; font-size:22px; }
.pill-head p { margin:0; color:var(--muted); }

/* ===== Wheel v2 ===== */
.wheel-frame { position:relative; width:280px; max-width:92%; margin:14px auto 6px; }
.wheel-pointer { position:absolute; z-index:5; left:50%; top:-14px; transform:translateX(-50%); width:0; height:0; border-left:16px solid transparent; border-right:16px solid transparent; border-top:26px solid var(--pink); filter:drop-shadow(0 2px 0 var(--cyan)); }
.wheel-frame .wheel { width:100%; max-width:none; }
.wheel-labels span { display:flex; flex-direction:column; align-items:center; gap:4px; }
.wheel-labels b { font-size:10px; font-weight:900; color:#fff; text-shadow:0 1px 3px rgba(0,0,0,.8); }
.wheel-labels i { font-style:normal; background:#f2f2f2; color:#17171c; border-radius:8px; padding:3px 7px; font-size:10px; font-weight:900; box-shadow:0 1px 4px rgba(0,0,0,.4); }
.ticket-card { display:flex; align-items:center; gap:10px; }
.ticket-card b { font-size:15px; }
.ticket-card .value { margin-left:auto; font-size:18px; }
.ticket-icon { width:34px; height:34px; border-radius:10px; display:grid; place-items:center; background:var(--cyan); color:#071013; font-weight:1000; }
.count-badge { min-width:26px; height:26px; padding:0 8px; border-radius:999px; display:grid; place-items:center; background:var(--pink); color:#fff; font-weight:900; font-size:13px; }
.empty-icon { width:56px; height:56px; margin:0 auto 10px; border-radius:14px; display:grid; place-items:center; background:var(--panel-2); color:var(--cyan); font-size:22px; font-weight:1000; }

/* ===== Withdraw v2 ===== */
.pay-methods { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:8px 0 6px; }
.pay-methods button { border:1px solid var(--line); background:var(--panel-2); color:var(--muted); border-radius:12px; padding:12px 4px; font-weight:800; cursor:pointer; }
.pay-methods button.active { border-color:var(--cyan); background:#12242a; color:var(--cyan); box-shadow:inset 0 0 0 1px rgba(24,224,220,.35); }
.div-field { padding:14px 0; border-bottom:1px solid var(--line); }
.div-field:last-of-type { border-bottom:0; }
.div-field label { display:block; font-weight:800; margin-bottom:8px; }
.div-field .amount-row { display:flex; gap:8px; }

/* ===== pill-head overlap fix ===== */

.pill-head h1 { font-size:20px; }

/* home card meta (reference style) */
.cyan-meta { color:var(--cyan); font-size:10px; }

/* ===== music-note brand mark ===== */
.brand-mark .note-img { width:19px; height:19px; display:block; filter:invert(1); }
.auth-logo .note-img { width:58px; height:58px; display:block; margin:0 auto; filter:invert(1) drop-shadow(-3px 0 var(--cyan)) drop-shadow(3px 0 var(--pink)); }
.banner-art svg { width:72px; height:86px; fill:#fff; filter:drop-shadow(-5px 0 var(--cyan)) drop-shadow(5px 0 var(--pink)); transform:rotate(6deg); }

/* ===== banner carousel ===== */
.banner-carousel { padding:0; position:relative; }
.banner-track { display:flex; height:100%; transition:transform .35s ease; }
.banner-slide { flex:0 0 100%; min-width:100%; }
.banner-slide img { width:100%; height:100%; object-fit:cover; display:block; pointer-events:none; -webkit-user-drag:none; }
.banner-carousel .banner-dots { position:absolute; left:0; right:0; bottom:6px; z-index:2; display:flex; justify-content:center; gap:6px; letter-spacing:0; font-size:0; }
.banner-carousel .banner-dots span { width:7px; height:7px; border-radius:50%; background:#5d5e68; cursor:pointer; }
.banner-carousel .banner-dots span.active { background:#fff; }

/* hero button clean like original */
.home-hero .primary { box-shadow:none; }

/* carousel drag fix */
.banner-carousel { touch-action:pan-y; }
.banner-carousel img { pointer-events:none; -webkit-user-drag:none; }

/* ===== detail hero (original template) ===== */
.detail-screen { padding:0 12px 28px; }
.detail-hero { position:relative; margin:0 -12px 12px; min-height:230px; background-size:cover; background-position:center; display:flex; align-items:flex-end; padding:16px 14px; }
.detail-hero::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(7,7,10,.15) 0%, rgba(7,7,10,.55) 45%, rgba(7,7,10,.94) 100%); }

.detail-hero-body { position:relative; z-index:1; width:100%; }
.brand-line { display:flex; align-items:center; gap:7px; color:#fff; font-weight:800; font-size:12px; margin-bottom:8px; }
.brand-line .note-img { width:16px; height:16px; filter:invert(1); }
.detail-hero-body h1 { font-size:24px; font-weight:900; margin:0 0 6px; }
.detail-hero-body p { color:var(--muted); margin:0 0 10px; }
.reward-chip { display:inline-block; background:rgba(37,244,238,.12); border:1px solid rgba(37,244,238,.4); color:#eafffe; border-radius:999px; padding:6px 12px; font-size:11px; font-weight:700; }
.reward-chip b { color:var(--cyan); }
.topbar .back-pill { padding:8px 14px; font-size:12px; }


/* ===== round-2 alignment fixes ===== */
.banner-carousel { display:block; }

.brand-line { color:var(--cyan); }
.home-hero .brand strong { color:var(--cyan); }
.submit-fixed { position:fixed; left:50%; transform:translateX(-50%); bottom:10px; width:min(351px,calc(100% - 24px)); z-index:30; border-radius:999px; }
#survey-form { padding-bottom:74px; }

/* no white/cyan edge on action buttons */
.start-btn, .submit-fixed, #submit-task { box-shadow:none; }

/* ===== round-4 alignment ===== */
.back-pill { top:10px; left:max(8px, calc(50% - 179px)); padding:7px 14px; font-size:11px; }
.task-screen .task-hero p { color:#c6f3f6; }
.task-footnote { color:#c6f3f6 !important; }
.balance-label { color:#c6f3f6; }
.account-login-row { margin-top:26px; }
.stat-with-icon { min-height:96px; }
#survey-form { background:transparent; border:0; padding:0 0 74px; }
.q-field { padding:14px; }
.q-head label { font-size:15px; }
.q-opt { font-size:13px; padding:13px 12px; }
.q-opt .radio { width:18px; height:18px; flex-basis:18px; }
.q-opt.active .radio { box-shadow:inset 0 0 0 4px #14141b; }
.agree-tabs { display:flex; gap:8px; margin-bottom:12px; }
.agree-tabs button { border:1px solid var(--line); background:var(--panel); color:var(--muted); border-radius:999px; padding:8px 14px; font-weight:800; font-size:11px; cursor:pointer; }
.agree-tabs button.active { color:var(--cyan); border-color:var(--cyan); }
#agreement-box h1 { font-size:20px; margin:14px 0 10px; }
#agreement-box h3 { font-size:14px; margin:16px 0 8px; color:var(--cyan); }
#agreement-box p { font-size:12px; line-height:1.7; color:#c9cbe0; margin:0 0 10px; }

.topbar h2 { grid-column:2; }
.topbar > span { grid-column:3; }

/* ===== round-5: privacy spacing + account 1:1 ===== */
.privacy { padding-top:60px; }
.agree-tabs { margin-top:4px; }
.guest-account-hero { min-height:150px; padding:14px; }
.account-login-row { margin-top:18px; }
.account-login-row h2 { font-size:17px; }
.balance-label { color:#c6f3f6; font-weight:800; font-size:12px; }
.stat-with-icon { min-height:84px; }
.stat-with-icon b { font-size:18px; }
.menu button { font-size:14px; }

/* ===== round-6: account 1:1 compact ===== */
.account-screen .brand-mark { background:#fff; }
.account-screen .brand-mark .note-img { filter:none; }
.account-screen .account-brand-row strong { font-size:14px; }
.account-screen .account-brand-row small { font-size:10px; }
.account-screen .guest-account-hero { min-height:140px; }
.account-screen .account-login-row { margin-top:14px; }
.account-screen .account-login-row h2 { font-size:16px; }
.account-screen .account-login-row p { font-size:12px; }
.account-screen .balance-label { font-size:11px; }
.account-screen .card h2 { font-size:16px; margin-bottom:6px; }
.account-screen .card p.muted { font-size:11px; }
.account-screen .section-head h2 { font-size:15px; }
.account-screen .section-head .link { font-size:12px; }
.account-screen .stat-with-icon { min-height:78px; }
.account-screen .stat-with-icon b { font-size:16px; }
.account-screen .stat-with-icon small { font-size:10px; }
.account-screen .stat-icon { width:30px; height:30px; }
.account-screen .menu button { font-size:14px; padding:13px; }

/* ===== round-7: final account tweaks ===== */
.account-screen .balance-label { color:#fff; }
.account-screen .account-login-row { margin-top:12px; }
.account-screen .guest-account-hero { padding:13px; }
.account-screen .chev { font-size:16px; font-weight:400; }

/* ===== round-8: account sizes per original ===== */
.account-screen .brand-mark { box-shadow:none; }
.account-screen .account-brand-row strong { font-size:17px; }
.account-screen .account-brand-row small { font-size:12px; }
.account-screen .account-login-row h2 { font-size:20px; }
.account-screen .account-login-row p { font-size:14px; }
.account-screen .chev { font-size:20px; }
.account-screen .balance-label { color:#e8ebf0; font-size:12px; font-weight:700; }
.account-screen .card h2 { font-size:19px; }
.account-screen .card p.muted { font-size:13px; }
.account-screen .section-head h2 { font-size:17px; }
.account-screen .stat-icon { width:40px; height:40px; font-size:14px; }
.account-screen .stat-with-icon { min-height:88px; }
.account-screen .stat-with-icon b { font-size:18px; }
.account-screen .stat-with-icon small { font-size:13px; color:var(--muted); }

/* ===== round-9 ===== */
.account-screen .balance-label { display:block; margin-bottom:8px; }
.account-screen .section-head { margin:2px 0 10px; }
.account-screen .section-head h2 { font-size:16px; }
.account-screen .stat-icon { width:36px; height:36px; font-size:13px; }
.account-screen .stat-with-icon b { font-size:16px; }
.account-screen .stat-with-icon small { font-size:12px; }
.account-screen .stat-with-icon { min-height:80px; }
.account-screen .stats { gap:10px; }

/* ===== round-10 ===== */
.account-screen .account-brand-row small { color:var(--muted); }
.account-screen .account-login-row p { color:var(--muted); }
.account-screen .account-login-row { margin-top:18px; }

/* ===== round-11: account icon neon like home ===== */
.account-screen .brand-mark { background:#0b0b10; box-shadow:-2px 0 var(--cyan), 2px 0 var(--pink); }
.account-screen .brand-mark .note-img { filter:invert(1); }

/* ===== round-12: task colors per original ===== */
.task-screen .task-hero p { color:#dedee8; }
.task-form-card .steps, .task-form-card .steps p, .steps { color:#b8b8c4; }
.task-footnote { color:#b8b8c4 !important; }

/* round-13: login subtitle color */
.auth-title p { color:#c9c9d4; }

/* ===== round-14: withdraw per original ===== */
.phone-row { display:flex; align-items:center; border:1px solid var(--line); border-radius:11px; background:var(--panel-2); }
.phone-prefix { padding:0 14px; color:var(--cyan); font-weight:900; font-size:13px; }
.phone-row input { border:0; background:transparent; box-shadow:none; flex:1; }
.amount-shell { display:flex; align-items:center; border:1px solid var(--line); border-radius:11px; background:var(--panel-2); padding-left:12px; }
.amount-cur { color:var(--cyan); font-weight:900; font-size:14px; }
.amount-shell input { border:0; background:transparent; box-shadow:none; flex:1; }
.all-btn { margin:5px; border:0; border-radius:999px; background:var(--cyan); color:#071013; font-weight:900; font-size:12px; padding:8px 18px; cursor:pointer; }
.wd-available { display:block; margin-top:7px; color:var(--muted); font-size:10px; }
.wd-available b { color:var(--cyan); }
.wd-amount-title { margin-top:18px; }
.wd-help { text-align:center; color:var(--muted); font-size:11px; margin:14px 0 10px; }
.wd-support-link { text-decoration:underline; font-size:11px; }

/* ===== round-15 ===== */
.div-field label { color:#fff; }
.div-field input::placeholder, .phone-row input::placeholder, .amount-shell input::placeholder, .div-field textarea::placeholder { color:#8a8f98; }
.wd-amount-title { font-size:18px; font-weight:900; }

/* ===== round-16 ===== */
.div-field label { color:#8a8f98; }
.amount-cur { font-size:18px; }

/* round-17 */
#withdraw-form .primary { box-shadow:none; }
.wd-after { font-size:11px; line-height:1.55; }

/* ===== round-18: transactions per original ===== */
.tx-head { position:relative; text-align:center; margin:4px 0 14px; }
.tx-head .back { position:absolute; left:0; top:0; }
.tx-head h1 { margin:0; font-size:20px; font-weight:900; }
.tx-summary { display:flex; align-items:center; gap:10px; padding:14px; }
.tx-col { flex:1; display:flex; align-items:center; gap:10px; min-width:0; }
.tx-icon { width:40px; height:40px; border-radius:12px; display:grid; place-items:center; font-size:19px; flex:0 0 40px; }
.tx-icon.income { background:radial-gradient(circle at 35% 35%, rgba(37,244,238,.55), rgba(37,244,238,.10)); }
.tx-icon.expense { background:radial-gradient(circle at 35% 35%, rgba(254,44,85,.55), rgba(254,44,85,.10)); }
.tx-col small { display:block; color:#fff; font-weight:800; font-size:11px; margin-bottom:3px; }
.tx-val { font-size:17px; font-weight:900; }
.tx-val.cyan { color:var(--cyan); }
.tx-val.pink { color:var(--pink); }
.tx-div { width:1px; align-self:stretch; background:var(--line); }
.tx-empty-icon { width:64px; height:64px; border-radius:16px; margin:0 auto 12px; display:grid; place-items:center; font-size:30px; background:linear-gradient(135deg,var(--pink),var(--cyan)); }

/* ===== round-20: survey submitted page ===== */
.done-overlay { position:fixed; inset:0; z-index:95; background:rgba(0,0,0,.72); display:grid; place-items:center; padding:20px; }
.done-card { width:min(340px,100%); border:1px solid var(--line); border-radius:18px; padding:28px 20px 22px; text-align:center; background:radial-gradient(circle at 92% 6%, rgba(254,44,85,.55), transparent 30%), radial-gradient(circle at 4% 96%, rgba(37,244,238,.4), transparent 32%), var(--panel); }
.done-icon { width:56px; height:56px; border-radius:14px; background:#fff; color:#08080c; font-weight:1000; font-size:26px; display:grid; place-items:center; margin:0 auto 14px; box-shadow:-3px 0 var(--cyan), 3px 0 var(--pink); }
.done-card h2 { margin:0 0 8px; font-size:20px; }
.done-card p { color:var(--muted); margin:0 0 20px; font-size:12px; }
.done-actions { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.done-actions .secondary { border-radius:999px; font-weight:900; color:#fff; }
.done-draw { border-radius:999px; }


.gate-icon { font-size:20px; letter-spacing:1px; }

/* ===== round-31: login tweaks ===== */
#forgot { font-size:11px; }
.toast.dark.wrap { white-space:normal; width:fit-content; max-width:86%; line-height:1.6; border-radius:10px; padding:10px 18px; }

/* ===== round-32: centered translucent toast ===== */
.toast.dark { top:62%; bottom:auto; transform:translate(-50%,-50%); background:rgba(12,12,17,.78); }

/* ===== round-37: login glows ===== */
.auth-wrap { position:relative; }
.auth-glow { position:absolute; width:260px; height:260px; border-radius:50%; filter:blur(55px); opacity:.55; pointer-events:none; z-index:0; }
.auth-glow.pink { background:var(--pink); top:-40px; right:-80px; }
.auth-glow.teal { background:var(--cyan); bottom:-60px; left:-90px; opacity:.75; }
.auth-wrap .auth-title, .auth-wrap #auth-form, .auth-wrap .auth-back { position:relative; z-index:1; }

/* ===== round-42: register logo + back ===== */
.reg-logo { height:72px; width:auto; display:block; margin:0 auto; }
.reg-back { top:14px; left:max(12px, calc(50% - 175px)); }

/* ===== round-50: transactions per original ===== */
.pill-head h1 { font-size:18px; }
.pill-head p { font-size:11px; }
.tx-screen { position:relative; min-height:100vh; }
.tx-summary { position:relative; overflow:hidden; }
.tx-summary::before { content:""; position:absolute; left:-45px; top:-45px; width:150px; height:150px; border-radius:50%; background:var(--cyan); filter:blur(45px); opacity:.4; pointer-events:none; }
.tx-summary::after { content:""; position:absolute; right:-45px; top:-45px; width:150px; height:150px; border-radius:50%; background:var(--pink); filter:blur(45px); opacity:.45; pointer-events:none; }
.tx-month { display:inline-block; margin:14px 0 8px; padding:6px 14px; border-radius:999px; border:1px solid rgba(37,244,238,.4); background:rgba(37,244,238,.08); color:var(--cyan); font-weight:900; font-size:12px; }
#tx-list { background:transparent; border:0; padding:0; }
.tx-row { display:flex; align-items:center; gap:10px; background:var(--panel); border:1px solid var(--line); border-radius:14px; padding:12px; margin-bottom:10px; }
.txr-icon { width:40px; height:40px; border-radius:12px; display:grid; place-items:center; font-size:18px; flex:0 0 40px; }
.txr-icon.inc { background:#0f2a26; border:1px solid rgba(37,244,238,.25); }
.txr-icon.exp { background:#232329; border:1px solid var(--line); }
.txr-mid { flex:1; min-width:0; }
.txr-mid b { display:block; font-size:13px; margin-bottom:3px; }
.txr-mid small { color:var(--muted); font-size:11px; }
.txr-amt { font-weight:900; font-size:15px; }
.txr-amt.pos { color:var(--cyan); }
.txr-amt.neg { color:var(--pink); }

/* ===== round-51: support composer ===== */
.support-composer { display:flex; align-items:center; gap:6px; position:relative; }
.composer-icon { width:38px; height:38px; flex:0 0 38px; border-radius:12px; border:1px solid rgba(37,244,238,.35); background:rgba(37,244,238,.06); color:var(--cyan); display:grid; place-items:center; cursor:pointer; }
.composer-icon svg { width:20px; height:20px; }
.composer-input { flex:1; display:flex; align-items:center; background:var(--panel-2); border:1px solid var(--line); border-radius:999px; padding:4px 6px 4px 14px; }
.composer-input input { flex:1; border:0; background:transparent; box-shadow:none; padding:8px 0; font-size:13px; }
.composer-input button { width:30px; height:30px; border-radius:50%; border:0; background:#3a3a44; color:#c9cbe0; font-size:14px; cursor:pointer; }
.emoji-pop { position:absolute; bottom:48px; right:0; width:232px; max-width:calc(100% - 8px); background:var(--panel); border:1px solid var(--line); border-radius:14px; padding:10px; display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); gap:4px; z-index:30; box-shadow:0 10px 30px rgba(0,0,0,.5); overflow:hidden; }
.emoji-pop[hidden] { display:none; }
.emoji-pop button { border:0; background:transparent; font-size:18px; padding:4px 0; cursor:pointer; }
