/* 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-logo {
  width: 100%;
  height: 100%;
}

/* Renamed .link-element to .link-icon for clarity */
.link-icon {
  display: flex;
  align-items: center;
}

/* Styles for the image inside the icon container */
.link-icon img {
  max-width: 2em;
  object-fit: cover;
}

.link-text {
  margin-bottom: -0.2em;
}

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

/* List items spacing */
.link-list li {
  margin: 0.5rem 0;
}

/* Anchor styling – includes flex layout and spacing */
.link-list a {
  display: flex;
  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;
  align-items: center;
  justify-content: center;
  column-gap: 1em;
}

/* Removed duplicate .link-list a block */

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

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