* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #fff4cc;
  color: #2b2b2b;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 420px;
  width: 100%;
  text-align: center;
  padding: 2rem 1.5rem;
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin: -60px auto 0.4rem auto;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.tagline {
  font-weight: 600;
  color: #c88b00;
  margin-bottom: 1.25rem;
}

.message {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: block;
  text-decoration: none;
  padding: 0.85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.btn.primary {
  background: #f2b705;
  color: #2b2b2b;
}

.btn.secondary {
  background: #2b2b2b;
  color: #ffffff;
}

.btn.outline {
  border: 2px solid #2b2b2b;
  color: #2b2b2b;
}

@media (max-height: 700px) {
  .container {
    padding-top: 1rem;
  }

  h1 {
    font-size: 1.4rem;
  }
}
