/* ===============================
   DegensPad Global Styles
   =============================== */

:root {
  --bg-dark: #0b0f1a;
  --card-dark: #12172a;
  --accent: #00ff9c;
  --muted: #9aa4bf;
}

body {
  background: var(--bg-dark);
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
}

.navbar {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.btn-main {
  background: var(--accent);
  color: #000;
  font-weight: 600;
  border-radius: 8px;
}

.btn-main:hover {
  opacity: 0.9;
}

.card {
  background: var(--card-dark);
  border-radius: 14px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.badge-approved {
  background: var(--accent);
  color: #000;
}

.badge-pending {
  background: #ffc107;
  color: #000;
}

.dashboard-stat {
  font-size: 1.4rem;
  font-weight: 700;
}

.small-muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  h1, h2, h3 {
    text-align: center;
  }

  .navbar .btn {
    width: 100%;
    margin-top: 10px;
  }
}
