.rvc-crypto-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rvc-crypto-modal.is-open {
  display: flex;
}

.rvc-crypto-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.rvc-crypto-modal__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow: auto;
  background: #000;
  border: 1px solid #1a3a44;
  padding: 28px 24px 24px;
  color: #fff;
  font-family: "Noto Sans", system-ui, sans-serif;
}

.rvc-crypto-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
}

.rvc-crypto-modal__close:hover {
  opacity: 1;
}

.rvc-crypto-modal__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
}

.rvc-crypto-modal__hint {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #b8b8b8;
}

.rvc-crypto-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rvc-crypto-wallet {
  background: #0d0d0d;
  border: 1px solid #003349;
  padding: 14px 14px 12px;
}

.rvc-crypto-wallet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rvc-crypto-wallet__name {
  font-size: 16px;
  font-weight: 700;
}

.rvc-crypto-wallet__ticker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7eb8c9;
}

.rvc-crypto-wallet__row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.rvc-crypto-wallet__addr {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
  word-break: break-all;
  color: #e8e8e8;
}

.rvc-crypto-wallet__copy {
  flex-shrink: 0;
  border: 0;
  background: #003349;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
}

.rvc-crypto-wallet__copy:hover {
  background: #004d66;
}

.rvc-crypto-wallet__copy.is-copied {
  background: #14532d;
}
