/* style.css - AureaCapital */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f4f6f9;
  font-family: 'Outfit', system-ui, sans-serif;
  color: #0d1b2a;
  min-height: 100vh;
}

.balance-card {
  background: linear-gradient(135deg, #0d1b2a 0%, #1c2e42 55%, #2e4560 100%);
  border-radius: 20px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(13, 27, 42, 0.22);
}

.balance-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 151, 58, 0.18) 0%, transparent 65%);
}

.balance-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 151, 58, 0.09) 0%, transparent 65%);
}

.balance-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4b05a;
  margin-bottom: 8px;
}

.balance-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}

.balance-updated {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 8px;
}

.btn-retrait {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #b8973a;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
  box-shadow: 0 4px 16px rgba(184, 151, 58, 0.35);
  text-decoration: none;
}

.btn-retrait:hover {
  background: #d4b05a;
  transform: translateY(-1px);
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 22px 24px;
  border: 1px solid #eaecf0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.stat-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2a;
}

.tx-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f2f5;
}

.tx-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
}

.badge-green {
  background: #d1fae5;
  color: #065f46;
}

.progress-track {
  background: #f0f2f5;
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #b8973a, #d4b05a);
  width: 35%;
}