@font-face {
  font-family: 'Courier Prime';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/courier-prime-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Courier Prime';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/courier-prime-bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Courier Prime';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/courier-prime-italic.woff2') format('woff2');
}

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

body {
  font-family: 'Courier Prime', monospace;
  background: #f8f8f8;
  color: #111;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

main {
  width: 100%;
  max-width: 420px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

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

h1 {
  font-size: 1.5rem;
  line-height: 1;
}

.brand-bold {
  font-weight: 700;
}

.brand-italic {
  font-style: italic;
  font-size: 0.65em;
  color: #dc3545;
  margin-left: 0.2em;
}

.tagline {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  margin-top: 0.5rem;
}

.link-btn {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  background: #ebebeb;
  color: #111;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Courier Prime', monospace;
  font-size: 1rem;
  transition: box-shadow 0.15s ease, background 0.15s ease;
}

.link-btn:hover {
  background: #e2e2e2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.socials {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin-top: 0.75rem;
}

.socials a {
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.15s ease;
}

.socials a:hover {
  opacity: 0.6;
}

footer {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: #999;
  text-align: center;
}
