body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #3b006d, #6a008a);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 420px;
  padding: 40px 20px;
  box-sizing: border-box;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid rgba(255, 255, 255, 0.6);
}

h1 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 10px 0 5px;
}

.subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 6px;
}

.update {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.telegram-btn {
  display: inline-block;
  background-color: #7a00b0;
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 25px;
  transition: 0.2s ease;
}

.telegram-btn:hover {
  background-color: #9500cc;
}

h2 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.9;
}

.link-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: block;
  background: linear-gradient(135deg, #ff4d4d, #d61a6f);
  padding: 14px 20px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

