* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Arial, "Segoe UI", sans-serif;
  color: #f6fbff;
  background:
    radial-gradient(circle at 18% 12%, rgba(50, 170, 255, 0.28), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(25, 194, 125, 0.16), transparent 24%),
    linear-gradient(135deg, #061427 0%, #082745 48%, #02101f 100%);
  overflow-x: hidden;
}

.bubble-rain {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bubble-rain span {
  position: absolute;
  top: -90px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.7), rgba(125, 212, 255, 0.14) 44%, rgba(30, 144, 255, 0.08) 100%);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.28), 0 8px 22px rgba(16, 210, 255, 0.12);
  animation: bubbleFall 13s linear infinite;
  opacity: 0.34;
}

.bubble-rain span:nth-child(1) {
  left: 9%;
  width: 18px;
  height: 18px;
  animation-duration: 14s;
  animation-delay: -2s;
}

.bubble-rain span:nth-child(2) {
  left: 27%;
  width: 34px;
  height: 34px;
  animation-duration: 18s;
  animation-delay: -9s;
}

.bubble-rain span:nth-child(3) {
  left: 48%;
  width: 22px;
  height: 22px;
  animation-duration: 15s;
  animation-delay: -5s;
}

.bubble-rain span:nth-child(4) {
  left: 66%;
  width: 40px;
  height: 40px;
  animation-duration: 20s;
  animation-delay: -12s;
}

.bubble-rain span:nth-child(5) {
  left: 82%;
  width: 24px;
  height: 24px;
  animation-duration: 16s;
  animation-delay: -7s;
}

.bubble-rain span:nth-child(6) {
  left: 93%;
  width: 16px;
  height: 16px;
  animation-duration: 19s;
  animation-delay: -15s;
}

@keyframes bubbleFall {
  0% {
    transform: translate3d(0, -100px, 0);
  }

  50% {
    transform: translate3d(18px, 50vh, 0);
  }

  100% {
    transform: translate3d(-10px, calc(100vh + 100px), 0);
  }
}

.page-shell {
  min-height: auto !important;
  display: grid;
  align-items: start !important;
  justify-items: center;
  padding: 80px 22px 22px !important;
  position: relative;
  z-index: 1;
}

.landing-card {
  margin-top: 0 !important;
}

.landing-card {
  width: min(100%, 430px);
  overflow: hidden;
  position: relative;
  padding: 28px 24px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(8, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.48);
}

.profile-wrap {
  width: 156px;
  height: 156px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 5px solid #19c27d;
  border-radius: 50%;
  background: #0d1f35;
  box-shadow: 0 16px 35px rgba(25, 194, 125, 0.22);
}

.profile-logo {
  width: 138px;
  height: 138px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 10vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
  white-space: nowrap;
}

.lead {
  max-width: 340px;
  margin: 18px auto 10px;
  color: #f4f8ff;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 800;
}

.support {
  max-width: 340px;
  margin: 0 auto 18px;
  color: #c8d5e8;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.member-pill {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(25, 194, 125, 0.2);
  border-radius: 999px;
  color: #eaf4ff;
  background: rgba(25, 194, 125, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #19c27d;
  box-shadow: 0 0 0 5px rgba(25, 194, 125, 0.13);
}

.join-button {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 20px;
  border-radius: 8px;
  color: #ffffff;
  background: #19c27d;
  box-shadow: 0 16px 28px rgba(25, 194, 125, 0.28);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.join-button:hover {
  transform: translateY(-2px);
  background: #14ad70;
  box-shadow: 0 18px 32px rgba(25, 194, 125, 0.34);
}

@media (max-width: 380px) {
  .page-shell {
    padding: 0 14px 14px;
  }

  .landing-card {
    padding-inline: 18px;
  }

  .profile-wrap {
    width: 136px;
    height: 136px;
  }

  .profile-logo {
    width: 120px;
    height: 120px;
  }

  .lead {
    font-size: 18px;
  }

  h1 {
    font-size: clamp(30px, 10vw, 34px);
  }

  .member-pill {
    flex-wrap: wrap;
  }
}
