* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #FAF3DD, #DDBEA9,#CB997E);
}

/* Page center */
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px;
}

/* Main card (very Campsite-like) */
.card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  text-align: center;
}

/* Avatar */
.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

/* Title */
h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Subtitle */
.subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 28px;
}

/* Links */
.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #C8D5B9;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* Hover & tap effects (important for Campsite feel) */
.link-btn:hover {
  background: #8FC0A9;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,1);
  transform: translateY(-2px);
}

.link-btn:active {
  transform: scale(0.97);
}

/* Footer */
footer {
  margin-top: 28px;
  font-size: 13px;
  color: #9ca3af;
}