:root {
  --bg-start: #0f172a;
  --bg-mid: #0b1221;
  --bg-end: #050913;
  --text-main: #e5e7eb;
  --text-muted: #94a3b8;
  --card-radius: 12px;
}

* {
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at 10% 20%, var(--bg-start) 0%, var(--bg-mid) 45%, var(--bg-end) 100%);
  color: var(--text-main);
  min-height: 100vh;
  font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
}

.layout-desktop {
  display: block;
}

.layout-mobile {
  display: none;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 991.98px) {
  .layout-desktop {
    display: none;
  }

  .layout-mobile {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

.text-faint {
  color: var(--text-muted);
}

.badge-soft {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
