:root {
  --card-bg: rgba(255, 255, 255, 0.88);
  --text: #111827;
  --muted: #4b5563;
  --border: rgba(17, 24, 39, 0.12);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Public Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

.bg {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  position: relative;

  background: url('./images/waves.jpg') center/cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.card {
  position: relative;
  width: min(520px, 92vw);
  padding: 48px 40px;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.name {
  margin: 0 0 16px 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.tagline {
  margin: 0 0 24px 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}

.inline-link {
  color: var(--text);
  text-decoration: underline;
  font-weight: 600;
}

.inline-link:hover {
  opacity: 0.7;
}

.connect-text {
  margin: 0 0 16px 0;
  color: var(--muted);
  font-size: 14px;
}

.links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.links a {
  text-decoration: none;
  color: var(--text);
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
}

.links a:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon {
  width: 24px;
  height: 24px;
}

.copyright {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  z-index: 10;
}

