:root {
  --bg: #050403;
  --bg2: #0d0907;
  --panel: rgba(18, 15, 13, .94);
  --panel2: rgba(31, 24, 18, .96);
  --line: rgba(255, 156, 26, .20);
  --line2: rgba(255, 205, 59, .34);
  --text: #fff8ef;
  --muted: #b7aaa0;
  --brand: #ff7a18;
  --brand2: #ffd21f;
  --hot: #ff3b12;
  --danger: #ef4444;
  --warn: #f59e0b;
  --ok: #22c55e;
  --shadow: 0 22px 70px rgba(0, 0, 0, .45);
  --radius: 22px;
}
* { box-sizing: border-box; }
html {
  background: #000;
  touch-action: manipulation;
}
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -18%, rgba(255, 122, 24, .32), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 210, 31, .12), transparent 28%),
    linear-gradient(180deg, #080604 0%, #030303 54%, #000 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 70%);
}
button, input, textarea, select { font: inherit; }
button {
  min-height: 44px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--hot), var(--brand) 48%, var(--brand2));
  color: #120704;
  font-weight: 950;
  padding: 11px 16px;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 14px 34px rgba(255, 90, 18, .20);
  transition: transform .08s ease, opacity .08s ease, filter .08s ease, border-color .08s ease;
}
button:active:not(:disabled) { transform: scale(.985); filter: brightness(1.08); }
button:disabled { opacity: .48; cursor: not-allowed; box-shadow: none; }
button.secondary {
  background: rgba(23, 19, 16, .92);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
button.danger { background: linear-gradient(135deg, #b91c1c, #ef4444); color: #fff; }
button.compact { min-height: 38px; padding: 8px 13px; border-radius: 14px; }
button.icon-btn { width: auto; min-width: 58px; }
input, textarea, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 5, 4, .88);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
input:focus, textarea:focus {
  border-color: var(--brand2);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, .15);
}
input[type=file] { padding: 10px; }
textarea { min-height: 92px; resize: vertical; }
label { display: grid; gap: 7px; color: var(--muted); font-weight: 850; font-size: 13px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
h1 { font-size: clamp(24px, 6vw, 34px); line-height: 1.05; }
h2 { font-size: 21px; }
h3 { font-size: 16px; }
.muted { color: var(--muted); font-size: 14px; overflow-wrap: anywhere; }
.auth {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
}
.auth-card {
  width: min(430px, 100%);
  background: linear-gradient(180deg, rgba(24,20,18,.96), rgba(8,7,6,.98));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.025) inset;
}
.auth-brand { display: flex; gap: 13px; align-items: center; }
.auth-support {
  display: inline-flex;
  justify-content: center;
  color: var(--brand2);
  font-size: 14px;
  font-weight: 900;
}
.brand-title {
  font-size: 28px;
  font-weight: 950;
  background: linear-gradient(135deg, #fff, var(--brand2) 42%, var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo, .top-logo, .profile-logo {
  object-fit: cover;
  background: #050403;
  border: 1px solid rgba(255, 185, 36, .22);
  box-shadow: 0 0 28px rgba(255, 122, 24, .22);
}
.logo { width: 58px; height: 58px; border-radius: 18px; }
.app-shell { min-height: 100vh; min-height: 100dvh; }
.main {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 16px calc(114px + env(safe-area-inset-bottom));
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.title-block { display: flex; align-items: center; gap: 12px; min-width: 0; }
.top-logo { width: 50px; height: 50px; border-radius: 16px; flex: 0 0 auto; }
.card, .item, .metric, .hero-card, .earn-card, .bottom-nav {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(0,0,0,.28), 0 1px 0 rgba(255,255,255,.04) inset;
  backdrop-filter: blur(18px);
}
.card { border-radius: var(--radius); padding: 16px; }
.stack { display: grid; gap: 13px; }
.grid { display: grid; gap: 12px; }
.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.notice {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 122, 24, .07);
  margin-bottom: 12px;
}
.notice.error { border-color: rgba(239,68,68,.72); color: #fecaca; background: rgba(127,29,29,.22); }
.notice.ok { border-color: rgba(34,197,94,.48); color: #bbf7d0; background: rgba(20,83,45,.22); }
.hero-card {
  min-height: 156px;
  border-radius: 28px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 8px;
  background:
    linear-gradient(135deg, rgba(255, 59, 18, .96), rgba(255, 122, 24, .94) 52%, rgba(255, 210, 31, .96)),
    #1d1008;
  color: #160804;
  overflow: hidden;
  position: relative;
  border-color: rgba(255, 218, 64, .55);
}
.hero-card:after {
  content: "";
  position: absolute;
  right: -34px;
  top: -42px;
  width: 162px;
  height: 162px;
  border-radius: 999px;
  border: 28px solid rgba(255,255,255,.20);
}
.hero-card p { font-weight: 900; opacity: .82; }
.hero-card h2 { font-size: 34px; line-height: 1.05; color: #080302; }
.hero-card span { font-weight: 850; opacity: .82; }
.admin-hero {
  background:
    linear-gradient(135deg, rgba(20,18,16,.96), rgba(54,28,12,.92)),
    #0b0908;
  color: var(--text);
}
.admin-hero h2 { color: var(--brand2); }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}
.metric {
  border-radius: 20px;
  padding: 15px 13px;
  display: grid;
  gap: 6px;
  min-height: 84px;
}
.metric span { color: var(--muted); font-size: 12px; font-weight: 950; }
.metric strong { font-size: 22px; overflow-wrap: anywhere; color: var(--brand2); }
.info-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0 20px;
}
.info-strip div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(16, 12, 10, .88);
}
.info-strip b, .earn-card span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.info-strip strong { color: var(--brand2); font-size: 22px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 14px 0 12px;
}
.section-head.inline { margin: 0; }
.list, .updates-list { display: grid; gap: 11px; }
.item {
  border-radius: 20px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.item p { color: var(--muted); margin-top: 5px; overflow-wrap: anywhere; }
.item.api-error { border-color: rgba(239,68,68,.58); }
.action-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.wide-action { width: 100%; margin-top: 4px; }
.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 122, 24, .12);
  color: var(--text);
  border: 1px solid rgba(255, 122, 24, .22);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 950;
}
.pill.ok { background: rgba(6,78,59,.72); color: #bbf7d0; }
.pill.warn { background: rgba(120,53,15,.72); color: #fed7aa; }
.pill.danger { background: rgba(127,29,29,.72); color: #fecaca; }
.empty {
  border: 1px dashed var(--line);
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
  background: rgba(18, 15, 13, .55);
}
.empty.tight { padding: 12px; }
.status-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.status-tabs button {
  background: rgba(23, 19, 16, .92);
  color: var(--muted);
  border: 1px solid var(--line);
  min-height: 38px;
  padding: 7px 8px;
  box-shadow: none;
}
.status-tabs button.active {
  color: #130704;
  border-color: transparent;
  background: linear-gradient(135deg, var(--hot), var(--brand), var(--brand2));
}
.history-search { margin-bottom: 12px; }
.order-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 8px; }
.order-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(11, 9, 8, .82);
}
.order-line span { color: var(--muted); }
.order-line small { grid-column: 1 / -1; color: var(--muted); }
.profile-head {
  display: flex;
  gap: 16px;
  align-items: center;
}
.profile-logo {
  width: 94px;
  height: 94px;
  border-radius: 24px;
}
.profile-head h2 { font-size: 26px; }
.profile-head span { color: var(--brand2); font-weight: 950; }
.earn-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  padding: 18px;
  margin: 13px 0;
  background: linear-gradient(135deg, rgba(31,24,18,.96), rgba(112,45,10,.88));
}
.earn-card div + div { border-left: 1px solid rgba(255,255,255,.16); padding-left: 18px; }
.earn-card b { font-size: 27px; color: var(--brand2); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 10px;
  margin-bottom: 13px;
}
.service-grid button {
  min-height: 84px;
  display: grid;
  place-items: center;
  gap: 6px;
  background: rgba(18, 15, 13, .88);
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 12px;
  box-shadow: none;
}
.service-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hot), var(--brand2));
  color: #130704;
}
.service-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-weight: 850;
}
.service-row span { color: var(--brand2); }
.token-preview {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  color: var(--brand2) !important;
  overflow-wrap: anywhere;
}
.update-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px;
  background: rgba(11, 9, 8, .82);
}
.update-item img { max-width: 100%; border-radius: 12px; margin-bottom: 8px; }
.update-item small { color: var(--muted); display: block; margin-top: 5px; }
.table-tools {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto auto;
  gap: 8px;
  margin-bottom: 12px;
}
.api-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.api-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.api-switch label { display: inline-block; position: relative; width: 56px; height: 32px; }
.api-switch input { display: none; }
.api-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #7f1d1d;
  border: 1px solid rgba(255,255,255,.16);
}
.api-switch span:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 4px;
  transition: .16s ease;
}
.api-switch input:checked + span { background: #047857; }
.api-switch input:checked + span:after { transform: translateX(23px); }
.checkline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.checkline input { width: 18px; min-height: 18px; accent-color: var(--brand); }
.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.76);
  padding: max(14px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  z-index: 40;
}
.modal { width: min(720px, 100%); max-height: 92vh; overflow: auto; }
.modal-card { border-radius: 24px; }
.modal-title { display: flex; gap: 12px; align-items: flex-start; }
.bulk-row {
  background: rgba(10, 8, 7, .84);
  box-shadow: none;
}
.update-preview {
  max-width: 100%;
  max-height: 220px;
  border-radius: 14px;
  border: 1px solid var(--line);
  object-fit: contain;
  background: #050403;
}
.bottom-nav {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 25;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
  gap: 4px;
  border-radius: 26px;
  padding: 8px;
  background: rgba(10, 8, 7, .92);
}
.bottom-nav button {
  min-height: 58px;
  padding: 6px 4px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  display: grid;
  gap: 3px;
  place-items: center;
  box-shadow: none;
}
.bottom-nav button span {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 11px;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 950;
}
.bottom-nav button small { font-size: 10px; font-weight: 850; }
.bottom-nav button.active {
  background: rgba(255, 122, 24, .10);
  color: var(--text);
  border-color: var(--line);
}
.bottom-nav button.plus {
  transform: translateY(-20px);
  min-height: 74px;
  border-radius: 999px;
  background: transparent;
}
.bottom-nav button.plus span {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 8px solid #090706;
  font-size: 34px;
  color: #130704;
  background: linear-gradient(135deg, var(--hot), var(--brand), var(--brand2));
  box-shadow: 0 18px 40px rgba(0,0,0,.48), 0 0 34px rgba(255, 122, 24, .28);
}
.bottom-nav button.plus small { display: none; }
@media (min-width: 900px) {
  .bottom-nav { width: min(760px, calc(100% - 24px)); margin: 0 auto; }
}
@media (max-width: 700px) {
  body { background: linear-gradient(180deg, #080604, #000); }
  .main { padding: max(18px, env(safe-area-inset-top)) 12px calc(112px + env(safe-area-inset-bottom)); }
  .topbar { align-items: flex-start; }
  .top-logo { width: 44px; height: 44px; }
  .topbar .compact { min-width: 78px; }
  .quick-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .metric { min-height: 76px; padding: 12px 10px; }
  .metric strong { font-size: 18px; }
  .hero-card { min-height: 142px; padding: 20px; }
  .hero-card h2 { font-size: 30px; }
  .item { grid-template-columns: 1fr; }
  .action-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .action-row button { width: 100%; }
  .two { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(auto-fit, minmax(64px, 1fr)); gap: 7px; }
  .service-grid button { min-height: 76px; padding: 8px 4px; }
  .api-actions { grid-template-columns: 1fr 1fr 1fr; }
  .table-tools { grid-template-columns: 1fr; }
  .status-tabs button { font-size: 13px; }
  input, textarea, select { font-size: 16px; }
}
@media (max-width: 380px) {
  .quick-grid { grid-template-columns: 1fr; }
  .info-strip, .earn-card { grid-template-columns: 1fr; }
  .earn-card div + div {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
    padding: 14px 0 0;
    margin-top: 12px;
  }
  .bottom-nav button small { font-size: 10px; }
}

/* PrimePay visual system */
:root {
  --bg: #050208;
  --bg2: #0b0612;
  --panel: rgba(16, 10, 24, .88);
  --panel2: rgba(25, 14, 39, .94);
  --line: rgba(190, 128, 255, .17);
  --line2: rgba(217, 177, 255, .35);
  --text: #faf7ff;
  --muted: #a99db7;
  --brand: #8b35f5;
  --brand2: #d7a0ff;
  --hot: #5c17cc;
  --shadow: 0 24px 80px rgba(0, 0, 0, .52);
  --radius: 18px;
}
html { background: #030105; }
body {
  background:
    radial-gradient(ellipse at 12% -10%, rgba(139, 53, 245, .28), transparent 37%),
    radial-gradient(ellipse at 92% 18%, rgba(91, 23, 204, .16), transparent 30%),
    linear-gradient(155deg, #08030e 0%, #030105 58%, #090310 100%);
}
body:before {
  background:
    linear-gradient(rgba(197, 137, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 137, 255, .022) 1px, transparent 1px);
  background-size: 52px 52px;
}
button {
  border-radius: 12px;
  background: linear-gradient(135deg, #6b1cdb, #a64dff 62%, #d7a0ff);
  color: #fff;
  box-shadow: 0 12px 30px rgba(126, 40, 225, .24);
}
button.secondary {
  background: rgba(18, 10, 28, .8);
  border-color: var(--line);
}
input, textarea, select {
  border-radius: 12px;
  background: rgba(5, 2, 9, .8);
}
input:focus, textarea:focus {
  border-color: #a64dff;
  box-shadow: 0 0 0 3px rgba(139, 53, 245, .15);
}
.auth { position: relative; overflow: hidden; }
.auth:before {
  content: "PRIME";
  position: fixed;
  left: -1.5vw;
  bottom: -8vh;
  color: rgba(174, 105, 255, .035);
  font-size: clamp(120px, 26vw, 380px);
  font-weight: 1000;
  letter-spacing: -.09em;
  pointer-events: none;
}
.auth-card {
  width: min(480px, 100%);
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(155deg, rgba(24, 13, 38, .96), rgba(6, 3, 10, .98));
  border-color: rgba(199, 142, 255, .24);
}
.auth-brand { display: grid; justify-items: center; text-align: center; gap: 12px; margin-bottom: 10px; }
.brand-title {
  font-size: 32px;
  letter-spacing: -.04em;
  background: linear-gradient(120deg, #fff 15%, #dcb2ff 55%, #9341f3);
  -webkit-background-clip: text;
  background-clip: text;
}
.logo {
  width: 112px;
  height: 112px;
  border-radius: 22px;
}
.logo, .top-logo, .profile-logo {
  background: #020104;
  border-color: rgba(190, 128, 255, .24);
  box-shadow: 0 0 36px rgba(139, 53, 245, .2);
}
.auth-support { color: var(--muted); font-weight: 700; }
.main { width: min(1120px, 100%); padding-top: 28px; }
.topbar {
  padding: 4px 2px 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.top-logo { width: 58px; height: 58px; border-radius: 14px; }
.topbar h1 { letter-spacing: -.04em; }
.card, .item, .metric, .hero-card, .earn-card, .bottom-nav {
  border-color: var(--line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .32), 0 1px 0 rgba(255,255,255,.035) inset;
}
.hero-card {
  min-height: 190px;
  border-radius: 22px;
  background:
    linear-gradient(118deg, rgba(68, 16, 141, .98), rgba(132, 43, 226, .92) 56%, rgba(203, 133, 255, .9)),
    #240841;
  color: #fff;
  border-color: rgba(218, 174, 255, .36);
}
.hero-card:after {
  right: -58px;
  top: -86px;
  width: 260px;
  height: 260px;
  border: 46px solid rgba(255,255,255,.08);
  transform: rotate(28deg);
}
.hero-card:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 2px;
  right: 44px;
  bottom: 40px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.8));
  box-shadow: 0 -20px rgba(255,255,255,.1), 0 20px rgba(255,255,255,.05);
}
.hero-card h2, .admin-hero h2 { color: #fff; letter-spacing: -.045em; }
.admin-hero { background: linear-gradient(125deg, #12091d, #351356 62%, #6520a6); }
.quick-grid { gap: 12px; }
.metric { border-radius: 16px; background: linear-gradient(145deg, rgba(24, 13, 38, .96), rgba(10, 5, 16, .9)); }
.metric strong, .info-strip strong, .service-row span { color: #cf92ff; }
.item, .info-strip div, .order-line, .update-item { background: rgba(12, 6, 19, .82); }
.pill { background: rgba(139, 53, 245, .12); border-color: rgba(169, 84, 255, .24); }
.service-grid span, .status-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, #5c17cc, #aa51ff);
}
.earn-card { background: linear-gradient(135deg, rgba(31, 15, 49, .97), rgba(79, 23, 129, .85)); }
.bottom-nav {
  background: rgba(10, 5, 16, .91);
  border-radius: 18px;
}
.bottom-nav button { border-radius: 12px; }
.bottom-nav button.active {
  background: linear-gradient(145deg, rgba(139, 53, 245, .2), rgba(139, 53, 245, .06));
}
.bottom-nav button.plus span {
  border-color: #08030d;
  color: #fff;
  background: linear-gradient(135deg, #5c17cc, #b45cff);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 30px rgba(139, 53, 245, .3);
}
@media (min-width: 900px) {
  .app-shell { padding-left: 118px; }
  .main { padding-left: 34px; padding-right: 34px; padding-bottom: 40px; }
  .bottom-nav {
    top: 22px;
    bottom: 22px;
    left: 22px;
    right: auto;
    width: 88px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  .bottom-nav button { min-height: 62px; width: 100%; }
  .bottom-nav button.plus { transform: none; min-height: 62px; border-radius: 12px; }
  .bottom-nav button.plus span { width: 36px; height: 36px; border: 0; font-size: 24px; }
  .bottom-nav button.plus small { display: block; }
  .quick-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  body { background: linear-gradient(155deg, #08030e, #030105 68%, #0a0312); }
  .auth-card { padding: 22px 18px; }
  .logo { width: 92px; height: 92px; }
  .hero-card { min-height: 170px; }
}
