body {
  margin: 0;
  background: #0d0d0d;
  color: #fff;
  font-family: 'Georgia', serif;
  text-align: center;
}

#splash {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

video {
  max-width: 100%;
  height: auto;
}

#main-content {
  padding: 4rem 2rem;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3rem;
}

.dnd-button {
  background: #ba0000;
  color: #fff;
  padding: 1.2rem 2.5rem;
  font-size: 1.5rem;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 10px #900;
  cursor: pointer;
  display: inline-block;
}

.dnd-button:hover {
  background: #ff1e1e;
  box-shadow: 0 0 20px #f00;
  transform: scale(1.05);
}

#beastiary-btn {
  background: #2c3e50; /* Different color for password-protected button */
  box-shadow: 0 0 10px #1a2530;
}

#beastiary-btn:hover {
  background: #34495e;
  box-shadow: 0 0 20px #2c3e50;
}

#campaign-btn {
  background: #4b0082; /* Different color for campaign button */
  box-shadow: 0 0 10px #2a0049;
}

#campaign-btn:hover {
  background: #5e00a3;
  box-shadow: 0 0 20px #4b0082;
}
