:root {
  --bg: #160a12;
  --panel: rgba(46, 18, 36, 0.88);
  --green: #ff6fb5;
  --green-dim: rgba(255, 111, 181, 0.55);
  --magenta: #c9a0ff;
  --yellow: #ffd54d;
  --cyan: #8de8ff;
  --red: #ff5f7a;
  --text: #ffd9ea;
  --mono: "Share Tech Mono", ui-monospace, "Cascadia Mono", "Courier New", monospace;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  min-height: 100%;
  overscroll-behavior: none;
}

body {
  padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

.hidden { display: none !important; }

button, input, select { font-size: 16px; }

#matrix-rain {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  transition: transform 0.25s ease-out;
}

#crt-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(30, 5, 20, 0.22) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse at center, transparent 55%, rgba(20, 2, 12, 0.5) 100%);
  animation: crtFlicker 7s infinite steps(1);
}

@keyframes crtFlicker {
  0%, 100% { opacity: 1; }
  91% { opacity: 1; }
  92% { opacity: 0.85; }
  93% { opacity: 1; }
  96% { opacity: 0.92; }
  97% { opacity: 1; }
}

#boot-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #12030d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 22px;
  cursor: pointer;
}

#boot-overlay.boot-off { animation: crtOff 0.7s forwards; }

@keyframes crtOff {
  0% { transform: scaleY(1) scaleX(1); filter: brightness(1); opacity: 1; }
  55% { transform: scaleY(0.008) scaleX(1); filter: brightness(2.4); opacity: 1; }
  100% { transform: scaleY(0.008) scaleX(0); filter: brightness(3); opacity: 0; }
}

#boot-terminal {
  color: #ff9ecf;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  min-height: 240px;
  text-shadow: 0 0 8px rgba(255, 158, 207, 0.6);
}

#boot-terminal::after {
  content: "🎀";
  animation: blink 0.8s infinite;
}

@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

#boot-progress {
  margin-top: 18px;
  height: 16px;
  border: 2px solid #ff6fb5;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(255, 111, 181, 0.4);
}

#boot-progress-fill {
  height: 100%;
  width: 0%;
  background: repeating-linear-gradient(45deg, #ff6fb5 0 10px, #c9a0ff 10px 20px);
  transition: width 0.25s ease;
}

#boot-skip {
  margin-top: 22px;
  text-align: center;
  color: rgba(255, 217, 234, 0.45);
  font-size: 11px;
  letter-spacing: 2px;
  animation: blink 1.4s infinite;
}

#app-header {
  position: relative;
  z-index: 2;
  padding: 18px 14px 8px;
  text-align: center;
}

#glitch-title {
  position: relative;
  display: inline-block;
  font-size: clamp(17px, 5.2vw, 28px);
  letter-spacing: 2px;
  color: #ff8fc4;
  text-shadow: 0 0 16px rgba(255, 111, 181, 0.7);
}

#glitch-title::before,
#glitch-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  overflow: hidden;
}

#glitch-title::before {
  color: #c9a0ff;
  z-index: -1;
  animation: glitchA 2.3s infinite linear alternate-reverse;
}

#glitch-title::after {
  color: #8de8ff;
  z-index: -2;
  animation: glitchB 3.1s infinite linear alternate-reverse;
}

@keyframes glitchA {
  0% { clip-path: inset(12% 0 84% 0); transform: translate(-3px, -2px); }
  20% { clip-path: inset(80% 0 4% 0); transform: translate(3px, 1px); }
  40% { clip-path: inset(42% 0 38% 0); transform: translate(-2px, 2px); }
  60% { clip-path: inset(4% 0 88% 0); transform: translate(2px, -1px); }
  80% { clip-path: inset(64% 0 18% 0); transform: translate(-3px, 1px); }
  100% { clip-path: inset(28% 0 60% 0); transform: translate(3px, 2px); }
}

@keyframes glitchB {
  0% { clip-path: inset(70% 0 12% 0); transform: translate(3px, 2px); }
  25% { clip-path: inset(8% 0 78% 0); transform: translate(-3px, -1px); }
  50% { clip-path: inset(52% 0 30% 0); transform: translate(2px, -2px); }
  75% { clip-path: inset(24% 0 62% 0); transform: translate(-2px, 1px); }
  100% { clip-path: inset(86% 0 2% 0); transform: translate(3px, -2px); }
}

#ticker {
  margin-top: 10px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 111, 181, 0.4);
  border-bottom: 1px solid rgba(255, 111, 181, 0.4);
  border-radius: 999px;
  margin-left: 10px;
  margin-right: 10px;
  background: rgba(60, 15, 40, 0.55);
}

#ticker-inner {
  display: inline-block;
  white-space: nowrap;
  padding: 7px 0;
  font-size: 11px;
  color: #ffd54d;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

#dev-banner {
  position: relative;
  z-index: 2;
  margin: 6px 12px;
  padding: 8px;
  text-align: center;
  font-size: 11px;
  color: #4d0f2e;
  background: #ffd54d;
  border: 2px dashed #4d0f2e;
  border-radius: 14px;
  animation: wobble 1.8s ease-in-out infinite;
}

@keyframes wobble {
  0%, 100% { transform: rotate(-0.8deg); }
  50% { transform: rotate(0.8deg); }
}

#app-main {
  position: relative;
  z-index: 2;
  padding: 10px 12px 20px;
}

.view { animation: viewIn 0.35s ease both; }

@keyframes viewIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

#search-row { margin-bottom: 10px; }

#search-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(60, 15, 40, 0.8);
  border: 2px solid #ff6fb5;
  border-radius: 999px;
  color: #ffd9ea;
  font-family: var(--mono);
  box-shadow: 0 0 14px rgba(255, 111, 181, 0.3), inset 0 0 10px rgba(255, 111, 181, 0.08);
  outline: none;
}

#search-input:focus { box-shadow: 0 0 24px rgba(255, 111, 181, 0.55), inset 0 0 12px rgba(255, 111, 181, 0.12); }
#search-input::placeholder { color: rgba(255, 158, 207, 0.5); }

#filter-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

#filter-chips select {
  flex: 1;
  min-width: 100px;
  padding: 10px;
  background: rgba(60, 15, 40, 0.85);
  color: var(--text);
  border: 2px solid rgba(255, 111, 181, 0.5);
  border-radius: 14px;
  font-family: var(--mono);
  font-size: 13px;
  outline: none;
}

#bins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.tilt {
  transform: perspective(650px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.18s ease;
  transform-style: preserve-3d;
}

.bin-card, .product-card, .purchase-card {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 2px solid rgba(255, 111, 181, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 6px 22px rgba(255, 111, 181, 0.14);
  padding: 14px;
  backdrop-filter: blur(2px);
}

.bin-card::after, .purchase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(240px circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.22), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s;
}

.bin-card:hover::after, .purchase-card:hover::after { opacity: 1; }

.brand-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.brand-VISA { color: #8de8ff; }
.brand-MASTERCARD { color: #ff9ecf; }
.brand-AMEX { color: #7dedc5; }
.brand-DISCOVER { color: #ffd54d; }

.bin-num {
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 158, 207, 0.6);
  margin-bottom: 6px;
}

.bin-bank { font-size: 11px; color: var(--text); opacity: 0.9; }
.bin-meta { font-size: 10px; color: rgba(255, 217, 234, 0.65); margin: 4px 0 10px; }

.bin-stats {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #ffd54d;
  margin-bottom: 10px;
}

.neon-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(255, 111, 181, 0.18), rgba(201, 160, 255, 0.18));
  color: #ff8fc4;
  border: 2px solid #ff6fb5;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
  text-shadow: 0 0 8px rgba(255, 111, 181, 0.55);
  box-shadow: 0 0 14px rgba(255, 111, 181, 0.3);
  transition: transform 0.1s ease, box-shadow 0.2s, background 0.2s;
}

.neon-btn:hover { box-shadow: 0 0 26px rgba(255, 111, 181, 0.55); background: linear-gradient(135deg, rgba(255, 111, 181, 0.3), rgba(201, 160, 255, 0.3)); }
.neon-btn:active { transform: scale(0.93) rotate(-1deg); }
.neon-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.neon-btn.magenta { color: #d9b8ff; border-color: #c9a0ff; text-shadow: 0 0 8px rgba(201, 160, 255, 0.6); box-shadow: 0 0 14px rgba(201, 160, 255, 0.3); }
.neon-btn.magenta:hover { box-shadow: 0 0 26px rgba(201, 160, 255, 0.55); }

.neon-btn.yellow { color: #ffe08a; border-color: #ffd54d; text-shadow: 0 0 8px rgba(255, 213, 77, 0.6); box-shadow: 0 0 14px rgba(255, 213, 77, 0.3); }
.neon-btn.yellow:hover { box-shadow: 0 0 26px rgba(255, 213, 77, 0.5); }

.product-card { margin-bottom: 10px; }

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.level-badge {
  font-size: 9px;
  letter-spacing: 2px;
  padding: 3px 9px;
  border-radius: 999px;
  color: #4d0f2e;
  background: linear-gradient(135deg, #ffd54d, #ff9ecf);
  box-shadow: 0 0 12px rgba(255, 158, 207, 0.55);
  font-weight: bold;
}

.product-number { font-size: 16px; letter-spacing: 2px; color: #fff; }
.product-sub { font-size: 10px; color: rgba(255, 217, 234, 0.7); margin: 6px 0 10px; }

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.price-tag { color: #ffd54d; font-size: 16px; text-shadow: 0 0 10px rgba(255, 213, 77, 0.45); }
.price-tag small { font-size: 9px; color: rgba(255, 213, 77, 0.75); }

.product-bottom .neon-btn { width: auto; padding: 10px 14px; font-size: 11px; }

#bin-modal { position: fixed; inset: 0; z-index: 80; }

#bin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 3, 13, 0.78);
  animation: fadeIn 0.25s ease both;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

#bin-modal-panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  max-height: 84%;
  overflow-y: auto;
  background: #22081a;
  border-top: 3px solid #ff6fb5;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -12px 44px rgba(255, 111, 181, 0.3);
  padding: 18px 14px calc(30px + env(safe-area-inset-bottom, 0px));
  animation: slideUp 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1) both;
}

@keyframes slideUp {
  from { transform: translateY(60%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

#bin-modal-close {
  position: sticky;
  top: 0;
  float: right;
  background: rgba(201, 160, 255, 0.12);
  border: 2px solid #c9a0ff;
  border-radius: 50%;
  color: #d9b8ff;
  width: 38px;
  height: 38px;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}

#bin-modal-header { font-size: 13px; margin-bottom: 14px; color: var(--text); }
#bin-modal-header .bin-num { margin-bottom: 2px; }

.basket-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 2px solid rgba(255, 111, 181, 0.4);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 10px;
}

.basket-item.gone { border-color: var(--red); opacity: 0.6; }
.basket-item .gone-tag { color: var(--red); font-size: 10px; letter-spacing: 2px; }

.remove-btn {
  background: rgba(255, 95, 122, 0.1);
  border: 2px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 10px;
  padding: 9px 12px;
  cursor: pointer;
  transition: transform 0.08s;
}
.remove-btn:active { transform: scale(0.88) rotate(3deg); }

#basket-summary {
  margin-top: 16px;
  border: 2px dashed #ffd54d;
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(60, 40, 5, 0.45);
}

#basket-summary .total-line {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  color: #ffd54d;
  margin-bottom: 12px;
}

.ascii-empty {
  white-space: pre;
  color: rgba(255, 158, 207, 0.6);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  margin: 30px 0;
  animation: floaty 3s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

#payment-card {
  background: var(--panel);
  border: 2px solid #ffd54d;
  border-radius: 24px;
  box-shadow: 0 0 30px rgba(255, 213, 77, 0.2);
  padding: 20px 16px;
  text-align: center;
}

.coin {
  width: 78px;
  height: 78px;
  margin: 6px auto 14px;
  border-radius: 50%;
  border: 3px solid #ffd54d;
  color: #ff8fc4;
  font-size: 36px;
  line-height: 72px;
  text-shadow: 0 0 14px rgba(255, 143, 196, 0.8);
  box-shadow: 0 0 26px rgba(255, 213, 77, 0.45), inset 0 0 18px rgba(255, 158, 207, 0.3);
  animation: coinSpin 1.3s linear infinite;
}

@keyframes coinSpin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.amount-line { font-size: 27px; color: #ffd54d; letter-spacing: 1px; text-shadow: 0 0 14px rgba(255, 213, 77, 0.55); }
.amount-line small { font-size: 13px; }

.pay-address {
  margin: 14px 0;
  padding: 12px;
  background: rgba(60, 15, 40, 0.85);
  border: 2px solid rgba(255, 111, 181, 0.5);
  border-radius: 14px;
  word-break: break-all;
  font-size: 12px;
  color: #ff9ecf;
}

.lcd {
  font-size: 36px;
  letter-spacing: 6px;
  color: #ff5f7a;
  text-shadow: 0 0 16px rgba(255, 95, 122, 0.7);
  margin: 12px 0;
  animation: lcdPulse 1s infinite;
}

@keyframes lcdPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

.blockchain-log {
  margin-top: 14px;
  height: 92px;
  overflow: hidden;
  text-align: left;
  font-size: 10px;
  color: rgba(255, 158, 207, 0.8);
  background: rgba(18, 3, 13, 0.6);
  border: 2px solid rgba(255, 111, 181, 0.3);
  border-radius: 14px;
  padding: 8px;
  line-height: 1.6;
}

.mock-banner {
  margin: 10px 0;
  padding: 9px;
  background: #c9a0ff;
  color: #33124d;
  font-size: 11px;
  letter-spacing: 1px;
  border: 2px dashed #33124d;
  border-radius: 14px;
  animation: wobble 1.6s ease-in-out infinite;
}

.pay-buttons { display: flex; gap: 10px; margin-top: 14px; }
.pay-buttons .neon-btn { flex: 1; }

.purchase-card { margin-bottom: 14px; }

.encrypted-slab {
  display: block;
  width: 100%;
  background: repeating-linear-gradient(45deg, #2a0a1e 0 10px, #38102a 10px 20px);
  border: 2px solid #ff6fb5;
  border-radius: var(--radius);
  color: #ff9ecf;
  font-family: var(--mono);
  letter-spacing: 3px;
  font-size: 13px;
  padding: 26px 10px;
  cursor: pointer;
  text-shadow: 0 0 10px rgba(255, 111, 181, 0.6);
  animation: slabGlow 2s ease-in-out infinite;
}

@keyframes slabGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 111, 181, 0.3); }
  50% { box-shadow: 0 0 26px rgba(255, 111, 181, 0.6); }
}

.fullz { text-align: left; font-size: 12px; }

.fullz-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 2px;
  border-bottom: 1px dashed rgba(255, 111, 181, 0.3);
}

.fullz-row .k { color: rgba(255, 217, 234, 0.65); font-size: 10px; letter-spacing: 1px; }
.fullz-row .v { color: #fff; word-break: break-all; text-align: right; }

.copy-btn {
  background: rgba(141, 232, 255, 0.1);
  border: 1.5px solid rgba(141, 232, 255, 0.6);
  border-radius: 999px;
  color: #8de8ff;
  font-size: 9px;
  font-family: var(--mono);
  padding: 5px 9px;
  cursor: pointer;
  flex-shrink: 0;
}
.copy-btn:active { transform: scale(0.88); }

.order-head {
  margin: 18px 0 10px;
  font-size: 11px;
  color: #ffd54d;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 213, 77, 0.35);
  padding-bottom: 6px;
}

.skeleton {
  border: 2px solid rgba(255, 111, 181, 0.2);
  border-radius: var(--radius);
  min-height: 120px;
  background: linear-gradient(100deg, rgba(255, 111, 181, 0.05) 40%, rgba(255, 111, 181, 0.18) 50%, rgba(255, 111, 181, 0.05) 60%);
  background-size: 300% 100%;
  animation: shimmer 1.3s infinite;
}

@keyframes shimmer {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}

#toast-root {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  padding: 12px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  background: #22081a;
  border: 2px solid #ff6fb5;
  border-radius: 16px;
  color: #ff9ecf;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.6);
  transform: translateY(-30px) rotate(-1.5deg);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 1.4, 0.4, 1), opacity 0.3s;
}

.toast.show { transform: translateY(0) rotate(0deg); opacity: 1; }
.toast-ok { border-color: #ff6fb5; color: #ff9ecf; }
.toast-error { border-color: var(--red); color: var(--red); }
.toast-warn { border-color: #ffd54d; color: #ffd54d; }

#confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

.fly-ghost {
  position: fixed;
  z-index: 95;
  pointer-events: none;
  background: rgba(255, 111, 181, 0.25);
  border: 2px solid #ff6fb5;
  border-radius: var(--radius);
}

body.shake { animation: shakeIt 0.45s ease; }

@keyframes shakeIt {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(-7px, 3px) rotate(-0.8deg); }
  40% { transform: translate(6px, -4px) rotate(0.8deg); }
  60% { transform: translate(-5px, -2px) rotate(-0.5deg); }
  80% { transform: translate(4px, 3px) rotate(0.4deg); }
}

body.sad { animation: sadShake 0.9s ease; }

@keyframes sadShake {
  0%, 100% { filter: none; }
  25% { filter: hue-rotate(-40deg) saturate(2); transform: translateX(-6px); }
  50% { filter: hue-rotate(-70deg) saturate(3); transform: translateX(6px); }
  75% { filter: hue-rotate(-40deg) saturate(2); transform: translateX(-3px); }
}

#app-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(255, 217, 234, 0.55);
  padding: 16px 12px 8px;
  line-height: 2;
}

#conn-status { animation: blink 2.2s infinite; color: rgba(255, 158, 207, 0.75); }
#disclaimer { color: rgba(255, 213, 77, 0.8); margin-top: 6px; }

#bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: flex;
  background: rgba(24, 5, 18, 0.95);
  border-top: 2px solid rgba(255, 111, 181, 0.5);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  backdrop-filter: blur(8px);
}

.nav-btn {
  position: relative;
  flex: 1;
  background: none;
  border: none;
  color: rgba(255, 217, 234, 0.55);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 12px 4px 10px;
  cursor: pointer;
  transition: color 0.2s, transform 0.1s;
}

.nav-btn:active { transform: scale(0.9); }

.nav-btn.active {
  color: #ff8fc4;
  text-shadow: 0 0 12px rgba(255, 111, 181, 0.6);
  animation: navPulse 2s ease-in-out infinite;
}

@keyframes navPulse {
  0%, 100% { text-shadow: 0 0 6px rgba(255, 111, 181, 0.4); }
  50% { text-shadow: 0 0 18px rgba(255, 111, 181, 0.95); }
}

.nav-icon { display: block; font-size: 19px; margin-bottom: 3px; }

#basket-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 26px);
  min-width: 19px;
  height: 19px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6fb5, #c9a0ff);
  color: #fff;
  font-size: 10px;
  line-height: 19px;
  text-align: center;
  box-shadow: 0 0 14px rgba(255, 111, 181, 0.85);
  animation: badgePop 0.4s cubic-bezier(0.2, 1.6, 0.4, 1);
}

@keyframes badgePop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.unauth-panel {
  text-align: center;
  padding: 40px 16px;
  border: 2px dashed #c9a0ff;
  border-radius: var(--radius);
  color: #d9b8ff;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 2;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}
