* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: url('webbg1.png') center center / cover no-repeat;
    color: #10202e;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero-card {
  width: 100%;
  max-width: 560px;
  padding: 32px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  border: 3px solid rgb(255 158 255 / 60%);
  box-shadow: 0 10px 30px rgba(80, 120, 160, 0.12);
  text-align: center;
}

.hero-card h1 {
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow:
    0 0 6px rgb(255 158 255 / 60%),
    0 0 12px rgb(255 158 255 / 60%),
    0 0 20px rgb(255 158 255 / 45%);
}

.tagline {
  font-size: 1rem;
  color: #36556d;
  margin-bottom: 24px;
  font-weight: bold;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signup-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #c3d7e8;
  background: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  outline: none;
}

.signup-form button {
  padding: 14px 16px;
  border: none;
  border-radius: 14px;
  background: #b8dcf5;
  color: #10202e;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.signup-form button:hover {
  background: #a9d4f2;
}

.socials {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.socials a {
  color: #36556d;
  font-size: 1.6rem;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

@media (max-width: 600px) {
  .hero-card {
    padding: 28px 18px;
  }

  .hero-card h1 {
    font-size: 2rem;
  }
}
