/* 鱼乐厂桌游吧 — UI 稿 v5 · 独立视觉（墨绿 slate + 薄荷强调） */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e1218;
  --bg-elevated: #141a22;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-raised: rgba(255, 255, 255, 0.08);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --accent: #6ecfb0;
  --accent-dim: #4a9a82;
  --accent-soft: rgba(110, 207, 176, 0.12);
  --text: #e4e8ef;
  --text-muted: #7a8494;
  --text-dim: #505868;
  --warn: #e8a87c;
  --phone-w: 375px;
  --phone-h: 812px;
  --nav-h: 52px;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: "PingFang SC", "Helvetica Neue", sans-serif;
  background: #0a0c10;
  color: var(--text);
  padding: 40px 20px 60px;
  -webkit-font-smoothing: antialiased;
}

.showcase-header { text-align: center; margin-bottom: 40px; }
.showcase-header h1 { font-size: 22px; font-weight: 600; letter-spacing: 3px; color: var(--accent); }
.showcase-header p { margin-top: 8px; color: var(--text-dim); font-size: 13px; font-weight: 300; }
.showcase-nav { margin-top: 16px; }
.admin-entry-link {
  display: inline-flex; padding: 8px 18px; border-radius: 8px;
  border: 1px solid var(--border-strong); color: var(--accent);
  font-size: 13px; text-decoration: none;
}
.design-notes { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.design-notes span {
  font-size: 11px; padding: 4px 12px; border-radius: 6px;
  border: 1px solid var(--border); color: var(--text-dim);
}
.ui-version-tag {
  color: var(--accent) !important;
  border-color: rgba(110, 207, 176, 0.35) !important;
  font-weight: 600;
}

.phone-version {
  position: absolute; bottom: calc(var(--nav-h) + 6px); right: 10px;
  font-size: 9px; color: var(--accent); opacity: 0.55; z-index: 5;
  pointer-events: none;
}

.quick-item-icon {
  display: flex; align-items: center; justify-content: center;
}
.menu-row-icon,
.hero-banner-icon { display: flex; align-items: center; justify-content: center; }
.phones-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px 28px; max-width: 1680px; margin: 0 auto; }
.phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.phone-label { font-size: 13px; color: var(--text-dim); }
.phone-label span { color: var(--accent); margin-right: 4px; }
.showcase-footer { max-width: 560px; margin: 44px auto 0; text-align: center; font-size: 12px; color: var(--text-dim); line-height: 1.7; }

/* Phone frame */
.phone {
  width: calc(var(--phone-w) + 20px); padding: 10px; border-radius: 44px;
  background: #2a2a2e;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.phone-screen {
  width: var(--phone-w); height: var(--phone-h); border-radius: 36px;
  overflow: hidden; background: var(--bg);
  display: flex; flex-direction: column; position: relative;
}
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 32px; background: #000; border-radius: 18px; z-index: 100;
}

/* MP chrome */
.mp-header {
  height: 88px; padding-top: 44px; flex-shrink: 0; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); border-bottom: 1px solid var(--border);
}
.mp-header-title { font-size: 15px; font-weight: 500; color: var(--text); letter-spacing: 1px; }
.page-home .mp-header-title { font-weight: 600; }

.mp-capsule {
  position: absolute; right: 14px; top: 50px;
  display: flex; align-items: center;
  border: 1px solid var(--border-strong); border-radius: 16px;
  padding: 4px 10px; background: var(--surface);
}
.mp-capsule-dot { width: 3px; height: 3px; background: var(--text-muted); border-radius: 50%; margin: 0 2px; }
.mp-capsule-divider { width: 1px; height: 14px; background: var(--border-strong); margin: 0 7px; }
.mp-capsule-circle { width: 16px; height: 16px; border: 1.5px solid var(--text-muted); border-radius: 50%; }

.page-body {
  flex: 1 1 auto; min-height: 0; overflow-x: hidden; overflow-y: auto;
  scrollbar-width: none; background: var(--bg);
}
.page-body::-webkit-scrollbar { display: none; }

/* Bottom nav — flat dark, mint active dot */
.bottom-nav {
  flex-shrink: 0; height: var(--nav-h);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  display: flex; align-items: stretch; justify-content: space-around;
  padding-bottom: 4px;
}
.nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; font-size: 10px; color: var(--text-dim); position: relative;
}
.nav-item .line-icon { color: var(--text-dim); opacity: 0.7; }
.nav-item.active { color: var(--accent); }
.nav-item.active .line-icon { color: var(--accent); opacity: 1; }
.nav-item.active::after {
  content: ""; position: absolute; bottom: 4px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}

.line-icon { display: block; flex-shrink: 0; }

/* ═══ HOME ═══ */
.page-home .page-body { padding: 16px 16px 12px; }

.top-brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.top-brand-logo {
  width: 48px; height: 48px; border-radius: 12px; object-fit: cover;
  border: 1px solid var(--border-strong);
}
.top-brand-text { flex: 1; }
.top-brand-name { font-size: 18px; font-weight: 600; color: var(--text); letter-spacing: 1px; }
.top-brand-tagline { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

.member-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  margin-bottom: 14px;
}
.member-bar-left { display: flex; align-items: center; gap: 10px; }
.member-bar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.member-bar-name { font-size: 14px; font-weight: 500; }
.member-bar-id { font-size: 11px; color: var(--text-dim); margin-top: 1px; }
.member-bar-points { text-align: right; }
.member-bar-num { font-size: 22px; font-weight: 600; color: var(--accent); line-height: 1; }
.member-bar-unit { font-size: 10px; color: var(--text-dim); margin-top: 2px; }

.quick-row {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px;
  margin-bottom: 18px; scrollbar-width: none;
}
.quick-row::-webkit-scrollbar { display: none; }
.quick-item {
  flex-shrink: 0; width: 72px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.quick-item-icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.quick-item-label { font-size: 11px; color: var(--text-muted); text-align: center; }

.section-title {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 1px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.section-title::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}

.notice-inline-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 5px; flex-shrink: 0; }

/* ── 首页下半：列表 + 横幅 + 2×2 ── */
.home-lower { margin-top: 4px; }

.menu-list { display: flex; flex-direction: column; gap: 8px; }
.menu-list--tail { margin-top: 10px; }

.hero-banner {
  display: flex; align-items: center; gap: 14px;
  margin-top: 0; padding: 16px;
  border-radius: var(--radius);
  background: var(--surface-raised);
  border: 1px solid var(--border-strong);
}
.hero-banner-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(110, 207, 176, 0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.hero-banner-body { flex: 1; min-width: 0; }
.hero-banner-title { font-size: 15px; font-weight: 600; }
.hero-banner-desc { font-size: 11px; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
.hero-banner-link {
  flex-shrink: 0; font-size: 11px; color: var(--text-dim);
  display: flex; align-items: center; gap: 2px; white-space: nowrap;
}

.account-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 10px;
}
.account-cell {
  padding: 16px 14px; border-radius: var(--radius);
  background: var(--surface-raised);
  border: 1px solid var(--border-strong);
  min-height: 82px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.account-cell-value {
  font-size: 22px; font-weight: 600; color: var(--text);
  display: flex; align-items: baseline; gap: 2px;
}
.account-cell-value.placeholder { color: var(--text-dim); font-size: 20px; }
.account-cell-unit { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.account-cell-label {
  font-size: 12px; color: var(--text-muted); margin-top: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.account-cell-label .line-icon { color: var(--text-dim); opacity: 0.6; }

.promo-compact {
  margin-top: 12px; padding: 12px 14px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
}
.promo-compact-title { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.promo-compact-desc { font-size: 11px; color: var(--text-dim); margin-top: 4px; line-height: 1.5; }

.home-lower .notice-inline { margin-top: 12px; }

.home-lower .notice-inline { margin-top: 12px; }

.more-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 4px;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.more-scroll::-webkit-scrollbar { display: none; }
.more-scroll-inner {
  display: inline-flex;
  gap: 8px;
}
.more-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
  padding: 10px 6px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.more-chip-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(110, 207, 176, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.more-chip-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
  line-height: 1.3;
}

.menu-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
}
.menu-row-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-soft); border: 1px solid rgba(110,207,176,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.menu-row-body { flex: 1; min-width: 0; }
.menu-row-title { font-size: 14px; font-weight: 500; }
.menu-row-desc { font-size: 11px; color: var(--text-dim); margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.menu-row-arrow { color: var(--text-dim); flex-shrink: 0; }
.menu-row-tag {
  font-size: 9px; padding: 2px 7px; border-radius: 4px;
  background: rgba(232,168,124,0.15); color: var(--warn);
  margin-left: 6px; font-weight: 600;
}

.notice-inline {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 10px 12px; border-radius: 8px;
  background: rgba(110,207,176,0.06); border: 1px solid rgba(110,207,176,0.15);
  font-size: 11px; color: var(--text-dim); line-height: 1.5;
}

/* ═══ RANKING · 扑克领奖台 ═══ */
.page-ranking .page-body--ranking { padding: 0; }

.rank-hero {
  position: relative;
  padding: 12px 16px 24px;
  overflow: hidden;
}

.rank-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-chip {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px dashed rgba(110, 207, 176, 0.15);
  box-shadow: inset 0 0 0 2px rgba(110, 207, 176, 0.08);
}
.bg-chip--1 { top: 30px; left: 12px; transform: rotate(-15deg); }
.bg-chip--2 { top: 70px; right: 16px; width: 36px; height: 36px; opacity: 0.7; }
.bg-chip--3 { bottom: 40px; left: 40%; opacity: 0.5; }

.bg-tavern-glyph {
  position: absolute; right: 24px; top: 50px;
  font-size: 60px; color: rgba(110, 207, 176, 0.04); line-height: 1;
}

.rank-header {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 6px;
}

.rank-header-deco {
  display: flex; align-items: center; gap: 6px;
  flex: 1; max-width: 80px;
}

.rank-header-deco--reverse { flex-direction: row-reverse; }

.rank-header-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.rank-header-deco--reverse .rank-header-line {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.rank-header-diamond {
  width: 6px; height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(110, 207, 176, 0.45);
}

.rank-header-title {
  font-size: 20px; font-weight: 600;
  color: var(--accent); letter-spacing: 3px;
  flex-shrink: 0; margin: 0;
}

.rank-period {
  display: block; text-align: center;
  font-size: 11px; color: var(--text-dim);
  margin-bottom: 14px; position: relative; z-index: 1;
}

.page-ranking .tab-bar {
  display: flex; margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}

.page-ranking .tab-item {
  flex: 1; text-align: center; padding: 9px 0;
  font-size: 13px; color: var(--text-dim);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}

.page-ranking .tab-item.active {
  color: var(--accent); border-bottom-color: var(--accent); font-weight: 500;
}

.week-pills {
  display: flex; gap: 6px; margin-bottom: 16px;
  position: relative; z-index: 1;
  overflow-x: auto; scrollbar-width: none;
}

.week-pills::-webkit-scrollbar { display: none; }

.week-pill {
  flex-shrink: 0; padding: 7px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  text-align: center;
}

.week-pill.active {
  border-color: rgba(110,207,176,0.35);
  background: var(--accent-soft);
}

.week-pill-label { display: block; font-size: 12px; font-weight: 600; color: var(--text); }
.week-pill.active .week-pill-label { color: var(--accent); }
.week-pill-range { display: block; font-size: 10px; color: var(--text-dim); margin-top: 2px; }

/* 德州桌 · 酒馆 TOP3 */
.poker-arena {
  position: relative; z-index: 1;
  padding: 8px 4px 6px;
  min-height: 190px;
}

.poker-table {
  position: absolute; left: 8px; right: 8px; bottom: 24px;
  height: 110px; z-index: 0;
}

.poker-table-rail {
  position: absolute; inset: 0;
  border-radius: 50% / 42%;
  background: linear-gradient(180deg, #5c4636 0%, #3d2e24 50%, #2a211a 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.poker-table-felt {
  position: absolute; inset: 5px;
  border-radius: 50% / 40%;
  background: radial-gradient(ellipse at 50% 40%, #1f4a3c 0%, #142e26 55%, #0f221c 100%);
  border: 1px solid rgba(110, 207, 176, 0.18);
  box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.35);
  display: flex; align-items: center; justify-content: center;
}

.poker-pot {
  text-align: center; padding: 6px 14px; border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(110, 207, 176, 0.25);
  box-shadow: 0 0 10px rgba(110, 207, 176, 0.12);
}

.poker-pot-label {
  display: block; font-size: 11px; font-weight: 800;
  color: var(--accent); letter-spacing: 2px;
}

.poker-pot-sub {
  display: block; font-size: 9px; color: var(--text-dim); margin-top: 1px;
}

.podium-row {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 6px; padding-bottom: 4px;
}

.podium-seat {
  flex: 1; max-width: 110px;
  display: flex; flex-direction: column; align-items: center;
}

.podium-seat.rank-1 {
  --chip-top: #6ecfb0; --chip-mid: #4a9a82;
  --chip-edge: rgba(110, 207, 176, 0.6); --chip-glow: rgba(110, 207, 176, 0.35);
  --avatar-ring: rgba(110, 207, 176, 0.55);
  transform: translateY(-12px);
}
.podium-seat.rank-2 {
  --chip-top: #d4dce8; --chip-mid: #9aa8bc;
  --chip-edge: rgba(184, 196, 212, 0.5); --chip-glow: rgba(184, 196, 212, 0.2);
  --avatar-ring: rgba(184, 196, 212, 0.45);
}
.podium-seat.rank-3 {
  --chip-top: #e8a87c; --chip-mid: #c48860;
  --chip-edge: rgba(232, 168, 124, 0.5); --chip-glow: rgba(232, 168, 124, 0.22);
  --avatar-ring: rgba(232, 168, 124, 0.45);
}

.seat-top {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 4px; min-height: 44px; margin-bottom: 4px;
}

.dealer-btn {
  width: 20px; height: 20px; border-radius: 50%;
  background: #f0f2f5; color: #1a1a1a;
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  flex-shrink: 0; margin-bottom: 8px;
}

.chip-stack { position: relative; width: 36px; height: 40px; }
.podium-seat.rank-1 .chip-stack { width: 40px; height: 46px; }

.chip-layer {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--chip-edge); box-sizing: border-box;
}
.podium-seat.rank-1 .chip-layer { width: 36px; height: 36px; }

.chip-layer--3 {
  bottom: 0;
  background: linear-gradient(145deg, var(--chip-mid), #1a2420);
  opacity: 0.5;
}
.chip-layer--2 {
  bottom: 5px;
  background: linear-gradient(145deg, var(--chip-mid), #243028);
  opacity: 0.75;
}
.chip-layer--1 {
  bottom: 10px;
  background: linear-gradient(145deg, var(--chip-top), var(--chip-mid));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px var(--chip-glow);
}

.chip-rank { font-size: 14px; font-weight: 800; color: #0e1218; line-height: 1; }
.podium-seat.rank-1 .chip-rank { font-size: 16px; }

.seat-avatar-wrap {
  padding: 2px; border-radius: 50%;
  border: 2px solid var(--avatar-ring);
  box-shadow: 0 0 12px var(--chip-glow);
  background: var(--bg);
}

.seat-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; color: var(--accent);
}
.podium-seat.rank-1 .seat-avatar { width: 50px; height: 50px; }
.seat-avatar img { width: 100%; height: 100%; object-fit: cover; }

.seat-name {
  margin-top: 7px; font-size: 13px; font-weight: 500; color: var(--text);
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: center;
}

.seat-score {
  margin-top: 3px; font-size: 11px; color: var(--chip-top); text-align: center;
}

/* List panel */
.list-panel {
  margin-top: -8px;
  background: var(--bg-elevated);
  border-radius: 16px 16px 0 0;
  border-top: 1px solid var(--border-strong);
  position: relative; z-index: 2;
}

.list-panel-inner { padding: 8px 16px 0; }

.rank-row {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}

.rank-row:last-child { border-bottom: none; }

.rank-row-num {
  width: 24px; font-size: 16px; font-weight: 700;
  color: var(--accent); text-align: center; flex-shrink: 0;
}

.rank-row-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  overflow: hidden; background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px; font-weight: 600; color: var(--text-muted);
}

.rank-row-name {
  flex: 1; min-width: 0; font-size: 14px; font-weight: 500; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.rank-row-right {
  flex-shrink: 0; text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
}

.rank-row-score { font-size: 13px; font-weight: 600; color: var(--accent); }

.rank-row-style {
  font-size: 10px; color: var(--text-dim);
  padding: 1px 6px; border: 1px solid var(--border); border-radius: 4px;
}

/* ═══ MINE ═══ */
.page-mine .page-body { padding: 16px; }
.page-mine--logged .page-body { padding: 0 0 12px; }

.login-block { text-align: center; padding: 28px 0 20px; }
.login-block-logo { width: 56px; height: 56px; border-radius: 14px; object-fit: cover; margin-bottom: 14px; }
.login-block-title { font-size: 17px; font-weight: 600; }
.login-block-desc { font-size: 12px; color: var(--text-dim); margin-top: 6px; }
.login-outline-btn {
  display: block; width: 100%; margin-top: 20px;
  padding: 13px; border-radius: var(--radius);
  background: transparent; border: 1px solid var(--accent);
  color: var(--accent); font-size: 14px; font-weight: 500;
}

.menu-list--mine { margin-top: 8px; }

.profile-header {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 16px; border-bottom: 1px solid var(--border);
}
.profile-header-avatar {
  width: 52px; height: 52px; border-radius: 14px; object-fit: cover;
  border: 1px solid var(--border-strong);
}
.profile-header-name { font-size: 17px; font-weight: 600; }
.profile-header-tip { font-size: 11px; color: var(--text-dim); margin-top: 4px; }

.account-list { padding: 12px 16px; display: flex; flex-direction: column; gap: 2px; }
.account-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.account-row:last-child { border-bottom: none; }
.account-row-icon { color: var(--accent); flex-shrink: 0; }
.account-row-body { flex: 1; }
.account-row-label { font-size: 14px; font-weight: 500; }
.account-row-value { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.account-row-arrow { color: var(--text-dim); }

.admin-row {
  margin: 8px 16px 0; padding: 14px;
  border-radius: var(--radius); background: var(--accent-soft);
  border: 1px solid rgba(110,207,176,0.2);
  display: flex; align-items: center; gap: 12px;
}
.admin-row .line-icon { color: var(--accent); }
.admin-row-title { font-size: 14px; font-weight: 500; }
.admin-row-desc { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

.logout-outline {
  display: block; margin: 16px 16px 0; padding: 12px;
  border-radius: var(--radius); background: transparent;
  border: 1px solid var(--border); color: var(--text-dim); font-size: 13px;
}

@media (max-width: 420px) {
  body { padding: 20px 10px; }
  .phone { transform: scale(0.86); transform-origin: top center; }
  .phone-wrap { margin-bottom: -50px; }
}
