* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


.container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
  text-align: center;
}

.profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  margin-bottom: 15px;
}

h1 {
  margin: 0;
  font-size: 28px;
}

.subtitle {
  opacity: 0.8;
  margin-bottom: 25px;
}

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

.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s ease;
}

.btn i {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.btn:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.02);
}
