* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "JetBrains Mono", system-ui, sans-serif;
  background: #020617;
  color: #e5e7eb;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;

  background: radial-gradient(circle at top, #1f2937, #020617);
  background-size: 200% 200%;
  animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 50% 0%; }
  50% { background-position: 50% 100%; }
  100% { background-position: 50% 0%; }
}

.hero-content {
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.hero-content img { 
   user-select: none;
   -moz-user-select: none;
   -webkit-user-drag: none;
   -webkit-user-select: none;
   -ms-user-select: none;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #f1f5f9;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.4);
}

.hero p {
  color: #cbd5f5;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.4s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.signup-form {
  width: 100%;
  max-width: 780px;
  padding: 1.4rem;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(56, 189, 248, 0.15);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.12);

  position: relative;
  overflow: hidden;
}

.signup-form h2 {
  font-size: 1.5rem;
  color: #f1f5f9;
  font-weight: 600;
}

.signup-subtext {
  font-size: 0.95rem;
  color: #cbd5f5;
}

.input-group {
  display: flex;
  width: 75%;
  margin: auto auto 10px auto;
  background: #0f172a;
  border-radius: 10px;
  padding: 0.4rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: border 0.2s ease;
}

.input-group:focus-within {
  border-color: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
}

.input-group input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.input-group input::placeholder {
  color: #64748b;
}

.input-group input:focus {
  outline: none;
}

.input-group button {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.input-group button:hover {
  background: linear-gradient(135deg, #31ace0, #0c92cf);
}

.input-group button:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 565px) {
  .input-group {
    flex-direction: column;
  }
}

#botEmail {
  position: absolute;
  pointer-events: none;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup-smalltext {
  color: gray;
}

.signup-message {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #38bdf8;
}

footer {
  display: flex;
  flex-direction: column;
  background: #1f2937;
  color: #e5e7eb;
  padding: 2rem 2rem 0.25rem 2rem;
  text-align: center;
  border-top: 1px solid #334155;
}

.social-icon {
  margin: 0 1rem;
  font-size: 1.2rem;
  color: #f1f5f9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #38bdf8;
}

.footer-links {
  margin-top: 2rem;
}

.footer-link {
  color: #cbd5f5;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #38bdf8;
}

.copyright {
  padding-top: 2rem;
  font-size: 0.9rem;
  color: gray;
}

@media (max-width: 768px) {
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-link {
    margin: 0.5rem 0;
  }

  .social-media {
    display: flex;
    justify-content: center;
  }

  .social-icon {
    margin: 0 0.5rem;
  }
}

.content-wrapper {
  padding: 2rem 4rem;
}