:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f6f8fb;
  color: #162033;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 520px);
  background: #ffffff;
  border: 1px solid #d9e1ee;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgb(22 32 51 / 12%);
  padding: 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #5a6b85;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.15;
}

.status {
  border-radius: 12px;
  background: #eef4ff;
  color: #23406f;
  padding: 14px 16px;
}

.status.error {
  background: #fff1f0;
  color: #9f1d16;
}

.status.success {
  background: #ecfdf3;
  color: #087443;
}

.details {
  margin-top: 16px;
}

dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #edf1f6;
  padding-bottom: 12px;
}

dt {
  color: #64748b;
  font-size: 0.9rem;
}

dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.address-row {
  align-items: flex-start;
}

#target-wallet,
#deposit-address {
  max-width: 260px;
  overflow-wrap: anywhere;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

button {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.primary {
  background: #155eef;
  color: #ffffff;
}

.secondary {
  background: #eef2f7;
  color: #253247;
}
