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

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #0b0f1a;
  background-image:
    radial-gradient(circle at 20% 15%, #1d2b53 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, #2a1b4d 0%, transparent 45%);
  color: #e8ecf8;
  min-height: 100vh;
  padding: 2rem 1rem 3rem;
}

header {
  text-align: center;
  margin-bottom: 3rem;
}

h1 {
  font-size: clamp(2.2rem, 8vw, 4rem);
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #ffd166, #ff6b9d, #6bcfff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin-top: 0.6rem;
  color: #9aa5c4;
  font-size: 1.05rem;
}

main {
  max-width: 900px;
  margin: 0 auto;
}

section {
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #7d89ad;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #232c45;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.4rem;
  background: #141b2e;
  border: 1px solid #232c45;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-4px);
  border-color: #ff6b9d;
  background: #1a2340;
  outline: none;
}

.emoji {
  font-size: 2.2rem;
  line-height: 1;
}

.name {
  font-size: 1.25rem;
  font-weight: 700;
}

.blurb {
  font-size: 0.9rem;
  color: #9aa5c4;
}

footer {
  text-align: center;
  margin-top: 3rem;
  color: #5f6a88;
  font-size: 0.9rem;
}
