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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 480px;
}

.card {
  background: white;
  border-radius: 24px;
  padding: 48px 32px;
  box-shadow: 0 20px 60px rgba(96, 165, 250, 0.25);
  text-align: center;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #60a5fa;
  margin-bottom: 24px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 16px;
  color: #0369a1;
  margin-bottom: 32px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background-color: #60a5fa;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(96, 165, 250, 0.3);
}

.link-btn:hover {
  background-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(96, 165, 250, 0.5);
}

.link-btn:active {
  transform: translateY(0);
}

.link-btn svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .card {
    padding: 40px 24px;
  }

  .profile-img {
    width: 120px;
    height: 120px;
  }

  h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 14px;
  }

  .link-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}
