:root {
  --main-bg: #211210; /* color de fondo oscuro sacado del logo */
  --main-accent: #e3c693; /* color beige/dorado del logo */
  --text-light: #fff8e1;
  --button-hover: #cbb278;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: var(--main-bg);
  color: var(--main-accent);
  font-family: "Bebas Neue", sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  width: 400px;
max-width: 90%;
  margin: auto;
  padding: 2rem 1rem;
  background: rgba(33, 18, 16, 0.94);
  border-radius: 1rem;
  box-shadow: 0 8px 32px 0 rgba(34, 23, 15, 0.45);
}

.logo {
  width: 400px;
max-width: 90%;
  margin-bottom: 2rem;
}

.coming-soon {
  font-size: 3.3rem;
  margin: 0.5em 0;
  letter-spacing: 0.05em;
  color: var(--main-accent);
}

.subtitle {
  font-size: 2.15rem;
  color: var(--main-accent);
  margin-bottom: 2rem;
}

.highlight {
  font-weight: bold;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.notify-form {
  display: flex;
  gap: 0.5em;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.notify-form input[type="email"] {
  padding: 0.65em 1em;
  border: none;
  border-radius: 2em;
  font-size: 1em;
  background: #fff8e1;
  color: #5d3c1a;
  outline: none;
  width: 65%;
  max-width: 220px;
}

.notify-form button {
  background: var(--main-accent);
  color: var(--main-bg);
  border: none;
  border-radius: 2em;
  padding: 0.65em 1.3em;
  font-size: 1em;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.notify-form button:hover {
  background: var(--button-hover);
}

.footer-text {
  font-size: 0.93em;
  margin-top: 2em;
  color: var(--main-accent);
  opacity: 0.7;
  letter-spacing: 0.04em;
}