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

html,
body {
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top, rgba(139, 92, 246, 0.10), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0c0715 48%, #050505 100%);
  color: #ffffff;
}

.page-wrap {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}

.card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, #24222b 0%, #17151d 100%);
  border: 1px solid rgba(168, 85, 247, 0.16);
  border-radius: 34px;
  padding: 40px 24px 28px;
  text-align: center;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 26px rgba(168, 85, 247, 0.08);
}

.image-ring {
  width: 132px;
  height: 132px;
  margin: 0 auto 26px;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d8b4fe 0%, #8b5cf6 100%);
  box-shadow:
    0 0 16px rgba(168, 85, 247, 0.22),
    0 0 30px rgba(168, 85, 247, 0.10);
}

.profile-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #111111;
}

.title {
  font-size: 32px;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow:
    0 0 6px rgba(192, 132, 252, 0.30),
    0 0 12px rgba(139, 92, 246, 0.16);
}

.description {
  max-width: 320px;
  margin: 0 auto 28px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.80);
}

.join-button {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(90deg, #c084fc 0%, #8b5cf6 55%, #6d28d9 100%);
  color: #ffffff;
  padding: 20px 14px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(139, 92, 246, 0.18);
}

.footer-text {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 420px) {
  .card {
    padding: 34px 20px 24px;
  }
  
  .image-ring {
    width: 118px;
    height: 118px;
    margin-bottom: 22px;
  }
  
  .title {
    font-size: 28px;
  }
  
  .description {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .join-button {
    font-size: 17px;
    padding: 18px 12px;
  }
}