body {
  background: #0b0b0b;
  color: #f0f0f0;
  font-family: 'Cinzel', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.board {
  text-align: center;
  padding: 20px;
  background: radial-gradient(circle, #1a1a1a, #000);
  border: 2px solid #444;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

.row {
  margin: 10px 0;
}

.row span {
  margin: 0 5px;
  font-size: 1.2em;
  display: inline-block;
}

.planchette {
  font-size: 2em;
  margin: 20px 0;
  transition: transform 0.5s ease;
}

input, button {
  margin-top: 10px;
  padding: 10px;
  font-size: 1em;
  width: 80%;
  border: none;
  border-radius: 5px;
}

button {
  background: #444;
  color: #fff;
  cursor: pointer;
}

#response {
  margin-top: 20px;
  font-size: 1.2em;
  color: #fff;
}
body[data-mode="board"] .planchette {
  animation: float 2s infinite ease-in-out;
}

#spiritIcons {
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

#spiritIcons button {
  font-size: 1.5em;
  padding: 10px 20px;
  background: #111;
  border: 2px solid #444;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#spiritIcons button:hover {
  box-shadow: 0 0 12px #ff00cc, 0 0 24px #ff00cc;
  transform: scale(1.05);
}

body[data-mode="spirit"] #spiritIcons button {
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%   { box-shadow: 0 0 5px #ff00cc; }
  50%  { box-shadow: 0 0 20px #ff00cc; }
  100% { box-shadow: 0 0 5px #ff00cc; }
}
