@font-face {
  font-family: "DINish";
  src: url("fonts/DINish-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Urbanist";
  src: url("fonts/Urbanist-Semibold.woff2") format("woff2");
  font-weight: 600;
}

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

html {
  background-color: #121212;
}

body {
  background:
    linear-gradient(rgba(15, 15, 15, 0.88), rgba(15, 15, 15, 0.88)),
    url("img/Bizen-yaki-wall.webp") center / cover fixed;
  color: #ffffff;
  font-family: "DINish", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.container * {
  text-wrap: balance;
}

.container {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.invite {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 1.5rem 0 1rem;
  color: #e0e0e0;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.handle {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.tagline {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #e0e0e0;
}

.bio {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #888;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  background: #6b5e8e;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-family: "DINish", sans-serif;
  font-size: 1.05rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.link-card:hover {
  transform: scale(1.02);
  border-color: #9488be;
  background: #7a6d9e;
}

.link-card svg {
  display: block;
  flex-shrink: 0;
}

.link-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding-left: 37%;
}

.link-content span {
  text-align: left;
  flex: 1;
}

@media (max-width: 600px) {
  .link-content {
    padding-left: 20%;
  }
}

.site-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  margin-top: 1.25rem;
  padding: 1.5rem 1.25rem;
  background: #6b5e8e;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.site-card:hover {
  transform: scale(1.02);
  border-color: #9488be;
  background: #7a6d9e;
}

.site-card-label {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
}

.site-card-url {
  font-family: "DINish", sans-serif;
  font-size: 0.9rem;
  color: #ccc;
}
