.currency-modal {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
}

.currency-modal .modal-header {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
}

.currency-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.currency-list li {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #f9f9f9;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

.currency-list li img {
  margin-right: 10px;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.currency-list li:hover {
  background: linear-gradient(135deg, #e3f2fd, #e0f7fa);
  transform: translateX(5px);
  cursor: pointer;
}

.commodity-modal {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
}

.commodity-modal .modal-header {
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
}

.commodity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.commodity-list li {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #fdf5f0;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

.commodity-list li img {
  margin-right: 10px;
  border-radius: 3px;
}

.commodity-list li:hover {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  transform: translateX(5px);
  cursor: pointer;
}



.crypto-modal {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
}

.crypto-modal .modal-header {
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
}

.crypto-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.crypto-list li {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #f9f9f9;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

.crypto-list li img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.crypto-list li:hover {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  transform: translateX(5px);
  cursor: pointer;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/


  /* ====== Green Theme Variables ====== */
  :root{
    --green-600:#16a34a;
    --green-500:#22c55e;
    --green-400:#34d399;
    --green-700:#15803d;
    --ink-900:#0b1220;
    --ink-600:#334155;
    --card:#0f172a;
    --card-2:#0b1220;
    --ring:hsla(142,72%,29%,.35);
    --border:rgba(255,255,255,.06);
    --shadow: 0 10px 30px rgba(22,163,74,.18);
    --radius: 18px;
  }

  .registrations{
    padding: 32px 16px;
    background: linear-gradient(180deg, rgba(20,83,45,.06), rgba(20,83,45,.0));
  }
  .reg-container{
    max-width: 980px;
    margin: 0 auto;
  }
  .reg-header{
    text-align:center;
    margin-bottom: 18px;
  }
  .reg-title{
    margin:0;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--ink-900);
  }
  .reg-subtitle{
    margin:6px 0 0;
    color: var(--ink-600);
    font-size: 14px;
  }

  /* ====== Grid ====== */
  .reg-grid{
    display:grid;
    grid-template-columns: 1fr;
    gap:14px;
  }
  @media (min-width:720px){
    .reg-grid{ grid-template-columns: 1fr 1fr; }
  }

  /* ====== Cards ====== */
  .reg-card{
    position:relative;
    background:
      linear-gradient(180deg, rgba(34,197,94,.08), rgba(34,197,94,0)) padding-box,
      linear-gradient(135deg, rgba(52,211,153,.9), rgba(34,197,94,.9)) border-box;
    border:1.5px solid transparent;
    border-radius: var(--radius);
    padding:18px 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(2px);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .reg-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 42px rgba(22,163,74,.25);
  }

  .reg-label{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
  }
  .reg-icon{
    width:22px;height:22px;
    fill:var(--green-600);
    filter: drop-shadow(0 2px 6px rgba(34,197,94,.35));
  }
  .reg-name{
    font-weight:600;
    color:#0a0f1a;
    letter-spacing:.2px;
  }

  .reg-value{
    display:flex;
    align-items:center;
    gap:10px;
    justify-content:space-between;
    padding:10px 12px;
    background: linear-gradient(180deg, rgba(15,23,42,.75), rgba(15,23,42,.88));
    border:1px dashed var(--border);
    border-radius: 12px;
  }
  .reg-code{
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    font-size: 15px;
    color: #e7ffe5;
    text-shadow: 0 0 12px rgba(34,197,94,.35);
    user-select: all;
    white-space: nowrap;
  }

  .reg-copy{
    appearance:none;
    border:none;
    cursor:pointer;
    padding:8px 12px;
    border-radius: 10px;
    background: radial-gradient(120% 140% at 30% 20%, v


