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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #1e293b, #0f172a 60%);
  color: #e2e8f0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 24px;
}

.card {
  max-width: 440px;
  width: 100%;
  text-align: center;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 20px;
  padding: 48px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #38bdf8;
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.15);
  margin-bottom: 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.title {
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 32px;
}

.resume-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.resume-btn:hover {
  background: #7dd3fc;
  transform: translateY(-1px);
}

.links {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f172a;
  border: 1px solid #334155;
  color: #94a3b8;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.links a:hover {
  color: #38bdf8;
  border-color: #38bdf8;
  transform: translateY(-2px);
}
