.entry-screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.18), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(6, 182, 212, 0.14), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.08), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #0f172a 42%, #111827 100%);
}

.entry-screen__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 85%);
}

.entry-screen__content {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  text-align: center;
}

.entry-screen__badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  backdrop-filter: blur(14px);
}

.entry-screen__title {
  margin: 26px 0 0;
  font-size: clamp(48px, 9vw, 118px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #ffffff;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
}

.entry-screen__subtitle {
  width: min(720px, 100%);
  margin: 26px auto 0;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(226, 232, 240, 0.88);
}

.entry-screen__actions {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.entry-screen__btn {
  min-width: 180px;
  height: 54px;
  padding: 0 26px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.entry-screen__btn:hover {
  transform: translateY(-2px);
}

.entry-screen__btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.28);
}

.entry-screen__btn--primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0891b2 100%);
}

.entry-screen__btn--ghost {
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.entry-screen__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .entry-screen {
    padding: 32px 18px;
  }

  .entry-screen__subtitle {
    font-size: 15px;
    line-height: 1.8;
  }

  .entry-screen__actions {
    flex-direction: column;
    align-items: center;
  }

  .entry-screen__btn {
    width: min(320px, 100%);
  }
}