* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f12;
  color: #f7f1e8;
}

.entry-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.entry-card {
  width: 100%;
  max-width: 680px;
  background: #17171d;
  border: 1px solid #2e2e38;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  color: #d8b76a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
}

h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 12px 0 18px;
}

p {
  color: #cfc7bb;
  font-size: 18px;
  line-height: 1.6;
}

.primary-button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #d8b76a;
  color: #111;
  text-decoration: none;
  font-weight: 900;
}

.primary-button:hover {
  background: #f0cf83;
}