/* Simple, lightweight styling for a clean linktree */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 1rem;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  text-align: center;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 400px;
}

.link-list li {
  margin: 0.5rem 0;
}

.link-list a {
  display: block;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #333;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
}

.link-list a:hover {
  background: #eaeaea;
  border-color: #ccc;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .link-list a {
    font-size: 1rem;
  }
}
