body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #e5e5e5;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  background: #232122;
  border-radius: 24px;
  width: 900px;
  max-width: 98vw;
  min-height: 80vh;
  padding: 48px 48px 32px 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.logo svg {
  height: 40px;
  width: 40px;
}
.coming-soon {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.coming-desc {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 32px;
  border-left: 4px solid #FFD600;
  padding-left: 16px;
}
h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.1;
}
.notify-form {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.notify-form input[type="email"] {
  padding: 16px;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  width: 320px;
  outline: none;
  flex: 1 1 200px;
  min-width: 180px;
}
.notify-form button {
  background: #FFD600;
  color: #232122;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  padding: 0 32px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  min-width: 120px;
}
.notify-form button:hover {
  background: #FFA800;
}
.socials {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.socials a {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.2s;
}
.socials a:hover {
  color: #FFD600;
}
.shapes {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
  height: 160px;
  pointer-events: none;
}
.shapes-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 180px;
  height: 100px;
  pointer-events: none;
}
@media (max-width: 700px) {
  .container {
    padding: 24px 8px 16px 8px;
    border-radius: 0;
    min-height: 100vh;
    width: 100vw;
    max-width: 100vw;
  }
  h1 {
    font-size: 2rem;
  }
  .shapes {
    width: 120px;
    height: 80px;
  }
  .shapes-top {
    width: 80px;
    height: 40px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 8px 2vw;
    min-height: 100vh;
  }
  h1 {
    font-size: 1.3rem;
  }
  .coming-desc {
    font-size: 0.9rem;
    padding-left: 8px;
  }
  .notify-form input[type="email"] {
    padding: 10px;
    font-size: 0.9rem;
  }
  .notify-form button {
    padding: 0 12px;
    font-size: 0.9rem;
  }
}
