*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #3f51b5 0%, #ff9933 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

header[role="banner"] {
  padding: 2rem;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 600px;
  padding: 2rem;
}

.logo h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
}

.logo h1 span {
  color: #ff9933;
}

.logo p {
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.9;
  margin-top: 0.5rem;
}

section[role="region"] {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.coming-soon h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.coming-soon p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

form[method="POST"][action="/"] {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

input[type="email"][aria-invalid="true"] {
  border: 2px solid red;
}

input[type="email"][autocomplete="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1rem;
}

button[type="submit"][aria-label="Notify Me"] {
  background-color: #ff9933;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

button[type="submit"][aria-label="Notify Me"]:hover {
  background-color: #e68a2e;
}

nav[role="navigation"] {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.social-icons a[target="_blank"] {
  color: white;
  transition: color 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.social-icons a[target="_blank"]:hover {
  color: #ffc266;
}

.social-icons svg[aria-hidden="true"] {
  width: 1.5rem;
  height: 1.5rem;
}

footer[role="contentinfo"] {
  margin-top: 3rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.response[aria-relevant="all"] {
  margin-top: 1rem;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

.response.fade-out {
  opacity: 0;
}

.response p {
  margin: 0;
}

.response .success {
  color: white;
}

.response .error {
  color: #ff4d4d;
}

noscript {
  display: block;
  color: red;
  font-weight: bold;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

span[role="img"][aria-label="Rocket"] {
  display: inline-block;
  transform: rotate(15deg);
}

@media (max-width: 600px) {
  form[method="POST"][action="/"] {
    flex-direction: column;
  }
}
.hidden{
  display: none;
}