﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: #fff9fc;
      color: #171217;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    a { text-decoration: none; color: inherit; }
    button, input { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
    img { max-width: 100%; }
    .hidden { display: none !important; }

    /* â”€â”€ Promo Banner â”€â”€ */
    .promo-banner {
      background: linear-gradient(90deg, #e6007e 0%, #f43f5e 50%, #e6007e 100%);
      color: #fff;
      text-align: center;
      padding: 11px 20px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .promo-pill {
      background: rgba(255,255,255,0.22);
      padding: 2px 10px;
      border-radius: 20px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* â”€â”€ Header â”€â”€ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid #f1dce8;
      padding: 14px 6%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .header-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      color: #171217;
      letter-spacing: -0.03em;
    }
    .header-brand svg { color: #e6007e; fill: #e6007e; width: 28px; height: 28px; }
    .header-back {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: #655c67;
      padding: 8px 16px;
      border-radius: 10px;
      border: 1px solid #f1dce8;
      background: #fff;
      transition: all 0.15s ease;
    }
    .header-back:hover { border-color: #e6007e; color: #e6007e; }
    .header-back svg { width: 16px; height: 16px; }

    /* â”€â”€ Main Content â”€â”€ */
    .wallet-page {
      flex: 1;
      max-width: 720px;
      width: 100%;
      margin: 0 auto;
      padding: 28px 24px 60px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    /* â”€â”€ Balance Hero Card â”€â”€ */
    .balance-card {
      background: linear-gradient(135deg, #e1147a 0%, #f43f5e 60%, #e1147a 100%);
      border-radius: 18px;
      padding: 22px 20px;
      color: #fff;
      box-shadow: 0 10px 24px -4px rgba(225,20,122,0.35);
    }
    .balance-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }
    .balance-label {
      font-size: 13px;
      font-weight: 600;
      opacity: 0.92;
    }
    .eye-toggle {
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 999px;
      padding: 6px 10px;
      display: flex;
      align-items: center;
      gap: 4px;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.15s ease;
    }
    .eye-toggle:hover { background: rgba(255,255,255,0.3); }
    .eye-toggle svg { width: 16px; height: 16px; }
    .balance-amount {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.03em;
      font-variant-numeric: tabular-nums;
      color: #fff;
      margin-bottom: 4px;
    }
    .balance-amount.hidden-val { filter: blur(8px); user-select: none; }
    .balance-updated {
      font-size: 11px;
      opacity: 0.7;
      font-weight: 500;
    }

    /* â”€â”€ Quick Actions â”€â”€ */
    .quick-actions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .action-card {
      background: #fff;
      border: 1px solid #f1dce8;
      border-radius: 14px;
      padding: 16px 12px;
      text-align: center;
      cursor: pointer;
      transition: all 0.15s ease;
      box-shadow: 0 5px 24px rgba(206,23,121,0.055);
    }
    .action-card:hover:not(.coming-soon) {
      transform: translateY(-2px);
      box-shadow: 0 10px 34px rgba(206,23,121,0.10);
      border-color: #edafd0;
    }
    .action-card.coming-soon {
      opacity: 0.55;
      cursor: not-allowed;
      pointer-events: none;
    }
    .coming-soon-badge {
      display: inline-block;
      background: #f1f5f9;
      color: #94a3b8;
      font-size: 9px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 2px 7px;
      border-radius: 4px;
      margin-top: 4px;
    }
    .action-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
    }
    .action-icon svg { width: 20px; height: 20px; }
    .action-icon.fund { background: linear-gradient(135deg, #e6007e, #ff2da6); color: #fff; }
    .action-icon.send { background: linear-gradient(135deg, #8b2fd6, #a855f7); color: #fff; }
    .action-icon.withdraw { background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff; }
    .action-card b {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: #171217;
      margin-bottom: 2px;
    }
    .action-card span {
      font-size: 11px;
      color: #918793;
      font-weight: 500;
    }

    /* â”€â”€ Section Card â”€â”€ */
    .section-card {
      background: #fff;
      border: 1px solid #f1dce8;
      border-radius: 14px;
      padding: 18px;
      box-shadow: 0 5px 24px rgba(206,23,121,0.055);
    }
    .section-title {
      font-size: 15px;
      font-weight: 800;
      color: #171217;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .badge-active {
      font-size: 10px;
      font-weight: 800;
      padding: 3px 10px;
      border-radius: 999px;
      background: #d1fae5;
      color: #065f46;
    }

    /* â”€â”€ Fund Wallet Card â”€â”€ */
    .amount-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 14px;
    }
    .amount-btn {
      background: #f8fafc;
      border: 1.5px solid #f1dce8;
      border-radius: 12px;
      padding: 13px 10px;
      font-size: 15px;
      font-weight: 700;
      color: #171217;
      text-align: center;
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .amount-btn:hover { background: #fff1f2; border-color: #fecdd3; }
    .amount-btn.active { background: #ffe5f1; border-color: #e6007e; color: #e6007e; }

    .custom-label {
      font-size: 12px;
      font-weight: 700;
      color: #655c67;
      margin-bottom: 8px;
    }
    .custom-input-wrap {
      position: relative;
      margin-bottom: 14px;
    }
    .currency-prefix {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 16px;
      font-weight: 800;
      color: #e6007e;
      pointer-events: none;
    }
    .custom-input {
      width: 100%;
      background: #f8fafc;
      border: 1px solid #f1dce8;
      border-radius: 12px;
      padding: 13px 14px 13px 34px;
      font-size: 15px;
      font-weight: 700;
      color: #171217;
      outline: none;
      transition: all 0.2s ease;
    }
    .custom-input:focus {
      background: #fff;
      border-color: #e6007e;
      box-shadow: 0 0 0 3px rgba(225,20,122,0.12);
    }
    .custom-input::placeholder { color: #918793; }

    /* Promo Code */
    .promo-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: #f8fafc;
      border: 1px dashed #f1dce8;
      border-radius: 12px;
      padding: 12px 14px;
      margin-bottom: 14px;
      font-size: 12px;
      font-weight: 700;
      color: #171217;
      cursor: pointer;
    }
    .promo-toggle span:last-child { color: #e6007e; }
    .promo-body { display: none; margin-bottom: 14px; }
    .promo-body.open { display: block; }
    .promo-row { display: flex; gap: 8px; }
    .promo-row input {
      flex: 1;
      background: #fff;
      border: 1px solid #f1dce8;
      border-radius: 8px;
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 600;
      color: #171217;
      outline: none;
    }
    .promo-row input:focus { border-color: #e6007e; }
    .promo-apply {
      background: #0f172a;
      color: #fff;
      border-radius: 8px;
      padding: 8px 14px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }
    .promo-apply:hover { background: #1e293b; }

    .cta-btn {
      width: 100%;
      background: linear-gradient(135deg, #e6007e, #ff2da6);
      color: #fff;
      border-radius: 12px;
      padding: 14px;
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 4px 14px rgba(225,20,122,0.28);
      transition: all 0.2s ease;
      margin-bottom: 12px;
    }
    .cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(225,20,122,0.35); }
    .cta-btn svg { width: 18px; height: 18px; }

    .trust-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      color: #918793;
    }
    .trust-badge svg { color: #16a34a; width: 14px; height: 14px; }

    /* â”€â”€ DVA Card â”€â”€ */
    .dva-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 14px;
    }
    .dva-field {
      background: #f8fafc;
      border-radius: 10px;
      padding: 10px 12px;
    }
    .dva-label {
      display: block;
      font-size: 10px;
      font-weight: 700;
      color: #918793;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }
    .dva-value {
      display: block;
      font-size: 14px;
      font-weight: 800;
      color: #171217;
      overflow-wrap: break-word;
      word-break: normal;
    }
    .dva-value.mono {
      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      letter-spacing: 1px;
    }
    .dva-copy-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #f1f5f9;
      border: 1px solid #f1dce8;
      border-radius: 10px;
      padding: 9px 14px;
      font-size: 12px;
      font-weight: 700;
      color: #171217;
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .dva-copy-btn:hover { background: #e2e8f0; }
    .dva-copy-btn svg { width: 14px; height: 14px; }

    /* â”€â”€ Transaction History â”€â”€ */
    .filter-chips {
      display: flex;
      gap: 8px;
      margin-bottom: 14px;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .filter-chips::-webkit-scrollbar { display: none; }
    .filter-chip {
      background: #f8fafc;
      border: 1px solid #f1dce8;
      border-radius: 999px;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 700;
      color: #655c67;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.15s ease;
    }
    .filter-chip:hover { background: #fff1f2; border-color: #fecdd3; }
    .filter-chip.active { background: #e6007e; border-color: #e6007e; color: #fff; }

    .table-wrap {
      overflow-x: auto;
      border-radius: 14px;
      border: 1px solid #f1dce8;
      background: #fff;
    }
    .tx-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 12px;
    }
    .tx-table thead th {
      text-align: left;
      padding: 10px 12px;
      font-size: 11px;
      font-weight: 700;
      color: #918793;
      white-space: nowrap;
      border-bottom: 1px solid #f1dce8;
    }
    .tx-table tbody td {
      padding: 11px 12px;
      border-bottom: 1px solid #f1dce8;
      color: #171217;
      white-space: nowrap;
    }
    .tx-table tbody tr:last-child td { border-bottom: none; }
    .tx-table tbody tr:hover { background: #fff1f7; }
    .tx-table .amount.positive { color: #16a34a; font-weight: 700; }
    .tx-table .amount.negative { color: #dc2626; font-weight: 700; }
    .tx-table .status-badge {
      display: inline-flex;
      padding: 3px 8px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 700;
    }
    .status-badge.success { background: #eaf8ef; color: #16a34a; }
    .status-badge.pending { background: #fdf0de; color: #b45309; }
    .status-badge.failed { background: #fdeaea; color: #dc2626; }

    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 14px;
    }
    .page-btn {
      padding: 8px 18px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #f1dce8;
      color: #655c67;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .page-btn:hover:not(:disabled) { background: #fff1f7; color: #171217; }
    .page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
    .page-info { font-size: 12px; color: #918793; }

    /* â”€â”€ Footer â”€â”€ */
    .site-footer {
      background: #171217;
      color: #fff;
      padding: 48px 6% 24px;
      margin-top: auto;
    }
    .footer-cols {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 32px;
      max-width: 720px;
      margin: 0 auto 36px;
    }
    .footer-col h5 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 14px;
      color: #f8fafc;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a {
      color: #94a3b8;
      font-size: 13px;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #fff; }
    .footer-brand-desc {
      color: #94a3b8;
      font-size: 13px;
      line-height: 1.6;
    }
    .footer-bottom {
      max-width: 720px;
      margin: 0 auto;
      padding-top: 18px;
      border-top: 1px solid #1e293b;
      display: flex;
      justify-content: space-between;
      color: #94a3b8;
      font-size: 12px;
      gap: 12px;
      flex-wrap: wrap;
    }
    .footer-bottom a { color: #94a3b8; }
    .footer-bottom a:hover { color: #fff; }

    /* â”€â”€ Responsive â”€â”€ */
    @media (max-width: 640px) {
      .site-header { padding: 12px 16px; }
      .header-brand { font-size: 19px; }
      .header-brand img { width: 24px; height: 24px; }
      .header-back { font-size: 12px; padding: 7px 12px; }
      .wallet-page { padding: 16px 14px 48px; gap: 14px; }
      .balance-card { padding: 18px 16px; }
      .balance-amount { font-size: 28px; }
      .quick-actions { gap: 8px; }
      .action-card { padding: 14px 8px; }
      .action-card b { font-size: 12px; }
      .action-card span { font-size: 10px; }
      .coming-soon-badge { font-size: 8px; padding: 1px 5px; }
      .section-card { padding: 16px; }
      .amount-grid { gap: 8px; }
      .dva-grid { gap: 8px; }
      .dva-grid .dva-field:nth-child(odd) { grid-column: 1 / -1; }
      .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
      .promo-banner { padding: 10px 14px; font-size: 12px; }
      .tx-table { font-size: 11px; }
      .tx-table thead th { padding: 8px 10px; font-size: 10px; }
      .tx-table tbody td { padding: 9px 10px; }
      .filter-chips { gap: 6px; }
      .filter-chip { padding: 5px 12px; font-size: 11px; }
    }
    @media (max-width: 420px) {
      .quick-actions { grid-template-columns: repeat(3, 1fr); }
      .action-icon { width: 36px; height: 36px; }
      .action-icon svg { width: 17px; height: 17px; }
      .footer-cols { grid-template-columns: 1fr; }
      .amount-grid { grid-template-columns: 1fr 1fr; }
      .dva-grid .dva-field:nth-child(odd) { grid-column: auto; }
      .dva-grid .dva-field { grid-column: 1 / -1; }
    }