body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.container {
  max-width: 400px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out;
}

.profile-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #fff;
}

.subtitle {
  color: #aaa;
  margin-bottom: 1.5em;
}

.link-button {
  display: block;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 8px;
  padding: 15px;
  margin: 10px 0;
  text-decoration: none;
  color: #fff;
  font-size: 1.1em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.link-button:hover {
  background: #333;
  transform: scale(1.03);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
