/* Tsiky transfers UI — PIN modal, send modal, receive QR, scan camera. */

/* ─── PIN modal ───────────────────────────────────────────────────── */
.tsiky-pin-overlay {
  position: fixed; inset: 0; z-index: 99997;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  transition: background .28s ease;
}
.tsiky-pin-overlay.show { background: rgba(0,0,0,.65); }
.tsiky-pin-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  max-width: 360px; width: 100%;
  text-align: center;
  font-family: Nunito, sans-serif;
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: transform .32s cubic-bezier(.34,1.2,.64,1), opacity .25s ease;
  box-shadow: 0 16px 50px rgba(0,0,0,.4);
}
.tsiky-pin-overlay.show .tsiky-pin-card { transform: translateY(0); opacity: 1; }
.tsiky-pin-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: rgba(0,0,0,.06); color: #1C1C2E;
  cursor: pointer; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.tsiky-pin-coin {
  font-size: 40px; color: #F5B027;
  margin-bottom: 8px; display: block;
  filter: drop-shadow(0 3px 5px rgba(245,176,39,.4));
}
.tsiky-pin-card h2 { font-size: 18px; font-weight: 900; color: #1C1C2E; margin: 0 0 6px; }
.tsiky-pin-sub { font-size: 13px; color: #6B6B7A; margin: 0 0 12px; line-height: 1.4; }
.tsiky-pin-amount {
  font-size: 22px; font-weight: 900; color: #1C1C2E;
  background: #FFF4E0; padding: 8px 16px; border-radius: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 6px;
}
.tsiky-pin-amount .fa-coins { color: #F5B027; font-size: 18px; }
.tsiky-pin-recipient { font-size: 13px; color: #6B6B7A; margin-bottom: 18px; }
.tsiky-pin-recipient strong { color: #1C1C2E; }

/* PIN dots — gros, contrastés, tap zone large pour mobile */
.tsiky-pin-dots {
  position: relative;
  display: flex; justify-content: center; gap: 18px;
  margin: 16px auto 14px;
  padding: 18px 24px;
  background: #F7F7FA;
  border-radius: 16px;
  border: 2px solid rgba(245,176,39,.3);
  cursor: text;
  transition: border-color .2s ease, box-shadow .2s ease;
  max-width: 280px;
}
.tsiky-pin-dots:focus-within {
  border-color: #F5B027;
  box-shadow: 0 0 0 4px rgba(245,176,39,.18);
}
.tsiky-pin-dots.shake { animation: tsikyPinShake .4s ease; }
@keyframes tsikyPinShake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-8px); }
  40%,80% { transform: translateX(8px); }
}
.tsiky-pin-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2.5px solid #B0B0BD;
  background: #fff;
  transition: all .18s cubic-bezier(.34,1.56,.64,1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
}
.tsiky-pin-dot.filled {
  background: #F5B027;
  border-color: #F5B027;
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(245,176,39,.5);
}

/* Hint visuel "tape ton PIN" */
.tsiky-pin-hint {
  font-size: 11.5px;
  color: #8B8B9A;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 4px;
}
.tsiky-pin-hint i { color: #F5B027; }

/* Input invisible mais tap-able : posé par-dessus les dots */
.tsiky-pin-input {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  border: none; outline: none; background: transparent;
  font-size: 16px;        /* >=16px sinon Safari iOS zoom */
  color: transparent; caret-color: transparent;
  text-align: center;
  cursor: text;
  border-radius: 16px;
}
.tsiky-pin-card { cursor: default; }
.tsiky-pin-err {
  font-size: 12.5px; color: #EF5350;
  min-height: 18px; margin-bottom: 10px; font-weight: 700;
}
.tsiky-pin-submit {
  appearance: none; border: none;
  background: #1C1C2E; color: #fff;
  font-family: Nunito, sans-serif; font-weight: 800; font-size: 14px;
  padding: 12px 32px; border-radius: 12px;
  cursor: pointer;
  transition: opacity .15s ease;
}
.tsiky-pin-submit:disabled { opacity: .45; cursor: not-allowed; }

/* Make the entire card focus the hidden input on click */
.tsiky-pin-card { cursor: text; }
.tsiky-pin-card .tsiky-pin-close,
.tsiky-pin-card .tsiky-pin-submit { cursor: pointer; }

/* ─── Send modal ──────────────────────────────────────────────────── */
.tsiky-send-overlay {
  position: fixed; inset: 0; z-index: 99995;
  background: rgba(0,0,0,0);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
  transition: background .28s ease;
}
.tsiky-send-overlay.show { background: rgba(0,0,0,.55); }
.tsiky-send-sheet {
  background: #fff; width: 100%; max-width: 480px;
  border-radius: 22px 22px 0 0;
  padding: 14px 22px 28px;
  font-family: Nunito, sans-serif; color: #1C1C2E;
  position: relative;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.34,1.2,.64,1);
  max-height: 88vh; overflow-y: auto;
  box-shadow: 0 -8px 30px rgba(0,0,0,.18);
}
.tsiky-send-overlay.show .tsiky-send-sheet { transform: translateY(0); }
.tsiky-send-handle {
  width: 42px; height: 4px; border-radius: 2px;
  background: rgba(0,0,0,.18); margin: 0 auto 16px;
}
.tsiky-send-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: rgba(0,0,0,.06); color: #1C1C2E; cursor: pointer;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.tsiky-send-head { text-align: center; margin-bottom: 14px; }
.tsiky-send-coin { font-size: 36px; color: #F5B027; margin-bottom: 4px; display: block; }
.tsiky-send-head h2 { font-size: 18px; font-weight: 900; margin: 0 0 4px; }
.tsiky-send-recipient { font-size: 13.5px; color: #6B6B7A; }
.tsiky-send-recipient strong { color: #1C1C2E; }
.tsiky-send-balance-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: #FFF4E0;
  border-radius: 12px; margin-bottom: 14px;
  font-weight: 700; font-size: 13.5px;
}
.tsiky-send-balance-val { color: #1C1C2E; font-weight: 900; }
.tsiky-send-balance-val .fa-coins { color: #F5B027; margin-right: 3px; }
.tsiky-send-field {
  display: block; margin-bottom: 14px;
}
.tsiky-send-field-label {
  display: block; font-size: 12px; font-weight: 800;
  color: #6B6B7A; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 6px;
}
.tsiky-send-amount-wrap {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: #F7F7FA; border-radius: 12px;
  border: 1.5px solid transparent;
  transition: border-color .15s ease;
}
.tsiky-send-amount-wrap:focus-within { border-color: #F5B027; }
.tsiky-send-amount {
  appearance: none; border: none; outline: none;
  background: transparent; flex: 1;
  font-family: Nunito, sans-serif; font-size: 24px; font-weight: 900;
  color: #1C1C2E; min-width: 0;
}
.tsiky-send-amount::-webkit-outer-spin-button,
.tsiky-send-amount::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.tsiky-send-amount-unit { font-size: 14px; font-weight: 700; color: #6B6B7A; }
.tsiky-send-quick {
  display: flex; gap: 8px; margin-top: 8px;
}
.tsiky-send-quick button {
  appearance: none; border: 1px solid rgba(0,0,0,.1);
  background: #fff; color: #1C1C2E;
  font-family: Nunito, sans-serif; font-weight: 700; font-size: 13px;
  padding: 6px 14px; border-radius: 99px; cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.tsiky-send-quick button:hover { background: #FFF4E0; border-color: #F5B027; }
.tsiky-send-message {
  appearance: none; outline: none;
  width: 100%;
  padding: 12px 14px;
  background: #F7F7FA; border-radius: 12px;
  border: 1.5px solid transparent;
  font-family: Nunito, sans-serif; font-size: 14px;
  color: #1C1C2E;
  box-sizing: border-box;
}
.tsiky-send-message:focus { border-color: #F5B027; }
.tsiky-send-err {
  min-height: 18px; font-size: 12.5px; color: #EF5350; font-weight: 700;
  margin-bottom: 8px;
}
.tsiky-send-go {
  appearance: none; border: none; width: 100%;
  background: linear-gradient(135deg, #F5B027 0%, #FF8C00 100%);
  color: #fff;
  font-family: Nunito, sans-serif; font-weight: 900; font-size: 15px;
  padding: 14px; border-radius: 14px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: opacity .15s ease, transform .15s ease;
}
.tsiky-send-go:disabled { opacity: .5; cursor: not-allowed; }
.tsiky-send-go:not(:disabled):active { transform: scale(.98); }

/* ─── Receive QR ───────────────────────────────────────────────────── */
.tsiky-recv-overlay {
  position: fixed; inset: 0; z-index: 99995;
  background: rgba(0,0,0,0);
  display: flex; align-items: flex-end; justify-content: center;
  transition: background .28s ease;
}
.tsiky-recv-overlay.show { background: rgba(0,0,0,.55); }
.tsiky-recv-sheet {
  background: #fff; width: 100%; max-width: 480px;
  border-radius: 22px 22px 0 0;
  padding: 14px 22px 28px;
  font-family: Nunito, sans-serif; color: #1C1C2E;
  position: relative;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.34,1.2,.64,1);
  max-height: 88vh; overflow-y: auto;
  box-shadow: 0 -8px 30px rgba(0,0,0,.18);
}
.tsiky-recv-overlay.show .tsiky-recv-sheet { transform: translateY(0); }
.tsiky-recv-handle {
  width: 42px; height: 4px; border-radius: 2px;
  background: rgba(0,0,0,.18); margin: 0 auto 16px;
}
.tsiky-recv-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: rgba(0,0,0,.06); color: #1C1C2E; cursor: pointer;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.tsiky-recv-head { text-align: center; margin-bottom: 14px; }
.tsiky-recv-icon { font-size: 36px; color: #1C1C2E; margin-bottom: 4px; display: block; }
.tsiky-recv-head h2 { font-size: 18px; font-weight: 900; margin: 0 0 4px; }
.tsiky-recv-sub { font-size: 13px; color: #6B6B7A; margin: 0; }
.tsiky-recv-field {
  display: block; margin-bottom: 14px;
}
.tsiky-recv-field span {
  display: block; font-size: 12px; font-weight: 800;
  color: #6B6B7A; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 6px;
}
.tsiky-recv-field input {
  width: 100%; padding: 12px 14px;
  background: #F7F7FA; border-radius: 12px;
  border: 1.5px solid transparent; outline: none;
  font-family: Nunito, sans-serif; font-size: 14px; color: #1C1C2E;
  box-sizing: border-box;
}
.tsiky-recv-field input:focus { border-color: #F5B027; }
.tsiky-recv-qr {
  display: flex; align-items: center; justify-content: center;
  min-height: 260px;
  padding: 16px;
  background: #F7F7FA;
  border-radius: 16px;
  margin-bottom: 8px;
}
.tsiky-recv-qr-inner { display: inline-block; padding: 8px; background: #fff; border-radius: 8px; }
.tsiky-recv-qr-fallback { text-align: center; }
.tsiky-recv-qr-text {
  font-family: monospace; font-size: 9px;
  word-break: break-all; padding: 10px;
  background: #fff; border-radius: 8px;
  max-height: 200px; overflow-y: auto;
  margin-bottom: 10px;
}
.tsiky-recv-qr-copy {
  appearance: none; border: none;
  background: #1C1C2E; color: #fff;
  font-family: Nunito; font-weight: 700; font-size: 13px;
  padding: 8px 18px; border-radius: 10px; cursor: pointer;
}
.tsiky-recv-loading, .tsiky-recv-err {
  text-align: center; color: #6B6B7A; font-weight: 700; font-size: 13px;
}
.tsiky-recv-err { color: #EF5350; }
.tsiky-recv-validity {
  font-size: 11.5px; color: #8B8B9A;
  text-align: center; margin: 4px 0 0;
}

/* ─── Scan modal ──────────────────────────────────────────────────── */
.tsiky-scan-overlay {
  position: fixed; inset: 0; z-index: 99996;
  background: rgba(0,0,0,0);
  transition: background .28s ease;
}
.tsiky-scan-overlay.show { background: rgba(0,0,0,.95); }
.tsiky-scan-card {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 60px 20px 20px;
  color: #fff;
  font-family: Nunito, sans-serif;
  text-align: center;
}
.tsiky-scan-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.15); color: #fff; cursor: pointer;
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}
.tsiky-scan-card h2 { font-size: 18px; margin: 0 0 6px; font-weight: 900; }
.tsiky-scan-hint { font-size: 13px; color: rgba(255,255,255,.75); margin: 0 0 16px; }
#tsiky-scan-video {
  width: 100%; max-width: 360px;
  aspect-ratio: 1;
  border-radius: 18px;
  background: #000;
  margin: 0 auto;
  object-fit: cover;
  border: 2px solid #F5B027;
  box-shadow: 0 0 0 4px rgba(245,176,39,.25);
}
.tsiky-scan-err {
  margin-top: 14px; padding: 10px;
  color: #FF8B8B; font-weight: 700; font-size: 14px;
}

/* ─── Animation overlays (send + receive Tsiky) ─────────────────── */
.tsiky-anim-overlay {
  position: fixed; inset: 0; z-index: 100000;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  transition: background .35s ease;
  pointer-events: none;
}
.tsiky-anim-overlay.show {
  background: rgba(0,0,0,.68);
  pointer-events: auto;
}
.tsiky-anim-card {
  background: linear-gradient(135deg, #FFF4E0 0%, #FFE7C7 100%);
  border-radius: 24px;
  padding: 32px 26px 26px;
  max-width: 320px; width: 100%;
  text-align: center;
  font-family: Nunito, sans-serif;
  position: relative;
  transform: scale(.7);
  opacity: 0;
  transition: transform .45s cubic-bezier(.34,1.7,.64,1), opacity .3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.tsiky-anim-overlay.show .tsiky-anim-card {
  transform: scale(1);
  opacity: 1;
}

/* Coin stage : zone du coin + effets */
.tsiky-anim-coin-stage {
  position: relative;
  width: 110px; height: 110px;
  margin: 0 auto 16px;
}
.tsiky-anim-coin {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  color: #F5B027;
  filter: drop-shadow(0 6px 18px rgba(245,176,39,.55));
}

/* Coin pulse — animation receveur */
.tsiky-coin-pulse {
  animation: tsikyCoinPulse 1.4s ease-in-out infinite;
}
@keyframes tsikyCoinPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.18) rotate(8deg); filter: drop-shadow(0 8px 24px rgba(245,176,39,.8)); }
}

/* Coin fly — animation sender (vole + se transforme en check) */
.tsiky-coin-fly {
  animation: tsikyCoinFly 1.6s cubic-bezier(.5,-.3,.5,1.3) forwards;
}
@keyframes tsikyCoinFly {
  0%   { transform: translate(0,0) scale(1) rotate(0); opacity: 1; }
  40%  { transform: translate(20px,-30px) scale(.8) rotate(360deg); opacity: 1; }
  70%  { transform: translate(60px,-100px) scale(.4) rotate(720deg); opacity: .6; }
  100% { transform: translate(120px,-180px) scale(0) rotate(1080deg); opacity: 0; }
}

/* Trail derrière le coin */
.tsiky-anim-trail {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,176,39,.55), transparent 70%);
  transform: translate(-50%, -50%);
  animation: tsikyTrail 1.6s ease-out forwards;
  animation-delay: .3s;
}
@keyframes tsikyTrail {
  0%   { width: 0; height: 0; opacity: 0; }
  60%  { width: 200px; height: 200px; opacity: .4; }
  100% { width: 280px; height: 280px; opacity: 0; }
}

/* Checkmark qui apparaît après le coin */
.tsiky-anim-check {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  color: #10B981;
  background: rgba(16,185,129,.18);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.3);
  animation: tsikyCheckIn .5s cubic-bezier(.34,1.7,.64,1) forwards;
  animation-delay: 1.2s;
}
@keyframes tsikyCheckIn {
  0%   { opacity: 0; transform: scale(.3); }
  100% { opacity: 1; transform: scale(1); }
}

/* Sparkles autour du coin (receveur seulement) */
.tsiky-anim-sparkle {
  position: absolute;
  width: 8px; height: 8px;
  background: #F5B027;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 12px rgba(245,176,39,.9);
}
.tsiky-anim-sparkle.s1 { top: 5%; left: 15%; animation: tsikySparkle 1.6s ease-out infinite; animation-delay: 0s; }
.tsiky-anim-sparkle.s2 { top: 18%; right: 8%; animation: tsikySparkle 1.6s ease-out infinite; animation-delay: .4s; }
.tsiky-anim-sparkle.s3 { bottom: 12%; left: 10%; animation: tsikySparkle 1.6s ease-out infinite; animation-delay: .8s; }
.tsiky-anim-sparkle.s4 { bottom: 5%; right: 18%; animation: tsikySparkle 1.6s ease-out infinite; animation-delay: 1.2s; }
@keyframes tsikySparkle {
  0%   { opacity: 0; transform: scale(0); }
  40%  { opacity: 1; transform: scale(1.5); }
  100% { opacity: 0; transform: scale(0); }
}

/* Amount big */
.tsiky-anim-amount {
  font-size: 52px;
  font-weight: 900;
  color: #1C1C2E;
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 4px;
  animation: tsikyAmountIn .6s cubic-bezier(.34,1.7,.64,1) both;
  animation-delay: .15s;
}
.tsiky-anim-amount-plus { color: #10B981; }
@keyframes tsikyAmountIn {
  0%   { opacity: 0; transform: scale(.5); }
  100% { opacity: 1; transform: scale(1); }
}

.tsiky-anim-unit {
  font-size: 14px; font-weight: 800;
  color: #6E3F00;
  margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 5px;
  text-transform: uppercase; letter-spacing: .5px;
}
.tsiky-anim-unit .fa-coins { color: #F5B027; }

.tsiky-anim-peer {
  font-size: 14px; font-weight: 700;
  color: #6B6B7A;
  margin-bottom: 12px;
}
.tsiky-anim-peer strong { color: #1C1C2E; }

.tsiky-anim-message {
  background: rgba(255,255,255,.7);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-style: italic;
  color: #1C1C2E;
  margin-bottom: 14px;
  font-weight: 600;
  word-wrap: break-word;
}

.tsiky-anim-close-btn {
  appearance: none; border: none;
  background: #1C1C2E;
  color: #fff;
  font-family: Nunito, sans-serif;
  font-weight: 900;
  font-size: 14px;
  padding: 11px 30px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .15s ease;
}
.tsiky-anim-close-btn:active { transform: scale(.97); }

/* Sender variant : background plus chaud */
.tsiky-anim-sent .tsiky-anim-card {
  background: linear-gradient(135deg, #FFF4E0 0%, #FFD9B3 100%);
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .tsiky-anim-card {
    background: linear-gradient(135deg, #2A1F0A 0%, #3D2D10 100%);
  }
  .tsiky-anim-sent .tsiky-anim-card {
    background: linear-gradient(135deg, #3A2A0E 0%, #4A3A1C 100%);
  }
  .tsiky-anim-amount { color: #fff; }
  .tsiky-anim-amount-plus { color: #34D399; }
  .tsiky-anim-unit { color: #FFE7C7; }
  .tsiky-anim-peer { color: rgba(255,255,255,.65); }
  .tsiky-anim-peer strong { color: #fff; }
  .tsiky-anim-message { background: rgba(255,255,255,.08); color: #fff; }
  .tsiky-anim-close-btn { background: #F5B027; color: #1C1C2E; }
}

@media (prefers-reduced-motion: reduce) {
  .tsiky-coin-pulse, .tsiky-coin-fly,
  .tsiky-anim-trail, .tsiky-anim-check,
  .tsiky-anim-sparkle, .tsiky-anim-amount { animation: none !important; }
  .tsiky-anim-coin { transform: none !important; opacity: 1 !important; }
}

/* ─── Dark mode ───────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  .tsiky-pin-card, .tsiky-send-sheet, .tsiky-recv-sheet { background: #1C1C2E; color: #fff; }
  .tsiky-pin-card h2, .tsiky-send-head h2, .tsiky-recv-head h2 { color: #fff; }
  .tsiky-pin-sub, .tsiky-send-recipient, .tsiky-recv-sub { color: rgba(255,255,255,.65); }
  .tsiky-pin-amount { background: rgba(245,176,39,.15); color: #fff; }
  .tsiky-pin-recipient strong, .tsiky-send-recipient strong { color: #fff; }
  .tsiky-pin-close, .tsiky-send-close, .tsiky-recv-close {
    background: rgba(255,255,255,.1); color: #fff;
  }
  .tsiky-pin-submit { background: #F5B027; color: #1C1C2E; }
  .tsiky-send-balance-row { background: rgba(245,176,39,.15); color: #fff; }
  .tsiky-send-balance-val { color: #fff; }
  .tsiky-send-amount-wrap, .tsiky-send-message, .tsiky-recv-field input { background: rgba(255,255,255,.06); color: #fff; }
  .tsiky-send-amount { color: #fff; }
  .tsiky-send-quick button { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.15); }
  .tsiky-recv-qr { background: rgba(255,255,255,.05); }
  .tsiky-recv-qr-text { background: rgba(255,255,255,.08); color: #fff; }
  .tsiky-recv-icon { color: #fff; }
}

@media (prefers-reduced-motion: reduce) {
  .tsiky-pin-overlay, .tsiky-pin-card,
  .tsiky-send-overlay, .tsiky-send-sheet,
  .tsiky-recv-overlay, .tsiky-recv-sheet,
  .tsiky-scan-overlay { transition: none !important; }
  .tsiky-pin-dots.shake { animation: none !important; }
}
