body {
  margin: 0;
  background-color: #0f0f0f;
  color: #e0e0e0;
  font-family: 'EB Garamond', serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.cathedral-frame {
  max-width: 600px;
  width: 90%;
  padding: 40px 20px;
  border: 1px solid #333;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
  border-radius: 10px;
}

header h1 {
  font-size: 3em;
  letter-spacing: 3px;
  margin: 0;
  color: #cccccc;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.divider {
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, #555, transparent);
  margin: 20px auto;
}

.invocation {
  font-style: italic;
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #bbb;
}

.enter-button {
  background: #333;
  border: 1px solid #555;
  color: #e0e0e0;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}

.enter-button:hover {
  background: #555;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

nav {
  margin-top: 20px;
}

nav a {
  color: #888;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
}

nav a:hover {
  text-shadow: 0 0 5px #d4af37;
}

footer p {
  font-size: 0.8em;
  color: #666;
  margin-top: 10px;
}

.warning-list {
  text-align: left;
  max-width: 500px;
  margin: 30px auto;
  padding-left: 20px;
  color: #bbb;
}

.warning-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}

