body {
  background: linear-gradient(135deg, #f8fafc 0%, #b6c340 100%);
  min-height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 350px;
  width: 100%;
  text-align: center;
  border: 2px solid #b6c340;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #42720c;
}

h1 {
  margin: 0.5rem 0 0.25rem 0;
  font-size: 1.7rem;
  color: #1e293b;
}

.bio {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links a {
  background: #b6c340;
  color: #42720c;
  text-decoration: none;
  padding: 0.9rem 0;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}

.links a:hover {
  background: #42720c;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 400px) {
  .container {
    padding: 1.2rem 0.5rem;
  }
  .avatar {
    width: 72px;
    height: 72px;
  }
  h1 {
    font-size: 1.2rem;
  }
  .links a {
    font-size: 1rem;
    padding: 0.7rem 0;
  }
} 