* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffb6d5, #c9a7ff);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 15px;
}

h1 {
  font-size: 1.6rem;
  color: #4b145f;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 0.95rem;
  color: #5f2a6d;
  margin-bottom: 25px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  margin-bottom: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.link-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Cores por rede */
.tiktok {
  background: linear-gradient(135deg, #000000, #ff0050);
}

.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.kwai {
  background: linear-gradient(135deg, #ff7a00, #ff9f45);
}

.whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebd59);
}

footer {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #4b145f;
}
