* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
}



/* =========================
   OVERLAY
========================= */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: block;
  z-index: 20000;
}

/* =========================
   MODAL
========================= */

.modal {
  position: fixed;
  inset: 0;
  display: block;
  z-index: 2000000;
}

/* centered card */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 780px;
  height: 540px;

  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0px 24px 80px rgba(0, 0, 0, 0.2);
}

/* =========================
   LAYOUT
========================= */

.modal-body {
  display: flex;
  height: 100%;
}

/* =========================
   LEFT SIDE
========================= */

.left {
  width: 50%;
  padding: 20px;
  border-right: 1px solid #eef0f3;
}

.header .title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.header .subtitle {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 6px;
}

.wallets {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wallets .item {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fafafa;

  font-size: 14px;
  cursor: pointer;
  transition: 0.15s;
}

.wallets .item:hover {
  background: #f3f4f6;
}

/* =========================
   RIGHT SIDE
========================= */

.right {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 30px;
  position: relative;
}

.imageitems{
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.logo {
  width: 64px;
  height: 64px;
  background: #ff6a3d;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-weight: 700;
  font-size: 22px;

  margin-bottom: 16px;
}

.r-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  max-width: 260px;
}

.terms {
  margin-top: 14px;
  font-size: 12px;
  color: #9ca3af;
}

/* =========================
   CLOSE BUTTON
========================= */

.close {
  position: absolute;
  top: 12px;
  right: 14px;

  font-size: 20px;
  cursor: pointer;
  color: #9ca3af;
}

.close:hover {
  color: #111827;
}

/* =========================
   ACTIVE STATES
========================= */

.modal.active,
.overlay.active {
  display: block;
}

* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
}

/* =========================
   TYPOGRAPHY SYSTEM
========================= */

.title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  margin-top: 6px;
}

.wallets .item {
  font-size: 14px;
  font-weight: 500;
  color: #111827;

  font-size: 15px;
    font-weight: 510;
    box-shadow: none;
    background: transparent;
    --fallback-border: 0.5px solid transparent;
    width: 100%;
    height: 56px;
    padding: 10px 20px;
    padding-right: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.r-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 10px;
}

.desc {
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  max-width: 260px;
}

.terms {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
}

.header .title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}

.header .subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  margin-top: 6px;
}

/* wallet items */
.wallets .item {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
}

/* right panel title */
.right .r-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

/* description */
.right .desc {
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  max-width: 260px;
}

/* footer */
.right .terms {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
}