body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #663cff, #65c7ff);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}

.wrapper {
  padding: 2rem;
  width: 100%;
  height: 100%;
  display: flex;              /* <<< esto */
  justify-content: center;   /* <<< esto */
  align-items: center;       /* <<< y esto */
}


.card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: none; /* Quitamos la sombra */
}

.avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.avatar:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

p {
  margin-bottom: 1.5rem;
  color: #555;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 0.9rem;
  border-radius: 1rem;
  transition: 0.2s ease;
}

.links a:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.instagram {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
}

.shop {
  background: #e53935;
}

.discord {
  background: #5865f2;
}

.tiktok {
  background: #111;
}

footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #888;
}
