/* Full-page vertical gradient: blue (top) to yellow (bottom) */
:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(to bottom, #0070f3, #ffeb3b);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card layout */
.page {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.card {
  max-width: 420px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Profile info */
.avatar {
  width: 256px;
  height: 256px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.title {
  font-family: 'Inter', sans-serif;
  margin: 0 0 4px;
  font-size: 2.2rem;
  /* letter-spacing: 0.05em; */
}

.subtitle {
  font-family: 'Caveat Brush', sans-serif;
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 400;
  color: #555;
}

/* Links */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  font-family: 'Poppins', sans-serif;
  display: block;
  padding: 12px 16px;
  border-radius: 999px;
  background: #222;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.link:hover {
  background: rgba(17, 17, 17, 0.1);  /* Light overlay on hover */
  color: #999;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  background: #000;
}

/* Individual link classes for GTM targeting 
.link-main-site {}
.link-instagram {}
.link-twitter {}
.link-email {} */

/* Small screens */
@media (max-width: 480px) {
  .card {
    padding: 20px 16px 16px;
  }
}
