/* ===== HOME PAGE ===== */

main {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background:
    radial-gradient(circle at center, rgba(134, 134, 196, 0.16) 0%, rgba(5, 7, 13, 0) 42%),
    linear-gradient(180deg, #070b14 0%, #05070d 100%);
  text-align: center;
}

.hero-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-image {
  width: min(800px, 92vw);
  height: auto;
  display: block;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 28px rgba(134, 134, 196, 0.28));
}

.hero-text {
  max-width: 720px;
  margin: 0 auto 1.8rem;
  color: #b8bfd3;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.enter-link {
  display: inline-block;
  padding: 0.95rem 1.8rem;
  border-radius: 14px;
  border: 1px solid rgba(134, 134, 196, 0.35);
  background: rgba(11, 15, 24, 0.72);
  color: #e9e9e9;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow:
    0 0 0 rgba(134, 134, 196, 0),
    0 10px 30px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.enter-link:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(168, 168, 255, 0.6);
  box-shadow:
    0 0 18px rgba(134, 134, 196, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 1.2rem;
  }

  .hero-image {
    width: min(400px, 88vw);
    margin-bottom: 1.4rem;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 1.4rem;
  }

  .enter-link {
    padding: 0.85rem 1.4rem;
  }
}
