.island-entry-stage {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 12rem);
  width: min(760px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding-block: clamp(2.8rem, 6vw, 5.5rem);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: clamp(0.8rem, 2vw, 1.35rem);
}

.island-entry-title {
  margin: 0;
  font-family: 'Baloo 2', cursive;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  color: #fff8e7;
  text-shadow: 0 8px 28px rgba(3, 20, 28, 0.42);
}

.island-entry-subtitle {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8fff3;
}

.island-entry-illustration {
  position: relative;
  width: min(560px, 84vw);
  margin: clamp(0.3rem, 2vw, 1rem) 0;
  display: grid;
  justify-items: center;
}

.island-entry-illustration::before {
  content: '';
  position: absolute;
  inset: 10% 12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 94, 255, 0.32), rgba(143, 94, 255, 0.08) 42%, rgba(143, 94, 255, 0) 68%);
  filter: blur(16px);
  z-index: 1;
}

.island-entry-image {
  position: relative;
  z-index: 2;
  display: block;
  height: auto;
  animation: portal-logo-float 4.2s ease-in-out infinite;
  filter: drop-shadow(0 30px 45px rgba(3, 25, 34, 0.52));
}

.island-entry-copy {
  margin: 0;
  width: min(560px, 100%);
  color: rgba(247, 243, 226, 0.92);
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.7;
}

.island-entry-discord-btn {
  margin-top: 0.15rem;
  min-width: 260px;
  font-weight: 700;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
}

@media (max-width: 900px) {
  .island-entry-title {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .island-entry-stage {
    min-height: auto;
    width: min(760px, calc(100% - 1.4rem));
    padding-block: 2.4rem 3.3rem;
  }
}

body.island-space-body .main-content{
    min-height: auto;
}