:root {
  --header-h: 124px;
  --bg-card: #111d3a;
  --bg-soft: #0d1730;
  --bg-hover: #1a2746;
  --accent: #3b82f6;
  --accent-soft: #1d4ed8;
  --accent-sec: #22c55e;
  --danger: #ef4444;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.4);
  --radius-lg: 18px;
  --radius-md: 12px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #0b1120 0, #020617 55%, #000 100%);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.main-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  padding: 20px 22px 24px;
  flex: 1;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .content {
    padding-inline: 14px;
  }
}
