body.splash-body {
  margin: 0;
  min-height: 100vh;
  color: #efe4c7;
  background:
    linear-gradient(rgba(17, 22, 18, 0.7), rgba(17, 22, 18, 0.88)),
    url("assets/middle-earth.png") center center / cover no-repeat;
  font-family: Georgia, "Times New Roman", serif;
}

.splash-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.splash-panel {
  width: min(720px, 100%);
  padding: 36px 32px;
  border: 1px solid rgba(215, 193, 132, 0.45);
  border-radius: 18px;
  background: rgba(30, 26, 19, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  text-align: center;
  backdrop-filter: blur(3px);
}

.splash-kicker {
  margin: 0 0 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #d8c48b;
}

.splash-title {
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 4.5rem);
  line-height: 0.95;
  font-weight: normal;
  color: #f6edd4;
}

.splash-copy {
  max-width: 42rem;
  margin: 18px auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ddd2b3;
}

.splash-actions {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.splash-link {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(216, 196, 139, 0.5);
  background: rgba(91, 74, 42, 0.28);
  color: #f6edd4;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.splash-link:hover,
.splash-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(126, 102, 59, 0.34);
  border-color: rgba(232, 215, 171, 0.85);
}

.splash-link strong {
  display: block;
  font-size: 1.05rem;
  font-weight: normal;
}

.splash-link span {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: #d7caab;
}

.splash-note {
  margin: 22px 0 0;
  font-size: 0.92rem;
  color: #cabd9e;
}

@media (max-width: 640px) {
  .splash-panel {
    padding: 28px 20px;
  }
}
