* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  height: 100vh;
  overflow: hidden;
}

.background {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("mountainbackground.png") center / cover no-repeat;
  filter: blur(10px);
  transform: scale(1.08);
}

.card {
  position: relative;
  max-width: 480px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 2.2rem;
  text-align: center;

  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  color: white;
}

.avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

h1 {
  font-weight: 600;
  font-size: 1.9rem;
}

h2 {
  font-weight: 300;
  font-size: 1rem;
  margin-top: 0.4rem;
  opacity: 0.9;
}

p {
  margin: 1.3rem 0;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.95;
}

.links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.links a {
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.links a:hover {
  background: white;
  color: black;
}