body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: rgba(20, 20, 20, 0.95);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 100, 0.3);
  width: 90%;
  max-width: 420px;
  animation: fadeIn 1s ease-in-out;
}

.header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ff007f;
  object-fit: cover;
  margin-bottom: 10px;
}

.header h1 {
  margin: 0.3em 0;
  font-size: 1.6em;
  color: #ff007f;
}

.header p {
  font-size: 0.95em;
  color: #ccc;
}

.links a {
  display: block;
  background: #ff007f;
  color: #fff;
  padding: 14px;
  margin: 12px 0;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.links a:hover {
  background: #fff;
  color: #ff007f;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.7);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.link-button {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  background: #ff007f;
  padding: 14px;
  margin: 12px 0;
  color: white;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
  transition: 0.3s ease;
}

.link-button .icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
}

.link-button:hover {
  background: #fff;
  color: #ff007f;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.7);
}
