body {
  margin: 0;
  padding: 0;
  background: #140d09;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1 1 auto;
  max-width: 400px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(20,13,9,0.7);
  border-radius: 24px;
  padding: 32px 16px 22px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}
.logo {
  width: 270px;
  margin-bottom: 20px;
  background: #fff0;
}
.hero {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 32px;
}
h1 {
  font-size: 2.4em;
  font-weight: 600;
}
.tagline {
  font-size: 1.3em;
  letter-spacing: 0.01em;
  color: #ebebeb;
  margin-bottom: 10px;
}
footer {
  width:100vw;
  text-align:center;
  font-size:1em;
  padding:28px 0 12px 0;
  color:#a19b97;
  position:relative;
}
footer a {
  color:#dfd9d0;
  text-decoration:underline;
  margin:0 8px;
  font-size:0.97em;
}
footer a:hover {
  color:#fff5de;
}