:root {
  --gold: #d4a455;
  --gold-hover: #e6b968;
  --parchment: #f3e7c9;
  --ink: #1a1410;
  --panel: #2a2d44;
  --panel-hover: #363a56;
  --panel-border: rgba(212, 164, 85, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: "Cinzel", "Trajan Pro", "Playfair Display", Georgia, serif;
  color: var(--parchment);
  background: #0b0d0b;
}

.stage {
  position: fixed;
  inset: 0;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5vw 9vh;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 35%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.panel {
  position: relative;
  z-index: 1;
  width: min(520px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.prompt {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.08em;
  color: var(--parchment);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  margin-bottom: 6px;
  opacity: 0.95;
}

.btn {
  display: block;
  width: 100%;
  padding: 18px 28px;
  font-family: inherit;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
}

.btn-primary {
  background: linear-gradient(180deg, #d8ab5c 0%, #b88940 100%);
  color: #1a1005;
  border-color: #8c6627;
  text-shadow: 0 1px 0 rgba(255, 230, 180, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #e8bd6e 0%, #c89750 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(212, 164, 85, 0.35), 0 6px 22px rgba(0, 0, 0, 0.55);
}

.btn-secondary {
  background: linear-gradient(180deg, #3a3e5c 0%, #272a43 100%);
  color: var(--parchment);
  border-color: var(--panel-border);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #464b6e 0%, #2f334f 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
  border-color: rgba(212, 164, 85, 0.6);
}

.btn:active {
  transform: translateY(1px);
}

.soon {
  position: relative;
  z-index: 1;
  max-width: min(720px, 90vw);
  text-align: center;
  padding: 36px 40px;
  background: rgba(10, 8, 6, 0.62);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin: 0 auto 9vh;
}

.soon h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--gold);
  letter-spacing: 0.12em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  margin-bottom: 14px;
}

.soon p {
  font-family: Georgia, serif;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.7;
  color: var(--parchment);
  opacity: 0.92;
  margin-bottom: 22px;
}

.back {
  display: inline-block;
  padding: 12px 28px;
  font-family: inherit;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.back:hover {
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 640px) {
  .stage { padding-bottom: 6vh; }
  .soon { padding: 28px 22px; }
}
