:root {
  --bg: #0a0a0a;
  --gold: #c9a15b;
  --gold-2: #e4c78a;
  --gold-dim: #8c6a35;
  --text: #f3efe6;
  --muted: #9a907f;
  --card: rgba(22, 22, 22, 0.92);
  --line: rgba(201, 161, 91, 0.18);
  --safe-top: var(--tg-content-safe-area-inset-top, 0px);
  --safe-bot: var(--tg-safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

body {
  overflow-x: hidden;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: #070707;
  transition: opacity .7s ease, visibility .7s ease;
}
.splash.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-aura {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,91,.28) 0%, rgba(201,161,91,.08) 42%, transparent 70%);
  animation: splashPulse 2.4s ease-in-out infinite;
}
.splash h1 {
  position: relative;
  z-index: 1;
  font-family: Cinzel, serif;
  font-size: 52px;
  font-weight: 600;
  color: #e4c78a;
  letter-spacing: .04em;
  text-shadow:
    0 0 24px rgba(201, 161, 91, .55),
    0 0 60px rgba(201, 161, 91, .22);
  animation: splashIn .9s cubic-bezier(.22, 1, .36, 1) both;
}
.splash-rule {
  position: absolute;
  bottom: calc(42% - 42px);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a15b, transparent);
  animation: splashLine 1.1s .35s ease forwards;
}
@keyframes splashIn {
  from { opacity: 0; transform: translateY(14px) scale(.96); letter-spacing: .18em; }
  to { opacity: 1; transform: none; letter-spacing: .04em; }
}
@keyframes splashLine {
  from { width: 0; opacity: 0; }
  to { width: 132px; opacity: 1; }
}
@keyframes splashPulse {
  0%, 100% { transform: scale(.92); opacity: .7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.app {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: visible;
  padding: calc(10px + var(--safe-top)) 18px calc(96px + var(--safe-bot));
  background: #0a0a0a;
}
.app.ready {
  animation: appIn .85s cubic-bezier(.22, 1, .36, 1);
}
@keyframes appIn {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: none; }
}

body.is-admin:not(.preview-client) .dock { display: none !important; }
body.is-admin:not(.preview-client) .app { padding-bottom: calc(20px + var(--safe-bot)); }
body.is-admin:not(.preview-client) #btn-mine { display: none !important; }
body.is-admin:not(.preview-client) .hero,
body.is-admin:not(.preview-client) .cards {
  display: none;
}
body.is-admin:not(.preview-client) #admin-home { display: block !important; }
body.is-admin.preview-client .dock { pointer-events: none; }
body.is-admin.preview-client #admin-home { display: none; }

.admin-home { display: none; margin-top: 8px; }
.admin-title {
  font-family: Cinzel, serif;
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 14px;
}

.hero {
  position: relative;
  min-height: 320px;
  padding: 8px 12px 12px 0;
  z-index: 2;
  overflow: visible;
}

.portrait {
  position: absolute;
  top: -8px;
  right: -28px;
  bottom: -24px;
  width: 62%;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 22%, #000 48%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 22%, #000 48%);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 12%;
  filter: contrast(1.06) brightness(0.92) saturate(0.78);
}

.portrait-scrim {
  position: absolute;
  inset: -2px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      #0a0a0a 0%,
      #0a0a0a 28%,
      rgba(10, 10, 10, 0.55) 48%,
      rgba(10, 10, 10, 0.12) 68%,
      transparent 88%
    ),
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.4) 0%,
      transparent 22%,
      transparent 62%,
      rgba(10, 10, 10, 0.75) 90%,
      #0a0a0a 100%
    );
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 3;
}
.top-right { display: flex; gap: 8px; }

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(20, 16, 10, .7);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: none;
}
.icon-btn svg { width: 20px; height: 20px; }

.ghost {
  background: rgba(0,0,0,.35);
  color: var(--gold-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font: 600 12px/1 Manrope, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hidden { display: none !important; }

.portrait.empty {
  display: none;
}

.brand {
  font-family: Cinzel, serif;
  font-weight: 600;
  font-size: 54px;
  letter-spacing: 0.01em;
  color: var(--gold);
  text-shadow: 0 0 22px rgba(201, 161, 91, 0.45), 0 2px 18px rgba(201, 161, 91, 0.25);
  position: relative;
  z-index: 2;
  padding-right: 16px;
  animation: fadeUp .7s ease both;
}

.avail-kicker {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d8d0c4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  animation: fadeUp .7s .08s ease both;
}

.avail-kicker .ico { width: 16px; height: 16px; color: var(--gold); flex: none; }

.avail-num {
  margin-top: 6px;
  margin-left: -18px;
  padding: 12px 28px 18px 18px;
  font-family: Cinzel, serif;
  font-size: 92px;
  line-height: 1;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 2;
  animation: fadeUp .7s .14s ease both;
  text-shadow: 0 0 28px rgba(201, 161, 91, .5), 0 0 48px rgba(201, 161, 91, .22);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 13px 14px;
  font-size: 15px;
  color: #efe8dc;
}

.card .ico {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex: none;
}

.card b { color: var(--gold); font-weight: 800; }
.card .sub { color: var(--muted); font-size: 12px; margin-top: 2px; }
.row-split { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; width: 100%; }

.ops { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; justify-content: flex-end; }
.ops-wrap { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.op-block { display: flex; flex-direction: column; align-items: center; gap: 3px; min-width: 44px; }
.op-caption { font-size: 9px; color: var(--gold-2); letter-spacing: .03em; text-align: center; }
.op {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 42px;
  height: 26px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  position: relative;
}
.op.has-icon {
  background: #121212 !important;
  color: #efe8dc;
  padding: 3px;
  min-width: 32px;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(201, 161, 91, 0.22);
}
.op.has-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.op.has-icon > span { display: none; }
.op.has-icon.named {
  padding: 2px 8px 2px 3px;
  min-width: auto;
  width: auto;
  height: 32px;
}
.op.has-icon.named > span { display: inline; }
.op-x {
  border: 0; background: transparent; color: inherit; font-size: 14px;
  line-height: 1; padding: 0 0 0 2px; opacity: .7;
}

.ops-field { display: flex; flex-direction: column; gap: 6px; }
.field-label, .admin-form-label {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px; color: var(--muted);
}
.ops-row { display: flex; align-items: center; gap: 8px; }
.ops-selected { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
.ops-plus {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: none;
  border: 1px solid #f3e0b0;
  color: #1a140c;
  font-family: Cinzel, serif;
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(180deg, #f0d7a2 0%, #d7b36a 45%, #b8893d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -2px 3px rgba(80, 50, 10, .35),
    0 6px 16px rgba(180, 130, 50, .32);
}
.ops-pick {
  display: flex; flex-direction: column; gap: 6px;
  max-height: 42vh; overflow: auto; margin: 10px 0 12px;
}
.ops-pick button {
  display: flex; align-items: center; gap: 10px; text-align: left;
  background: #1c1c1c; border: 1px solid var(--line); color: var(--text);
  border-radius: 12px; padding: 10px 12px; font: 600 14px Manrope, sans-serif;
}
.ops-pick .swatch {
  width: 22px; height: 22px; border-radius: 6px; flex: none;
}
.ops-pick img { width: 32px; height: 32px; object-fit: contain; border-radius: 7px; background: #0e0e0e; }

.admin-form input[type="color"],
.sheet-card input[type="color"] {
  width: 100%; height: 42px; border: 1px solid var(--line); border-radius: 10px;
  background: #161616; padding: 4px;
}
.sheet-card input[type="text"],
.sheet-card input[type="file"] {
  background: #161616; border: 1px solid var(--line); color: var(--text);
  border-radius: 10px; padding: 10px 12px; font: 500 14px Manrope, sans-serif;
}
.sheet-card .admin-form-label { margin: 8px 0; }

.dock {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 5;
  padding: 12px 18px calc(16px + var(--safe-bot));
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.92) 30%, #0a0a0a);
}

.cta {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 16px 12px;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: #1a140c;
  cursor: pointer;
  background:
    linear-gradient(180deg, #f0d7a2 0%, #d7b36a 42%, #b8893d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -2px 4px rgba(80, 50, 10, .35),
    0 10px 24px rgba(180, 130, 50, .22);
}
.cta:disabled { filter: grayscale(.4) brightness(.7); }
.cta.small { letter-spacing: .1em; font-size: 14px; padding: 12px; margin-top: 8px; }
.cta.alt {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid var(--gold-dim);
  box-shadow: none;
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease, visibility .32s ease;
}
.sheet.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sheet-card {
  width: 100%;
  max-width: 430px;
  background: #141414;
  border-top: 1px solid var(--line);
  border-radius: 22px 22px 0 0;
  padding: 10px 18px calc(22px + var(--safe-bot));
  transform: translateY(36px);
  transition: transform .34s cubic-bezier(.22, 1, .36, 1);
}
.sheet.open .sheet-card {
  transform: translateY(0);
}
.sheet-handle {
  width: 42px; height: 4px; border-radius: 4px;
  background: #3a3a3a; margin: 6px auto 14px;
}
.sheet-card h2 { font-family: Cinzel, serif; color: var(--gold); font-size: 26px; margin-bottom: 6px; }
.muted { color: var(--muted); }
.muted.small { font-size: 12px; margin: 6px 0 14px; word-break: break-all; }
.sum { margin: 14px 0; font-size: 16px; }
.sum b { color: var(--gold); }
.text-btn {
  width: 100%; margin-top: 8px; background: none; border: 0;
  color: var(--muted); padding: 10px; font: 600 14px Manrope, sans-serif;
}

.stepper {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  margin: 18px 0 8px;
}
.stepper button {
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: #1c1c1c;
  color: var(--gold); font-size: 24px;
}
.stepper.mini {
  margin: 0;
  gap: 10px;
  justify-content: flex-start;
}
.stepper.mini button {
  width: 38px;
  height: 38px;
  font-size: 20px;
}
.stepper input.qty-input {
  width: 88px;
  height: 52px;
  border: 1px solid var(--line);
  background: #161616;
  color: var(--gold);
  font-family: Cinzel, serif;
  font-size: 36px;
  text-align: center;
  border-radius: 12px;
  user-select: text;
  -webkit-user-select: text;
  appearance: textfield;
  -moz-appearance: textfield;
}
.stepper.mini input.qty-input {
  width: 84px;
  height: 38px;
  font-size: 18px;
  color: var(--gold-2);
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.time-24 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.time-24 > span {
  color: var(--gold);
  font-family: Cinzel, serif;
  font-size: 22px;
}
.time-unit {
  flex: 1;
  background: #161616;
  border: 1px solid var(--line);
  color: var(--gold-2);
  border-radius: 10px;
  padding: 10px 12px;
  font: 700 18px/1 Cinzel, serif;
  letter-spacing: .06em;
}
.time-drop {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 6;
  display: flex;
  gap: 8px;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,.55);
  max-height: 220px;
}
.time-col {
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  scrollbar-width: none;
}
.time-col::-webkit-scrollbar { width: 0; height: 0; }
.time-col button {
  background: transparent;
  border: 0;
  color: var(--muted);
  border-radius: 8px;
  padding: 8px 0;
  font: 600 14px Manrope, sans-serif;
}
.time-col button.on {
  background: var(--gold);
  color: #1a140c;
}

.panel {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: #0c0c0c;
  overflow: auto;
  padding: calc(12px + var(--safe-top)) 16px calc(24px + var(--safe-bot));
  max-width: 430px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity .34s ease, transform .34s cubic-bezier(.22, 1, .36, 1), visibility .34s ease;
}
.panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.panel-head h2 { font-family: Cinzel, serif; color: var(--gold); font-size: 28px; }
.list { display: flex; flex-direction: column; gap: 8px; }
.item {
  background: #161616; border-radius: 14px; padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.04);
}
.item .meta { color: var(--muted); font-size: 12px; margin-top: 4px; word-break: break-all; }
.st {
  display: inline-block; margin-top: 6px; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--gold);
}
.st.wait { color: #e0b15a; }
.st.ok { color: #7dce8a; }
.st.bad { color: #d36b6b; }
.pay-actions { display: flex; gap: 8px; margin-top: 8px; }
.pay-actions button {
  flex: 1; border-radius: 10px; padding: 8px; border: 0; font-weight: 700;
}
.pay-ok { background: #c9a15b; color: #1a140c; }
.pay-no { background: #2a2a2a; color: #ddd; }

.admin-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px;
}
.stat {
  background: #161616; border-radius: 12px; padding: 10px 12px;
}
.stat span { display: block; color: var(--muted); font-size: 11px; }
.stat b { color: var(--gold); font-size: 22px; font-family: Cinzel, serif; }

.admin-form { display: flex; flex-direction: column; gap: 8px; }
.admin-form label {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px; color: var(--muted);
}
.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form input[type="time"] {
  background: #161616; border: 1px solid var(--line); color: var(--text);
  border-radius: 10px; padding: 10px 12px; font: 500 14px Manrope, sans-serif;
}
.check { flex-direction: row !important; align-items: center; gap: 8px !important; color: var(--text) !important; }
.admin-form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #161616;
  position: relative;
  flex: none;
}
.admin-form input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.admin-form input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #1a140c;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.subhead { margin: 18px 0 8px; color: var(--gold); font-size: 16px; }
.filters { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.chip {
  background: #161616; border: 1px solid var(--line); color: var(--muted);
  border-radius: 999px; padding: 6px 10px; font-size: 12px;
}
.chip.on { color: #1a140c; background: var(--gold); border-color: var(--gold); }

.toast {
  position: fixed; left: 50%; bottom: calc(90px + var(--safe-bot));
  transform: translateX(-50%) translateY(10px);
  z-index: 40; background: #1c1c1c; color: var(--text);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; font-size: 13px; max-width: 86%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 80% 50% at 80% 10%, rgba(180,140,70,.18), transparent 50%),
    #0a0a0a;
}
.gate-card {
  width: 100%;
  max-width: 340px;
}
.gate-card h1 {
  font-family: Cinzel, serif;
  color: var(--gold);
  font-size: 42px;
  margin-bottom: 18px;
}
.gate-card input {
  width: 100%;
  margin-bottom: 10px;
  background: #161616;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font: 500 15px Manrope, sans-serif;
}

button { cursor: pointer; }

input, textarea {
  user-select: text;
  -webkit-user-select: text;
}

.copy, .copy-wallet, .copy-block, a.tg-user {
  user-select: text;
  -webkit-user-select: text;
}

.glow {
  text-shadow: 0 0 22px rgba(201, 161, 91, .45), 0 2px 18px rgba(201, 161, 91, 0.25);
}
.pulse-gold {
  animation: pulseGold 3.6s ease-in-out infinite;
}
.pulse-soft {
  animation: pulseSoft 4.2s ease-in-out infinite;
}
@keyframes pulseGold {
  0%, 100% { opacity: 1; }
  50% { opacity: .86; }
}
@keyframes pulseSoft {
  0%, 100% { opacity: .78; }
  50% { opacity: 1; }
}

.copy {
  display: block;
  width: 100%;
  text-align: left;
  background: #161616;
  border: 1px solid var(--line);
  color: var(--gold-2);
  border-radius: 12px;
  padding: 10px 12px;
  font: 600 13px/1.4 Manrope, sans-serif;
  word-break: break-all;
}
.copy-wallet { margin: 10px 0 14px; }
.copy-block { margin: 8px 0 14px; }
.copy-inline {
  margin: 0;
  width: auto;
  flex: 1;
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.wallet-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.wallet-addr {
  color: #f4f1ea;
  font-size: 13px;
  font-weight: 600;
  word-break: break-all;
  line-height: 1.35;
}
.copy-wallet, .copy-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.pay-status {
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 14px;
}
.pay-status.paid { color: #8fe3a0; background: rgba(80, 160, 100, .12); }
.pay-status.unpaid { color: #f09a9a; background: rgba(160, 60, 60, .14); }
.pay-status.review { color: #f0d27a; background: rgba(180, 140, 40, .14); }
.pay-status.none { color: var(--muted); background: #161616; }

.st.paid { color: #8fe3a0; }
.st.unpaid { color: #f09a9a; }
.st.review { color: #f0d27a; }
.st.pending { color: #e0b15a; }

a.tg-user { color: var(--gold-2); text-decoration: none; font-weight: 700; }

.card { animation: fadeUp .45s ease both; }
.card:nth-child(2) { animation-delay: .05s; }
.card:nth-child(3) { animation-delay: .1s; }
.card:nth-child(4) { animation-delay: .15s; }
.card:nth-child(5) { animation-delay: .2s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
