.direct-crypto-picker {
  margin: 14px 0;
  text-align: left;
}
.direct-crypto-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text, #e8e8e8);
  font-size: .78rem;
  font-weight: 700;
}
.direct-crypto-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.direct-crypto-option {
  position: relative;
  min-height: 58px;
  padding: 8px 6px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .035);
  color: var(--text, #e8e8e8);
  cursor: pointer;
  font: inherit;
  font-size: .7rem;
  font-weight: 700;
  transition: border-color .18s ease, background .18s ease;
}
.direct-crypto-option:hover { background: rgba(255, 255, 255, .07); }
.direct-crypto-option:focus-visible { outline: 2px solid var(--accent, #5865f2); outline-offset: 2px; }
.direct-crypto-option.selected {
  border-color: #a78bfa;
  background: rgba(124, 58, 237, .22);
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, .38);
}
.direct-crypto-option img { display: block; width: 22px; height: 22px; margin: 0 auto 5px; }
.direct-crypto-symbol { display: block; }
.direct-crypto-check {
  position: absolute;
  top: 5px;
  right: 5px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #a78bfa;
  color: #09090b;
  font-size: .68rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(.75);
  transition: opacity .16s ease, transform .16s ease;
}
.direct-crypto-option.selected .direct-crypto-check { opacity: 1; transform: scale(1); }
.direct-crypto-state { min-height: 20px; margin-top: 9px; color: var(--dim, var(--text-dim, #aaa)); font-size: .74rem; }
.direct-crypto-state strong { color: var(--text, #e8e8e8); }
.direct-crypto-state-check { color: #a78bfa; font-weight: 900; }
html[data-yk-theme="light"] .direct-crypto-option { border-color: rgba(0,0,0,.14); background: rgba(0,0,0,.035); color: #111; }
html[data-yk-theme="light"] .direct-crypto-option.selected { border-color: #7c3aed; background: rgba(124,58,237,.12); box-shadow: inset 0 0 0 1px rgba(124,58,237,.22); }
html[data-yk-theme="light"] .direct-crypto-state strong { color: #111; }
.direct-crypto-dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: min(520px, calc(100vw - 28px));
  max-height: calc(100dvh - 28px);
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: #0e0e12;
  color: #e8e8e8;
}
.direct-crypto-dialog::backdrop { background: rgba(0, 0, 0, .78); }
.direct-crypto-dialog h2 { margin: 0 0 4px; font-size: 1.1rem; }
.direct-crypto-dialog p { margin: 0 0 14px; color: rgba(255, 255, 255, .58); font-size: .82rem; }
.direct-crypto-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }
.direct-crypto-actions button {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.direct-crypto-actions button.primary { border-color: #5865f2; background: #5865f2; }
.direct-crypto-actions button:disabled { opacity: .45; cursor: not-allowed; }
@media (max-width: 560px) {
  .direct-crypto-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
  .direct-crypto-option, .direct-crypto-check { transition: none; }
}
