:root {
  --bg: #0a0f1e;
  --bg2: #0f1628;
  --card: #131d35;
  --card2: #1a2540;
  --border: rgba(255,255,255,0.07);
  --gold: #d4a72c;
  --gold2: #f0c040;
  --green: #22c55e;
  --red: #ef4444;
  --text: #e8eaf0;
  --muted: #8892a4;
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  direction: rtl;
}

/* ── Mobile wrapper ── */
.app-shell {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  padding-bottom: 80px;
}

/* ── Top bar ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg2);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.topbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.logo-icon {
  width: 40px; height: 40px;
  background: transparent;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  overflow: hidden;
}

.btn-back {
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-back:hover { background: rgba(255,255,255,0.13); }

/* ── Currency ticker ── */
.ticker-wrap {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 40px;
  display: flex; align-items: center;
}
.ticker {
  display: flex; gap: 32px;
  animation: ticker-slide 30s linear infinite;
  white-space: nowrap;
  padding: 0 20px;
}
@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
}
.ticker-item .pair { color: var(--text); font-weight: 600; }
.ticker-item .change.up { color: var(--green); }
.ticker-item .change.down { color: var(--red); }

/* ── Cards ── */
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.wallet-card {
  background: linear-gradient(135deg, #1a2540 0%, #0f1e3a 60%, #1a2540 100%);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,167,44,0.2);
}
.wallet-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(212,167,44,0.06);
  border-radius: 50%;
}
.wallet-card-label {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.wallet-card-subtitle { font-size: 11px; color: var(--muted); }
.wallet-balance-label { font-size: 12px; color: var(--muted); margin-top: 16px; }
.wallet-balance {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}
.wallet-code-row {
  display: flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 12px; color: var(--muted);
}
.wallet-code { font-family: monospace; font-size: 13px; color: var(--text); }
.copy-btn { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 14px; }
.wallet-holder { font-size: 13px; font-weight: 600; color: var(--text); }
.eye-btn {
  position: absolute;
  left: 22px; top: 22px;
  width: 38px; height: 38px;
  background: rgba(212,167,44,0.15);
  border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold);
}

/* ── Action buttons ── */
.actions-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 18px;
}
.action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; color: var(--text);
  text-decoration: none;
}
.action-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.action-icon.green { background: rgba(34,197,94,0.15); color: var(--green); }
.action-icon.red { background: rgba(239,68,68,0.15); color: var(--red); }
.action-icon.gold { background: rgba(212,167,44,0.15); color: var(--gold); }
.action-icon.purple { background: rgba(139,92,246,0.15); color: #a78bfa; }
.action-btn span { font-size: 11px; color: var(--muted); text-align: center; line-height: 1.3; }

/* ── Stats cards ── */
.stats-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 0 18px;
}
.stat-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
}
.stat-label { font-size: 11px; color: var(--muted); text-align: right; }
.stat-amount { font-size: 20px; font-weight: 700; margin-top: 4px; text-align: right; }
.stat-amount.red { color: var(--red); }
.stat-amount.green { color: var(--green); }
.stat-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  float: left;
}
.stat-icon.red-bg { background: rgba(239,68,68,0.2); }
.stat-icon.green-bg { background: rgba(34,197,94,0.2); }

/* ── Section header ── */
.section-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 18px;
}
.section-title { font-size: 16px; font-weight: 700; }
.section-link { font-size: 12px; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 4px; }

/* ── Transaction item ── */
.tx-list { padding: 0 18px; display: flex; flex-direction: column; gap: 2px; }
.tx-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 2px;
}
.tx-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.tx-icon.out { background: rgba(239,68,68,0.15); color: var(--red); }
.tx-icon.in { background: rgba(34,197,94,0.15); color: var(--green); }
.tx-info { flex: 1; margin-right: 12px; text-align: right; }
.tx-type { font-size: 13px; font-weight: 600; }
.tx-ref { font-size: 10px; color: var(--muted); margin-top: 2px; font-family: monospace; }
.tx-date { font-size: 10px; color: var(--muted); }
.tx-amount { font-size: 16px; font-weight: 700; text-align: left; }
.tx-amount.out { color: var(--red); }
.tx-amount.in { color: var(--green); }

/* ── Bottom nav ── */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 430px; margin: 0 auto;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 8px 0;
  z-index: 200;
}
.nav-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; color: var(--muted);
  font-size: 10px; padding: 6px 0;
  transition: color 0.2s;
}
.nav-item.active { color: var(--gold); }
.nav-item .nav-icon { font-size: 20px; }
.nav-center {
  flex: 0 0 60px;
  display: flex; align-items: center; justify-content: center;
}
.nav-add-btn {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(212,167,44,0.4);
  margin-top: -20px;
}

/* ── Auth pages ── */
.auth-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 30px 24px;
}
.auth-logo {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  margin-bottom: 36px;
}
.auth-logo-icon {
  width: 160px; height: 160px;
  background: transparent;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  overflow: hidden;
}
.auth-logo-text { font-size: 22px; font-weight: 800; }
.auth-logo-sub { font-size: 12px; color: var(--muted); }

.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--card);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.auth-title { font-size: 20px; font-weight: 700; margin-bottom: 22px; text-align: center; }

/* ── Form controls ── */
.form-group { margin-bottom: 16px; }
.form-label { font-size: 13px; color: var(--muted); margin-bottom: 6px; display: block; }
.form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 13px 16px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  text-align: right;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--muted); }

.form-input-group {
  display: flex; gap: 8px;
}
.form-input-group .form-input:first-child { width: 90px; flex-shrink: 0; text-align: center; }

.btn {
  width: 100%;
  padding: 14px;
  border: none; border-radius: var(--radius-sm);
  font-family: 'Cairo', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold2), #c8960a);
  color: #0a0f1e;
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-sm { padding: 10px 18px; font-size: 13px; width: auto; }

.auth-links {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 20px;
}
.auth-link { color: var(--gold); font-size: 13px; text-decoration: none; }
.auth-divider { color: var(--muted); font-size: 12px; }

/* ── OTP inputs ── */
.otp-row { display: flex; gap: 10px; justify-content: center; margin: 16px 0; }
.otp-input {
  width: 56px; height: 56px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 22px; font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}
.otp-input:focus { border-color: var(--gold); }

/* ── Country select ── */
.country-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 500;
  display: flex; align-items: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.country-modal.open { opacity: 1; pointer-events: all; }
.country-sheet {
  width: 100%;
  background: var(--card2);
  border-radius: 20px 20px 0 0;
  padding: 20px;
  max-height: 70vh; overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.country-modal.open .country-sheet { transform: translateY(0); }
.country-search {
  width: 100%; padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text); font-family: 'Cairo', sans-serif;
  font-size: 14px; outline: none; margin-bottom: 12px;
  text-align: right;
}
.country-item {
  padding: 12px 10px; border-radius: 10px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; transition: background 0.15s;
  font-size: 14px;
}
.country-item:hover { background: var(--card); }

/* ── Send money methods grid ── */
.methods-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 0 18px;
}
.method-btn {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; text-decoration: none; color: var(--text);
  transition: border-color 0.2s, transform 0.1s;
}
.method-btn:hover { border-color: var(--gold); transform: translateY(-2px); }
.method-img {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.method-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.method-name { font-size: 13px; font-weight: 600; text-align: center; }

/* ── Country buttons (send money page) ── */
.country-btns { padding: 0 18px; display: flex; flex-direction: column; gap: 14px; }
.country-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: var(--text);
  transition: border-color 0.2s;
  cursor: pointer;
}
.country-card:hover { border-color: var(--gold); }
.country-flag {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.country-flag img { width: 100%; height: 100%; object-fit: cover; }
.country-info h3 { font-size: 16px; font-weight: 700; }
.country-info p { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── Transfer form ── */
.transfer-page { padding: 0 18px; }
.balance-badge {
  background: var(--card);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.balance-badge .label { font-size: 12px; color: var(--muted); }
.balance-badge .amount { font-size: 18px; font-weight: 700; color: var(--gold); }
.fee-info {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 8px;
  font-size: 13px; color: var(--green);
  display: flex; justify-content: space-between;
}

/* ── Receipt ── */
.receipt-page { padding: 0 18px 40px; }
.receipt-success {
  display: flex; flex-direction: column; align-items: center;
  padding: 32px 0 24px;
}
.receipt-check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--green);
  margin-bottom: 16px;
  animation: pop 0.4s ease;
}
@keyframes pop {
  0% { transform: scale(0.5); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.receipt-label { font-size: 14px; color: var(--muted); }
.receipt-amount { font-size: 36px; font-weight: 800; color: var(--gold2); margin-top: 4px; }

.receipt-card { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); }
.receipt-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.receipt-row:last-child { border-bottom: none; }
.receipt-key { font-size: 13px; color: var(--muted); }
.receipt-val { font-size: 13px; font-weight: 600; font-family: monospace; text-align: left; }
.receipt-val.gold { color: var(--gold2); font-size: 15px; }
.receipt-footer { text-align: center; margin-top: 28px; font-size: 12px; color: var(--muted); }

/* ── Admin ── */
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th, .admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: right; }
.admin-table th { color: var(--muted); font-weight: 600; }
.badge { padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.badge-green { background: rgba(34,197,94,0.15); color: var(--green); }
.badge-red { background: rgba(239,68,68,0.15); color: var(--red); }

/* ── Misc ── */
.page-content { padding: 18px 0; display: flex; flex-direction: column; gap: 20px; }
.section-label { font-size: 11px; color: var(--muted); padding: 0 18px; text-transform: uppercase; letter-spacing: 1px; }

.toast {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  padding: 12px 24px; border-radius: 30px;
  font-size: 14px; font-weight: 600; z-index: 1000;
  background: var(--card); color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: fadein 0.3s ease, fadeout 0.3s 3s forwards;
}
.toast-error { background: rgba(239,68,68,0.9); color: #fff; }
.toast-success { background: rgba(34,197,94,0.9); color: #fff; }
@keyframes fadein { from { opacity:0; top:10px; } to { opacity:1; top:20px; } }
@keyframes fadeout { to { opacity:0; } }

.greeting-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0 18px;
}
.greeting-name { font-size: 18px; font-weight: 700; }
.greeting-wave { font-size: 20px; }
.greeting-time {
  background: rgba(212,167,44,0.12);
  border: 1px solid rgba(212,167,44,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px; color: var(--gold);
}

.balances-section {
  padding: 0 18px;
}
.balances-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.balances-title { font-size: 15px; font-weight: 700; }
.balances-total { font-size: 12px; color: var(--muted); }
.balances-total span { color: var(--gold); font-weight: 700; }
.currency-row {
  background: var(--card);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--border);
}
.currency-name { font-size: 14px; font-weight: 600; color: var(--muted); }
.currency-amount { font-size: 18px; font-weight: 700; }

/* ── Admin layout ── */
.admin-layout {
  max-width: 1100px; margin: 0 auto; padding: 24px;
  font-family: 'Cairo', sans-serif;
  direction: rtl;
}
.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.admin-title { font-size: 22px; font-weight: 800; color: var(--gold); }
.admin-nav { display: flex; gap: 12px; }
.admin-nav a {
  color: var(--muted); text-decoration: none; font-size: 14px;
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.admin-nav a:hover { color: var(--gold); border-color: var(--gold); }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .admin-grid { grid-template-columns: 1fr; } }
.admin-card { background: var(--card); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.admin-card-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--gold); }

/* ── Currency flags ── */
.currency-flag { font-size: 18px; margin-left: 6px; vertical-align: middle; }

/* ── Action icon blue ── */
.action-icon.blue { background: rgba(59,130,246,0.15); color: #3b82f6; }

/* ── Admin menu grid ── */
.admin-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.admin-menu-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.admin-menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212,167,44,0.1);
}
.admin-menu-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.admin-menu-label { font-size: 14px; font-weight: 600; text-align: center; }
.admin-menu-count {
  position: absolute;
  top: -6px; left: -6px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0f1e;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── Upload boxes ── */
.upload-box {
  width: 100%;
  min-height: 160px;
  border: 2px dashed var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
  overflow: hidden;
  background: var(--bg);
}
.upload-box:hover { border-color: var(--gold); }
.upload-placeholder {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px;
  color: var(--muted);
}

/* ── Badge yellow ── */
.badge-yellow { background: rgba(250,204,21,0.15); color: #eab308; }

/* ── Admin registration requests list ── */
.admin-req-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.admin-req-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s;
}
.admin-req-card:hover { border-color: var(--gold); }
.admin-req-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.admin-req-name { font-size: 16px; font-weight: 700; }
.admin-req-info { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ── Admin detail card ── */
.admin-detail-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.admin-detail-section { margin-bottom: 8px; }
.admin-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.admin-detail-row:last-child { border-bottom: none; }
.admin-detail-label { font-size: 13px; color: var(--muted); }
.admin-detail-value { font-size: 14px; font-weight: 600; text-align: left; }
.admin-detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* ── Admin ID images ── */
.admin-id-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-id-box { text-align: center; }
.admin-id-label { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.admin-id-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.admin-id-img:hover { border-color: var(--gold); }
.admin-id-placeholder {
  width: 100%;
  height: 120px;
  background: var(--bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 13px;
  border: 1px dashed var(--border);
}

/* ── Exchange page ── */
.exchange-rates { display: flex; flex-direction: column; gap: 8px; }
.exchange-rate-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.exchange-rate-row:last-child { border-bottom: none; }
.exchange-swap-btn {
  width: 48px; height: 48px;
  margin: 8px auto;
  background: rgba(212,167,44,0.1);
  border: 1px solid rgba(212,167,44,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--gold);
  transition: background 0.2s;
}
.exchange-swap-btn:hover { background: rgba(212,167,44,0.2); }
.exchange-result {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}
.exchange-result-amount { font-size: 28px; font-weight: 800; color: var(--gold2); margin-bottom: 4px; }
.exchange-note {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: rgba(212,167,44,0.06);
  border-radius: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 700px) {
  .admin-grid { grid-template-columns: 1fr; }
  .admin-menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .admin-id-images { grid-template-columns: 1fr; }
}
@media (min-width: 431px) {
  .bottom-nav { left: 50%; right: auto; width: 430px; transform: translateX(-50%); }
}
