.entry-screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top center, rgba(159, 122, 234, 0.20), transparent 22%),
    radial-gradient(circle at 20% 20%, rgba(255, 119, 200, 0.10), transparent 16%),
    radial-gradient(circle at 80% 30%, rgba(124, 255, 168, 0.08), transparent 14%),
    linear-gradient(180deg, #070b18 0%, #030712 48%, #02050d 100%);
}

.entry-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(124,255,168,0.04), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), transparent 40%);
  pointer-events: none;
}

.stars-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.65) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(124,255,168,0.55) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(159,122,234,0.50) 0 1px, transparent 2px);
  background-size: 320px 320px, 420px 420px, 520px 520px;
  background-position: 0 0, 80px 140px, 160px 60px;
  opacity: 0.75;
  animation: starsFloat 18s linear infinite alternate;
}

@keyframes starsFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(14px);
  }
}

.falling-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.falling-layer span {
  position: absolute;
  top: -80px;
  width: 2px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(124,255,168,0.7), rgba(255,255,255,0));
  opacity: 0.55;
  filter: blur(0.2px);
  animation: fall linear infinite;
}

.falling-layer span:nth-child(1)  { left: 8%;  animation-duration: 8s;  animation-delay: 0s; }
.falling-layer span:nth-child(2)  { left: 15%; animation-duration: 10s; animation-delay: 1s; }
.falling-layer span:nth-child(3)  { left: 22%; animation-duration: 7s;  animation-delay: 2s; }
.falling-layer span:nth-child(4)  { left: 31%; animation-duration: 9s;  animation-delay: 0.5s; }
.falling-layer span:nth-child(5)  { left: 40%; animation-duration: 11s; animation-delay: 1.4s; }
.falling-layer span:nth-child(6)  { left: 49%; animation-duration: 8.5s; animation-delay: 2.1s; }
.falling-layer span:nth-child(7)  { left: 58%; animation-duration: 9.5s; animation-delay: 0.9s; }
.falling-layer span:nth-child(8)  { left: 66%; animation-duration: 7.6s; animation-delay: 1.7s; }
.falling-layer span:nth-child(9)  { left: 74%; animation-duration: 10.5s; animation-delay: 2.4s; }
.falling-layer span:nth-child(10) { left: 82%; animation-duration: 8.8s; animation-delay: 0.2s; }
.falling-layer span:nth-child(11) { left: 89%; animation-duration: 9.8s; animation-delay: 1.3s; }
.falling-layer span:nth-child(12) { left: 94%; animation-duration: 7.8s; animation-delay: 2.2s; }

@keyframes fall {
  from {
    transform: translateY(-120px);
    opacity: 0;
  }
  10% {
    opacity: 0.55;
  }
  to {
    transform: translateY(calc(100vh + 160px));
    opacity: 0;
  }
}

.entry-card {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: clamp(2rem, 4vw, 3.4rem);
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(8, 16, 31, 0.82), rgba(7, 13, 24, 0.74));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 20px 70px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.entry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(124,255,168,0.35),
    rgba(159,122,234,0.22),
    rgba(255,119,200,0.18),
    transparent 70%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.entry-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(124,255,168,0.08);
  border: 1px solid rgba(124,255,168,0.18);
  color: var(--accent-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entry-card h1 {
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  line-height: 1.02;
  margin: 1.1rem 0 1rem;
}

.entry-text {
  max-width: 540px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.countdown-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.count-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 18px 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.count-card strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  color: var(--text-main);
  font-weight: 900;
}

.count-card span {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.released-area {
  margin-top: 2rem;
}

.released-text {
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 26px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  color: #04111b;
  background: linear-gradient(135deg, var(--accent-green), #9df7c6);
  box-shadow:
    0 12px 30px rgba(124,255,168,0.24),
    0 0 30px rgba(124,255,168,0.10);
  transition: var(--transition);
}

.entry-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 16px 34px rgba(124,255,168,0.30),
    0 0 36px rgba(124,255,168,0.12);
}

@media (max-width: 768px) {
  .entry-card {
    padding: 2rem 1.4rem;
    border-radius: 24px;
  }

  .entry-text {
    font-size: 0.95rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-btn {
    width: 100%;
    min-width: 0;
  }
}