:root {
  --bg: #12141a;
  --bg-2: #181b22;
  --text: #f3f1ea;
  --muted: #9a958a;
  --card: rgba(255, 255, 255, 0.05);
  --surface: rgba(255, 255, 255, 0.06);
  --gold-1: #e6c56a;
  --gold-2: #c5a059;
  --gold: linear-gradient(135deg, #e8d08a 0%, #c5a059 52%, #8c6a2e 100%);
  --navy: #0e1624;
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 14px 40px rgba(197, 160, 89, 0.18);
  --radius: 16px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --nav-h: calc(76px + var(--safe-bottom));
  --font: "Inter", "Open Sans", "Segoe UI", sans-serif;
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(900px 420px at 0% -10%, rgba(197, 160, 89, 0.16), transparent 55%),
    radial-gradient(700px 380px at 110% 8%, rgba(30, 58, 95, 0.45), transparent 50%),
    var(--bg);
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.07;
  background-image: var(--noise);
  mix-blend-mode: overlay;
  z-index: 0;
}

#app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  padding-bottom: var(--nav-h);
  position: relative;
  z-index: 1;
}

.screen {
  display: none;
  padding: 22px 20px 18px;
  animation: fadeUp 0.32s ease;
}
.screen.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes gleam {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
  100% { filter: brightness(1); }
}

.card, .glass {
  background: var(--card);
  border: 1px solid rgba(197, 160, 89, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -22px -20px 22px;
  padding: 22px 20px 20px;
  background:
    linear-gradient(180deg, rgba(197, 160, 89, 0.14), transparent 70%),
    linear-gradient(135deg, #161922, #0e1624);
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.brand { display: flex; align-items: center; gap: 12px; }

.avatar-ring {
  position: relative;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}
.avatar-ring svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}
.ring-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 2.4; }
.ring-fg {
  fill: none;
  stroke: url(#goldGrad);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 0 100;
  transition: stroke-dasharray 0.5s ease;
}
.logo {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  color: #1a1408;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 6px 16px rgba(197, 160, 89, 0.28);
}
.logo span { font-size: 11px; }

.brand h1 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.22em;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
}

.pills { display: flex; gap: 8px; }
.pill {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(197, 160, 89, 0.22);
  font-size: 13px;
  font-weight: 600;
}
.pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.22) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: gleamSlide 3.6s ease-in-out infinite;
}
@keyframes gleamSlide {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}
.pill .ico-svg { width: 16px; height: 16px; color: var(--gold-1); filter: drop-shadow(0 1px 2px rgba(230, 197, 106, 0.45)); position: relative; z-index: 1; }
.pill span { position: relative; z-index: 1; }
.pill.gold { color: var(--gold-1); background: linear-gradient(180deg, rgba(230,197,106,0.16), rgba(255,255,255,0.04)); }

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.checkin {
  padding: 18px 16px 16px;
  margin-bottom: 24px;
  background:
    linear-gradient(180deg, rgba(230, 197, 106, 0.08), transparent 42%),
    var(--card);
}
.checkin.done { opacity: 0.92; }
.checkin-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.checkin h3 { font-size: 16px; font-weight: 500; }
.checkin p { color: var(--muted); font-size: 12px; margin-top: 6px; line-height: 1.45; }
.week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.week-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.week-day span { font-size: 10px; color: var(--muted); letter-spacing: 0.04em; }
.coin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.25);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}
.coin::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.18);
}
.week-day.on .coin {
  background: var(--gold);
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
  border-color: transparent;
}
.week-day.on .coin::after { border-color: rgba(255,255,255,0.35); }
.week-day.today .coin {
  outline: 2px solid rgba(230, 197, 106, 0.7);
  outline-offset: 2px;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 14px;
}
.section-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}
.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(197, 160, 89, 0.22);
  background: rgba(255,255,255,0.04);
  color: var(--gold-1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.icon-btn:hover { transform: translateY(-1px); }
.icon-btn:active { transform: scale(0.96); }
.icon-btn svg { width: 16px; height: 16px; }

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600;
  color: #1a1408;
  background: var(--gold);
  padding: 11px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px rgba(197, 160, 89, 0.28);
}
.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn:active:not(:disabled) { transform: scale(0.97); }
.btn:disabled {
  background: rgba(255,255,255,0.08);
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  box-shadow: none;
  border: 1px solid rgba(197, 160, 89, 0.28);
}
.btn.ghost:hover:not(:disabled) { background: rgba(255,255,255,0.04); }
.btn.wide { width: 100%; padding: 15px; font-size: 15px; }

.habit-list, .task-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.habit {
  padding: 18px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
}
.habit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(230, 197, 106, 0.16), rgba(255,255,255,0.04));
  color: var(--gold-1);
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: transform 0.25s ease;
}
.habit:hover .habit-icon { transform: scale(1.06); animation: gleam 1.2s ease; }
.habit-icon .ico-svg { width: 24px; height: 24px; }
.habit h4 { font-size: 15px; font-weight: 500; }
.habit p { color: var(--muted); font-size: 12px; margin-top: 4px; line-height: 1.4; }
.habit-meta { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.reward { color: var(--gold-1); font-size: 12px; font-weight: 600; }
.streak-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--gold-1);
  font-weight: 600;
}
.streak-chip svg { width: 12px; height: 12px; }
.cooldown { font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; margin-top: 8px; }
.actions { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.actions .btn { min-width: 108px; }
.spots { font-size: 10px; color: var(--muted); }

.nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(480px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px 8px calc(12px + var(--safe-bottom));
  background: rgba(14, 16, 22, 0.92);
  border-top: 1px solid rgba(197, 160, 89, 0.14);
  backdrop-filter: blur(16px);
  z-index: 20;
}
.nav button {
  position: relative;
  background: none;
  border: 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 0 10px;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.2s ease;
}
.nav button.active { color: var(--gold-1); }
.nav button.active::after {
  content: "";
  position: absolute;
  left: 28%;
  right: 28%;
  bottom: 2px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
}
.nav button:active { transform: scale(0.96); }
.nav .ico-svg { width: 20px; height: 20px; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 14, 0.72);
  z-index: 40;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.overlay.show { display: flex; }
.wizard {
  width: min(480px, 100%);
  background: #161922;
  box-shadow: 0 -18px 50px rgba(0,0,0,0.4);
  border-radius: 24px 24px 0 0;
  padding: 28px 24px calc(28px + var(--safe-bottom));
  border-top: 1px solid rgba(197, 160, 89, 0.18);
}
.wizard h2 { font-size: 22px; font-weight: 400; }
.steps { display: flex; gap: 8px; margin-bottom: 24px; }
.steps span { flex: 1; height: 3px; border-radius: 99px; background: rgba(255,255,255,0.08); }
.steps span.on { background: var(--gold); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 24px; }
.choice {
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.choice:hover { transform: translateY(-1px); }
.choice.selected { outline: 1px solid rgba(197, 160, 89, 0.55); }
.choice strong { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.choice strong .ico-svg { width: 16px; height: 16px; color: var(--gold-1); }
.choice small { color: var(--muted); font-size: 12px; display: block; margin-top: 6px; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.stat { padding: 20px; position: relative; overflow: hidden; min-height: 108px; }
.stat label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
.stat .val { font-size: 26px; font-weight: 400; margin-top: 8px; }
.stat .hint { font-size: 11px; color: var(--muted); margin-top: 8px; line-height: 1.35; }
.stat-mark {
  position: absolute;
  right: -6px;
  bottom: -10px;
  width: 78px;
  height: 78px;
  opacity: 0.12;
  color: var(--gold-1);
}
.stat-mark svg { width: 100%; height: 100%; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.field input, .field select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.field input:focus { box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.45); }
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.switch {
  width: 44px; height: 26px; border-radius: 99px; background: #3a3d45;
  position: relative; cursor: pointer; border: 0;
}
.switch.on { background: var(--gold); }
.switch i {
  position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: #fff; transition: left 0.22s ease;
}
.switch.on i { left: 21px; }

.toast {
  position: fixed; left: 50%; top: 18px;
  transform: translateX(-50%) translateY(-16px);
  background: #1a1408; color: #f3f1ea;
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 12px 16px; border-radius: 12px; font-size: 13px;
  opacity: 0; pointer-events: none; z-index: 50; transition: 0.28s ease; max-width: 86%;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.err { background: #3a2222; }

.leader {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; margin-bottom: 10px;
}
.leader.gold {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.18), inset 0 0 0 1px rgba(232, 208, 138, 0.2);
}
.leader.silver {
  border-color: rgba(192, 197, 206, 0.55);
  box-shadow: 0 8px 20px rgba(180, 188, 200, 0.12);
}
.leader.bronze {
  border-color: rgba(183, 121, 78, 0.6);
  box-shadow: 0 8px 20px rgba(183, 121, 78, 0.14);
}
.leader.gold .rank { background: var(--gold); color: #1a1408; }
.leader.silver .rank { background: linear-gradient(180deg, #e8eaee, #9aa3ad); color: #1a1408; }
.leader.bronze .rank { background: linear-gradient(180deg, #d7a074, #8a4e28); color: #1a1408; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: #1a1408;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.rank {
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center; font-size: 12px; font-weight: 600; color: var(--gold-1);
}
.leader .meta { flex: 1; min-width: 0; }
.leader .meta strong { display: block; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.leader .meta span { color: var(--muted); font-size: 11px; }
.copy-box { display: flex; gap: 8px; margin: 8px 0 20px; }
.copy-box input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text); border-radius: 12px; padding: 14px 16px; font-size: 12px;
}
.board-prize { font-size: 12px; color: var(--gold-1); margin: -6px 0 12px; }

.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 37%, rgba(255,255,255,0.04) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--radius);
  height: 88px;
}
.empty {
  text-align: center;
  padding: 36px 18px;
}
.empty .habit-icon { margin: 0 auto 14px; }
.muted { color: var(--muted); font-size: 13px; line-height: 1.5; }
.id-chip { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--gold-1); margin: 0; }
.hidden { display: none !important; }
.ico-svg { display: block; flex-shrink: 0; }

.profile-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 18px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(197, 160, 89, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}
.profile-face {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #2a2418, #1a1408);
  color: var(--gold-1);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 2px rgba(232, 208, 138, 0.85), 0 8px 22px rgba(0,0,0,0.35);
}
.profile-face img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-copy { min-width: 0; flex: 1; }
.profile-copy .name {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.profile-ids {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 6px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1a1408;
  background: var(--gold);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.28);
}
.status-badge.novice {
  color: var(--gold-1);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: none;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.mini-stat {
  padding: 14px 8px 12px;
  text-align: center;
}
.mini-stat .val {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-1);
  letter-spacing: -0.02em;
}
.mini-stat label {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

.goals-card, .settings-card {
  padding: 16px;
  margin-bottom: 20px;
}
#screen-profile .section-title { margin: 4px 0 10px; }
.goals-card .field.last, .settings-card .field { margin-bottom: 12px; }
.goal-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  min-height: 48px;
}
.goal-input:focus-within {
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.28);
}
.goal-ico { width: 18px; height: 18px; color: var(--gold-1); flex-shrink: 0; }
.goal-input input {
  flex: 1;
  width: auto;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  outline: none;
  appearance: textfield;
  box-shadow: none;
}
.goal-input input:focus { box-shadow: none; }
.goal-input input::-webkit-outer-spin-button,
.goal-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.goal-unit {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.settings-card .toggle-row {
  padding: 14px 2px 2px;
  margin: 4px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(197, 160, 89, 0.12);
  box-shadow: none;
  border-radius: 0;
}
.save-btn {
  margin: 8px 0 12px;
  padding: 16px;
  letter-spacing: 0.04em;
}

.field-select > label {
  font-size: 11px; font-weight: 400; color: #9a958a;
  letter-spacing: 0.04em; text-align: left; margin: 0 0 6px 2px;
}
.dropdown { position: relative; font-family: inherit; }
.dropdown-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(197, 160, 89, 0.28); border-radius: 8px;
  padding: 12px 14px; color: #f3f1ea; font-family: inherit; font-size: 15px; font-weight: 500;
  letter-spacing: 0.02em; cursor: pointer; text-align: left;
}
.dropdown-trigger .chevron { width: 16px; height: 16px; color: #c5a059; transition: transform 0.2s ease; }
.dropdown.open .dropdown-trigger .chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 30;
  margin: 0; padding: 8px 0; list-style: none; background: #1c2028;
  border-radius: 8px; box-shadow: 0 18px 48px rgba(0,0,0,0.4); border: 1px solid rgba(197, 160, 89, 0.16);
  opacity: 0; visibility: hidden; transform: translateY(-4px); pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.dropdown-menu li {
  position: relative; padding: 14px 18px 14px 20px; font-size: 15px; font-weight: 500;
  color: #f3f1ea; cursor: pointer;
}
.dropdown-menu li::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: transparent;
}
.dropdown-menu li:hover, .dropdown-menu li.is-selected { background: rgba(255,255,255,0.06); }
.dropdown-menu li:hover::before, .dropdown-menu li.is-selected::before { background: #c5a059; }
