@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

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

body {
  background: radial-gradient(1000px 600px at 20% 10%, #0b3a3f 0%, rgba(11,58,63,0) 60%),
              radial-gradient(900px 500px at 90% 80%, #3b0f1f 0%, rgba(59,15,31,0) 60%),
              #0f1517;
  font-family: "Inter", sans-serif;
  color: #e7ecef;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}


.links-card {
  background: #11181c;
  padding: 40px 50px;
  border-radius: 18px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.02);
}

.avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
  border: 3px solid #1d2a2e;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.avatar:hover {
  transform: scale(1.05);
}

.links-card h1 {
  margin: 12px 0 8px;
  font-size: 34px;
  color: #f3f6f8;
}

.bio {
  font-size: 18px;
  color: #9fb0b7;
  margin-bottom: 10px;
}

.tagline {
  font-style: italic;
  color: #7f8d93;
  margin-bottom: 30px;
}

.links a {
  display: block;
  background-color: #0b3f43;
  color: #d8f3f0;
  padding: 16px;
  margin: 14px 0;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.2px;
  border: 1px solid rgba(0,0,0,0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 18px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.links a:hover {
  background-color: #0e5a60;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 24px rgba(0,0,0,0.45);
}

.links a i {
  margin-right: 10px;
  color: #b9f2ea;
}

footer {
  margin-top: 30px;
  font-size: 14px;
  color: #8b979d;
}

@media (max-width: 600px) {
  .links-card {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    padding: 30px 20px;
    box-shadow: none;
  }
}
/* Accessibility and interaction */
.links a:focus, .links a:focus-visible {
  outline: 2px solid #2dd4bf;
  outline-offset: 2px;
}
.links a:active {
  transform: translateY(0);
  background-color: #0c4a4e;
}
