/* Base styles */
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: #2E2E2E;
  background-color: #F7F7F7;
  line-height: 1.6;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Header */
header h1 {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tagline {
  font-size: 1.125rem;
  color: #555;
}

/* Intro */
.intro {
  margin-top: 2rem;
  font-size: 1rem;
}

/* Link section */
.links {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.links a {
  display: block;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D1D1;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: background-color 0.2s;
}

.links a:hover {
  background-color: #EAEAEA;
}

/* Social links */
.social {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.social a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

.social a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 4rem;
  font-size: 0.875rem;
  color: #777;
}
