* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: #0b0b0f;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
}

.profile {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.avatar {
  display: block;
  width: 112px;
  height: 112px;
  margin: 0 auto 24px;
  border-radius: 50%;
  object-fit: cover;
}

h1 {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
}

.quote {
  min-height: 28px;
  margin: 0 auto 32px;
  color: #a8a8b3;
  font-size: 17px;
  line-height: 1.7;
}

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

.links a {
  display: block;
  padding: 15px 20px;
  border: 1px solid #292933;
  border-radius: 14px;
  color: #f5f5f5;
  background: #13131a;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.links a:hover {
  background: #1b1b25;
  border-color: #555566;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  body {
    padding: 20px;
  }

  h1 {
    font-size: 34px;
  }

  .quote {
    font-size: 15px;
  }
}
