@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(./inter.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
html {
  font-family: Inter, sans-serif;
  background-color: #281549;
  color: #ffffff;
}

h1 {
  margin-top: 10px;
  margin-bottom: 20px;
  text-shadow: 0px 0px 4px rgb(255, 255, 255);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
}

.card {
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 18px rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(6px);
}

.card h2 {
  margin: 0 0 12px;
  font-weight: 700;
  color: #9c9c9c;
}
.card p {
  line-height: 1.6;
  color: #e8e0f5;
}

.button {
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.button:hover {
  background: rgba(255, 255, 255, 0.12);
}
.button:disabled,
.button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.1); /* brighter */
  border-color: rgba(255, 255, 255, 0.16);
  color: #d8d2e8; /* softer white, not gray */
  box-shadow: none;
  pointer-events: none;
}

.button:disabled:hover,
.button[disabled]:hover {
  background: rgba(255, 255, 255, 0.1); /* prevent hover change */
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.lead {
  font-size: 16px;
  font-weight: 400;
  color: #dbd0ee; /* softer white */
  margin-bottom: 16px; /* space before next section */
  max-width: 680px; /* improves readability */
}

.starting-buttons-container {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}
.starting-buttons-container .button {
  flex: 1;
}
.wizard-buttons-container {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.wizard-buttons-container > :last-child {
  margin-left: auto;
}

.info-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(181, 108, 255, 0.8),
    rgba(181, 108, 255, 0.6)
  );
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  /* cursor: help; */
  cursor: pointer;
  vertical-align: middle;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(181, 108, 255, 0.3);
  transition: all 0.15s ease;
}

.info-icon:hover {
  background: linear-gradient(
    135deg,
    rgba(181, 108, 255, 1),
    rgba(181, 108, 255, 0.8)
  );
  box-shadow: 0 4px 12px rgba(181, 108, 255, 0.5);
  transform: scale(1.05);
}

.button-wallet {
  width: 100%;
  padding: 12px 16px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.flex-row-space-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4px;
}
.flex-column-flex-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.text-muted {
  color: #9c9c9c;
}

.icon-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.readywallet-bottom-buttons-container {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}

.readywallet-parts-buttons-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.w-150 {
  width: 150px;
}
.w-640 {
  width: 640px;
}
.ml-8 {
  margin-left: 8px;
}
.mr-8 {
  margin-right: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}
.mt-8 {
  margin-top: 8px;
}
.mb-24 {
  margin-bottom: 24px;
}
.w-full {
  width: 100%;
}

.code {
  font-family: ui-monospace, monospace;
}
