:root {
  --bg: #FFFFFF;
  --card-bg: #FFFFFF;
  --border-light: rgba(0, 0, 0, 0.04);
  --text-primary: #1A1D2E;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --p: #6D28D9;
  --p-light: #EDE9FE;
  --p-dark: #5B21B6;
  --p-gradient: linear-gradient(135deg, #8B5CF6, #6D28D9);
  --p-soft: rgba(109, 40, 217, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #f8fafc; color: var(--text-primary); font-size: 14px; line-height: 1.6; min-height: 100vh; padding-bottom: 90px; -webkit-font-smoothing: antialiased; }

.screen { display: none; min-height: 100vh; }
.screen.active { display: block; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
}
.modal.hidden { display: none !important; }
.modal-content {
  background: #FFFFFF;
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}
.modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #EF4444;
  color: #fff;
  border: 2px solid #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #2D2D3A;
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--p);
  color: var(--p);
  box-shadow: none;
}

.input {
  width: 100%;
  padding: 10px 14px;
  background: #FAFBFC;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
}
.input:focus {
  outline: none;
  border-color: var(--p);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.10);
  background: #fff;
}

.amount-input-wrap {
  display: flex;
  align-items: center;
  margin: 6px 0 14px;
}
.amount-input-wrap .input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px;
  flex: 1;
}
.amount-input-wrap .currency-symbol {
  padding: 10px 16px;
  background: #FAFBFC;
  border: 1.5px solid #E5E7EB;
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  height: 100%;
  min-height: 40px;
  line-height: 1;
}

header {
  background: #ffffff;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--p);
  letter-spacing: -0.3px;
  font-family: 'Inter', sans-serif;
}
.logo i {
  font-size: 26px;
  background: var(--p-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header-actions { display: flex; gap: 10px; align-items: center; }
.badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--p-soft);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  font-family: 'Inter', sans-serif;
}
.badge-icon i { font-size: 20px; }
.notif-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #EF4444;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  font-family: 'Inter', sans-serif;
}
.notif-badge.hidden { display: none; }

main {
  padding: 24px 16px 40px;
  max-width: 400px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.02);
  min-height: calc(100vh - 140px);
}

@media (min-width: 768px) {
  main { max-width: 100%; margin: 0; padding: 24px 32px; }
  .balance-panel, .history-container, .quick-stats, .transfer-card { max-width: 700px; }
}

#greet {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
#greet span { color: var(--text-primary); white-space: nowrap; overflow: hidden; flex: 1 1 auto; min-width: 0; font-size: 18px; }

.balance-panel {
  background: var(--p-gradient);
  border-radius: var(--radius);
  padding: 20px 32px 16px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(109, 40, 217, 0.25);
  display: flex;
  flex-direction: column;
  min-height: 160px;
  border: 3px solid var(--p);
}
.balance-panel::after { content: ''; position: absolute; top: -40%; right: -20%; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; pointer-events: none; }
.balance-panel .label { font-size: 13px; letter-spacing: 1px; opacity: 0.8; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-weight: 400; }
.balance-panel .label i { font-size: 14px; opacity: 0.9; }
.balance-panel .amount { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; overflow: visible; white-space: nowrap; margin-bottom: 10px; margin-left: 6px; font-family: 'Inter', sans-serif; }
.balance-panel .sub { font-size: 14px; opacity: 0.7; margin-bottom: 14px; font-family: 'Inter', sans-serif; font-weight: 400; }

.balance-actions-wrapper { display: flex; gap: 8px; justify-content: space-between; width: 100%; position: relative; z-index: 2; margin-bottom: 8px; }
.balance-actions-wrapper .btn-action { flex: 1; min-width: 0; background: #FFFFFF; color: #2D3748; border: 1px solid rgba(0,0,0,0.06); border-radius: 60px; padding: 12px 14px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; box-shadow: 0 2px 8px rgba(0,0,0,0.06); line-height: 1.2; min-height: 44px; text-align: center; font-family: 'Inter', sans-serif; }
.balance-actions-wrapper .btn-action i { font-size: 17px; color: #2D3748; flex-shrink: 0; }

.btn-iban { width: 100%; background: #FFFFFF; color: #2D3748; border: 1px solid rgba(0,0,0,0.06); border-radius: 60px; padding: 12px 16px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); font-family: 'Inter', sans-serif; margin-top: 0; }
.btn-iban i { font-size: 17px; color: #2D3748; }

.transfer-card { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 16px 16px; box-shadow: var(--shadow-soft); }

@media (max-width: 430px) {
  main { padding: 16px 12px 30px; max-width: 100%; }
  .balance-panel { padding: 16px 20px 14px; border-width: 3px; }
  .balance-actions-wrapper .btn-action { font-size: 14px; padding: 10px 10px; min-height: 38px; }
  .balance-actions-wrapper .btn-action i { font-size: 16px; }
  .btn-iban { font-size: 14px; padding: 10px 12px; }
  .btn-iban i { font-size: 16px; }
  .transfer-card { padding: 14px 12px; }
}
@media (max-width: 360px) {
  .balance-actions-wrapper .btn-action { font-size: 13px; padding: 8px 8px; min-height: 34px; }
  .balance-actions-wrapper .btn-action i { font-size: 14px; }
  .btn-iban { font-size: 13px; padding: 8px 10px; }
  .btn-iban i { font-size: 14px; }
  .balance-panel .amount { margin-left: 4px; }
  .transfer-card { padding: 10px 8px; }
  .balance-panel { padding: 14px 16px 12px; }
}

.quick-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.stat-item { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 14px 10px; text-align: center; box-shadow: var(--shadow-soft); overflow: visible; }
.stat-item .stat-value { font-size: 20px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: visible; font-family: 'Inter', sans-serif; }
.stat-item .stat-label { font-size: 11px; color: var(--text-secondary); letter-spacing: 0.5px; margin-top: 2px; font-family: 'Inter', sans-serif; font-weight: 400; }

.history-container { border: 1px solid #e5e7eb; border-radius: var(--radius-sm); background: #fafbfc; padding: 4px 0 8px 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6); }
.history-header { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; color: var(--text-primary); padding: 12px 16px 10px 16px; border-bottom: 2px solid var(--p); margin-bottom: 0; font-family: 'Inter', sans-serif; background: #ffffff; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.history-header i { font-size: 18px; color: var(--p); }
.history-header .badge-count { margin-left: auto; background: var(--p-soft); color: var(--p); font-size: 11px; font-weight: 600; padding: 2px 10px; border-radius: 20px; border: 1px solid var(--border-light); }
#history-list { padding: 4px 8px 8px 8px; }
.history-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  width: 100%;
  min-height: 56px;
  transition: box-shadow 0.15s;
}
.history-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.history-item:last-child { margin-bottom: 0; }
.history-left { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1 1 auto; }
.history-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.history-icon.credit { background: #D1FAE5; color: #10B981; }
.history-icon.debit { background: #FEE2E2; color: #EF4444; }
.history-icon.refund { background: #EDE9FE; color: #6D28D9; }
.history-info { min-width: 0; flex: 1 1 auto; display: flex; flex-direction: column; overflow: hidden; }
.history-info .title { font-size: 15px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; font-family: 'Inter', sans-serif; }
.history-info .title .sub { color: var(--text-secondary); font-weight: 400; }
.history-info .meta { font-size: 12px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: 'Inter', sans-serif; font-weight: 400; }
.history-amount { font-weight: 600; font-size: 16px; white-space: nowrap; flex-shrink: 0; text-align: right; margin-left: auto; line-height: 1.3; font-family: 'Inter', sans-serif; }
.history-amount.credit { color: #10B981; }
.history-amount.debit { color: #EF4444; }
.history-amount.refund { color: #6D28D9; }
.empty-history { text-align: center; color: var(--text-secondary); padding: 30px 16px 20px; background: transparent; border: none; border-radius: 0; font-size: 15px; font-family: 'Inter', sans-serif; font-weight: 400; }
.empty-history i { display: block; font-size: 32px; color: #d1d5db; margin-bottom: 10px; }

.transfer-balance { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 14px; color: var(--text-secondary); font-family: 'Inter', sans-serif; font-weight: 400; }
.transfer-balance b { color: var(--text-primary); font-weight: 600; }
.transfer-title { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 14px; color: var(--p); font-weight: 600; font-family: 'Inter', sans-serif; }
.field-group { margin-bottom: 14px; }
.field-group label { display: block; font-size: 12px; font-weight: 500; color: var(--text-secondary); margin-bottom: 3px; letter-spacing: 0.3px; font-family: 'Inter', sans-serif; }

.verify-details { background: #FAFBFC; padding: 14px; border-radius: var(--radius-sm); margin-bottom: 12px; border: 1px solid var(--border-light); }
.verify-details .row { margin-bottom: 8px; }
.verify-details .row:last-child { margin-bottom: 0; }
.verify-details .label { font-size: 11px; font-weight: 500; color: var(--text-secondary); letter-spacing: 0.5px; font-family: 'Inter', sans-serif; }
.verify-details .value { font-weight: 600; font-size: 15px; word-break: break-all; color: var(--text-primary); font-family: 'Inter', sans-serif; }
.verify-cancel { padding: 8px 16px; border: 1.5px solid #FCA5A5; color: #EF4444; background: transparent; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'Inter', sans-serif; }
.verify-code-section { margin-top: 16px; }
.verify-code-section .lock-line { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 14px; color: var(--text-primary); margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.verify-code-section .lock-line i { font-size: 16px; color: var(--p); }
.verify-code-section .code-input { width: 100%; padding: 10px 14px; background: #FAFBFC; border: 1.5px solid #E5E7EB; border-radius: var(--radius-sm); font-size: 17px; text-align: center; letter-spacing: 4px; font-weight: 600; font-family: 'Inter', sans-serif; color: var(--text-primary); margin-bottom: 14px; placeholder: "******"; }
.verify-code-section .code-input:focus { outline: none; border-color: var(--p); box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.10); background: #fff; }
.progress-wrap { margin-top: 14px; }
.progress-bar { height: 6px; background: #E5E7EB; border-radius: 8px; overflow: hidden; }
.progress-bar .fill { height: 100%; background: var(--p-gradient); width: 0%; }
.progress-text { font-size: 14px; font-weight: 600; text-align: center; margin-top: 6px; color: var(--p); font-family: 'Inter', sans-serif; }

.result-card { text-align: center; max-width: 400px; margin: 0 auto; padding: 32px 24px; background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--shadow-medium); }
.result-icon { font-size: 60px; margin-bottom: 12px; color: var(--p); }
.result-percent { font-size: 34px; font-weight: 700; color: var(--p); margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.result-status { font-size: 19px; font-weight: 600; color: var(--text-primary); margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.result-details { background: #FAFBFC; border-radius: var(--radius-sm); padding: 14px 16px; margin: 12px 0 16px 0; text-align: left; border: 1px solid var(--border-light); }
.result-details .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; border-bottom: 1px solid var(--border-light); }
.result-details .row:last-child { border-bottom: none; }
.result-details .row .label { color: var(--text-secondary); font-weight: 500; font-family: 'Inter', sans-serif; }
.result-details .row .value { font-weight: 600; color: var(--text-primary); text-align: right; word-break: break-all; max-width: 60%; font-family: 'Inter', sans-serif; }
.result-msg { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin: 8px 0 14px 0; padding: 12px 14px; background: var(--p-soft); border-radius: var(--radius-sm); border-left: 3px solid var(--p); text-align: left; font-family: 'Inter', sans-serif; font-weight: 400; }

nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  backdrop-filter: blur(4px);
  border-top: 3px solid var(--p);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px 0 12px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}
.nav-item { color: #6B7280; font-size: 11px; font-weight: 500; text-align: center; cursor: pointer; padding: 4px 0; display: flex; flex-direction: column; align-items: center; gap: 2px; letter-spacing: 0.3px; font-family: 'Inter', sans-serif; }
.nav-item i { font-size: 20px; color: #9CA3AF; }
.nav-item.active { color: var(--p); }
.nav-item.active i { color: var(--p); }

.login-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; background: #f0f2f5; }
.login-card { background: #ffffff; border-radius: 24px; padding: 32px 28px; width: 100%; max-width: 400px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.02); border: 1px solid rgba(0, 0, 0, 0.03); }
.login-logo { width: 64px; height: 64px; border-radius: 50%; background: var(--p-gradient); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; font-weight: 700; color: #fff; box-shadow: 0 8px 24px rgba(109, 40, 217, 0.25); font-family: 'Inter', sans-serif; }
.login-title { text-align: center; font-size: 24px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.3px; color: var(--text-primary); font-family: 'Inter', sans-serif; }
.login-sub { text-align: center; font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; font-family: 'Inter', sans-serif; font-weight: 400; }
.login-info { background: #f8fafc; padding: 10px 14px; border-radius: var(--radius-sm); text-align: center; font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; border: 1px solid #eef2f6; font-family: 'Inter', sans-serif; font-weight: 400; }
.login-error { color: #EF4444; margin-top: 10px; font-size: 13px; text-align: center; font-weight: 500; font-family: 'Inter', sans-serif; }
.login-card .input-group { margin-bottom: 18px; }
.login-card .input-group label { display: block; font-size: 12px; font-weight: 500; color: var(--text-secondary); margin-bottom: 4px; letter-spacing: 0.3px; font-family: 'Inter', sans-serif; }
.login-card .input { background: #fafbfc; border: 1.5px solid #e5e9ef; border-radius: var(--radius-sm); font-size: 14px; padding: 12px 16px; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; font-family: 'Inter', sans-serif; color: var(--text-primary); }
.login-card .input:focus { outline: none; border-color: var(--p); box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.08); background: #ffffff; }
.login-card .input::placeholder { color: #b0b8c4; font-weight: 400; }
.login-card .btn { margin-top: 6px; font-size: 15px; padding: 14px; background: var(--p-gradient); box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3); color: #fff; border: none; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; transition: transform 0.1s, box-shadow 0.2s; }
.login-card .btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(109, 40, 217, 0.35); }
.login-card .btn:active { transform: translateY(0); }
.login-card .btn i { font-size: 17px; }

#t { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%); background: rgba(11, 15, 25, 0.92); backdrop-filter: blur(4px); color: #fff; padding: 10px 24px; border-radius: 50px; font-size: 13px; font-weight: 500; z-index: 200; display: none; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15); border: 1px solid rgba(255, 255, 255, 0.06); max-width: 90%; text-align: center; font-family: 'Inter', sans-serif; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--p); border-radius: 8px; }

.real-card {
  background: var(--p-gradient);
  border-radius: 18px;
  padding: 20px 18px 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.20), inset 0 0 80px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 12px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.real-card::before { content: ''; position: absolute; top: -40%; right: -20%; width: 180px; height: 180px; background: rgba(255,255,255,0.06); border-radius: 50%; pointer-events: none; }
.real-card::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 120px; height: 120px; background: rgba(255,255,255,0.04); border-radius: 50%; pointer-events: none; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 2; }
.card-chip { display: flex; align-items: center; gap: 8px; }
.card-chip i { font-size: 30px; opacity: 0.7; color: #ffd700; filter: drop-shadow(0 0 4px rgba(255,215,0,0.3)); }
.card-brand { font-size: 30px; opacity: 0.9; filter: drop-shadow(0 0 6px rgba(255,255,255,0.2)); }
.card-number { font-size: 17px; font-weight: 600; letter-spacing: 2px; font-family: 'Inter', monospace; margin: 12px 0 8px; position: relative; z-index: 2; text-shadow: 0 2px 4px rgba(0,0,0,0.1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-details { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 2; }
.card-holder { display: flex; flex-direction: column; }
.card-holder .label { font-size: 9px; opacity: 0.6; letter-spacing: 1px; font-family: 'Inter', sans-serif; font-weight: 400; }
.card-holder .name { font-size: 14px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; font-family: 'Inter', sans-serif; }
.card-expiry { display: flex; flex-direction: column; align-items: flex-end; }
.card-expiry .label { font-size: 9px; opacity: 0.6; letter-spacing: 1px; font-family: 'Inter', sans-serif; font-weight: 400; }
.card-expiry .date { font-size: 14px; font-weight: 600; letter-spacing: 0.5px; font-family: 'Inter', sans-serif; }
.card-cvv { font-size: 14px; font-weight: 600; letter-spacing: 1px; opacity: 0.7; margin-top: 4px; font-family: 'Inter', sans-serif; }

.iban-modal .modal-content .iban-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 20px; font-weight: 600; color: var(--text-primary); }
.iban-modal .modal-content .iban-header i { color: var(--p); font-size: 24px; }
.iban-modal .modal-content .iban-field { margin-bottom: 16px; }
.iban-modal .modal-content .iban-field .label { font-size: 12px; font-weight: 500; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.iban-modal .modal-content .iban-field .value { font-size: 18px; font-weight: 600; color: var(--text-primary); word-break: break-all; }
.iban-modal .modal-content .iban-field .value.small { font-size: 15px; }
.iban-modal .modal-content .iban-security { margin-top: 16px; padding: 12px 14px; background: #FFF8E7; border-radius: var(--radius-sm); border-left: 4px solid #EAB308; font-size: 13px; color: #92400E; display: flex; align-items: flex-start; gap: 8px; font-weight: 400; }
.iban-modal .modal-content .iban-security i { font-size: 16px; color: #EAB308; margin-top: 2px; }
.iban-modal .modal-content .iban-security span { flex: 1; }

.hidden { display: none !important; }
