* { box-sizing: border-box; }
body {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  min-height: 100vh;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}
.container {
  margin-top: 60px;
  width: 100%;
  max-width: 400px;
  background: rgba(17, 17, 17, 0.9);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(230, 59, 90, 0.25);
  padding: 40px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid #E63B5A; /* Vermelho neon */
  object-fit: cover;
  margin-bottom: 18px;
  box-shadow: 0 0 18px rgba(230,59,90,0.6);
}
h1 {
  font-size: 2rem;
  margin: 0 0 8px 0;
  font-weight: 700;
  letter-spacing: 1px;
}
.bio {
  font-size: 1.05rem;
  color: #b0b0b0; /* Cinza metálico */
  margin-bottom: 28px;
  text-align: center;
}
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #E63B5A 0%, #8a1f40 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(230,59,90,0.25);
  transition: transform 0.12s, box-shadow 0.12s, background 0.25s;
}
.link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 24px rgba(230,59,90,0.6);
  background: linear-gradient(90deg, #ff4d6d 0%, #E63B5A 100%);
  color: #fff;
}

@media (max-width: 500px) {
  body {
    padding: 5%;
  }
  .container {
    margin: 0;
    padding: 5%;
  }
  h1 {
    font-size: 1.3rem;
  }
  .links {
    margin-top: 1rem;
  }
}
