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

/* ============================= */
/* GLOBAL BASE (NO BACKGROUNDS) */
/* ============================= */
html, body {
  width: 100%;
  height: 100%;
  color: #eaeaea;
  font-family: "Segoe UI", system-ui, sans-serif;
}

/* ============================= */
/* REALM CHOICE PAGE */
/* ============================= */
body.realm-choice {
  background-image: url("/ruins.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAIN CONTAINER */
.choice-container {
  text-align: center;
  max-width: 900px;
  padding: 40px;
}

/* PRIMARY TEXT */
.primary-statement {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* SECONDARY TEXT */
.secondary-statement {
  font-size: 16px;
  opacity: 0.75;
  margin-bottom: 48px;
  line-height: 1.6;
}

/* BUTTON ROW */
.choice-buttons {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTON BASE */
.choice-button {
  text-decoration: none;
  color: #d6b24a;
  border: 1px solid #d6b24a;
  padding: 18px 28px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.25s ease;
}

/* BUTTON HOVER */
.choice-button:hover {
  background: rgba(214, 178, 74, 0.08);
  transform: translateY(-2px);
}

/* BUTTON LABEL */
.choice-button .label {
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

/* MICRO TEXT */
.choice-button .micro {
  font-size: 11px;
  opacity: 0.7;
}

/* LATIN SEAL */
.seal-text {
  margin-top: 48px;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.35;
}

/* ============================= */
/* GUIDANCE PAGE */
/* ============================= */
body.guidance {
  background-image: url("/ruins.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
}
