.eagle-wallet-dashboard-card {
  width: 100%;
  margin: 0 0 18px;
  padding: 24px;
  border: 1px solid rgba(18, 107, 115, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 94% 12%, rgba(18, 107, 115, 0.12), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f7fbfb 100%);
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.08);
  color: #102033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.eagle-wallet-dashboard-card * {
  box-sizing: border-box;
}

.eagle-wallet-dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.eagle-wallet-dashboard-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(18, 107, 115, 0.1);
  color: #126b73;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eagle-wallet-dashboard-title {
  margin: 0;
  color: #102033;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.eagle-wallet-dashboard-desc {
  max-width: 760px;
  margin: 8px 0 0;
  color: #627084;
  font-size: 14px;
  line-height: 1.7;
}

.eagle-wallet-dashboard-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.eagle-wallet-dashboard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(18, 107, 115, 0.18);
  border-radius: 9px;
  background: #ffffff;
  color: #102033;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.eagle-wallet-dashboard-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.12);
}

.eagle-wallet-dashboard-btn.primary {
  border-color: #126b73;
  background: #126b73;
  color: #ffffff;
}

.eagle-wallet-dashboard-btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.eagle-wallet-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.eagle-wallet-dashboard-stat {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.82);
}

.eagle-wallet-dashboard-label {
  color: #718096;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eagle-wallet-dashboard-value {
  margin-top: 8px;
  color: #102033;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  word-break: break-word;
}

.eagle-wallet-dashboard-note {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 9px;
  background: rgba(18, 107, 115, 0.08);
  color: #44546a;
  font-size: 13px;
  line-height: 1.6;
}

.eagle-wallet-dashboard-note.error {
  background: rgba(214, 69, 69, 0.1);
  color: #a53636;
}

.eagle-wallet-dashboard-note.success {
  background: rgba(37, 132, 95, 0.12);
  color: #1c6b4b;
}

@media (max-width: 980px) {
  .eagle-wallet-dashboard-head {
    flex-direction: column;
  }

  .eagle-wallet-dashboard-actions {
    justify-content: flex-start;
  }

  .eagle-wallet-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .eagle-wallet-dashboard-card {
    padding: 18px;
  }

  .eagle-wallet-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .eagle-wallet-dashboard-btn {
    width: 100%;
  }
}
