/* steviee.dev — minimal cyberpunk dark */

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

:root {
  --bg: #0d0f14;
  --surface: #13171f;
  --cyan: #00d4ff;
  --magenta: #c800ff;
  --text: #e8eaf0;
  --muted: #8892a0;
  --border: #1e2530;
}

html {
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  padding: 2rem 1rem;
  min-height: 100vh;
}

.container {
  max-width: 600px;
  margin: 0 auto;
}

/* ── Profile ── */

.profile {
  text-align: center;
  padding: 2rem 0 1.5rem;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.35);
  object-fit: cover;
  display: block;
  margin: 0 auto 1.25rem;
}

.profile h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.handle {
  color: var(--cyan);
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

.bio {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Social links ── */

.social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.social a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.social a:hover {
  color: var(--cyan);
}

.social-sep {
  color: var(--border);
  user-select: none;
}

/* ── Section headings ── */

.section-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2.5rem 0 1rem;
}

/* ── App cards ── */

.apps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.app-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.15);
}

.app-card-header {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.app-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.app-tagline-inline {
  font-size: 0.8rem;
  color: var(--muted);
}

.app-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.app-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.45rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: border-color 0.15s, color 0.15s;
}

.app-badge:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.app-badge::before {
  content: "↓ ";
  opacity: 0.6;
}

/* ── Footer ── */

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--cyan);
}

/* ── Support page specific ── */

.page-header {
  padding: 1.5rem 0 0.5rem;
}

.page-header h1 {
  font-size: 1.4rem;
  font-weight: 700;
}

.back-link {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.back-link:hover {
  color: var(--cyan);
}

.back-link::before {
  content: "← ";
}

.content-section {
  margin-top: 2rem;
}

.content-section h2 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.content-section p {
  font-size: 0.95rem;
  color: var(--muted);
}

.content-section a {
  color: var(--cyan);
  text-decoration: none;
}

.content-section a:hover {
  text-decoration: underline;
}

.app-intro {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}
