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

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0b0f1a, #141a2e);
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Profile */
.profile {
  text-align: center;
}

.profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #6c63ff;
  margin-bottom: 12px;
  object-fit: cover;
  object-position: center;
}

.profile h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
}

.tagline {
  font-size: 14px;
  color: #c7c7ff;
}

.subtitle {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.9;
}

/* Contact Cards */
.contact-cards {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact {
  text-decoration: none;
  padding: 12px;
  border-radius: 14px;
  font-size: 13px;
  text-align: center;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.3s ease;
}

.contact:hover {
  transform: translateY(-2px);
}

.instagram:hover { background: #e1306c; }
.linkedin:hover  { background: #0077b5; }
.email:hover     { background: #6c63ff; }
.phone:hover     { background: #00c896; }

/* WhatsApp centered */
.contact.whatsapp {
  grid-column: span 2;
  justify-self: center;
  max-width: 200px;
}

.whatsapp:hover {
  background: #25d366;
}

/* Main CTA */
.links {
  margin-top: 10px;
}

.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  padding: 14px;
  border-radius: 14px;
  background: #6c63ff;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(108,99,255,0.6);
}

/* Footer */
footer {
  margin-top: 22px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}
