/* -----------------------------------------
   ALGEMENE STYLING
------------------------------------------ */

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: radial-gradient(circle at top, #1a1a1a, #0d0d0d);
  color: #ffffff;
  padding: 30px;
  margin: 0;
  text-align: center;
}

/* -----------------------------------------
   TITELS
------------------------------------------ */

h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #4da3ff;
  text-shadow: 0 0 10px #0066ff;
}

h2, h3 {
  color: #ffffff;
  margin-top: 20px;
  text-shadow: 0 0 6px #003366;
}

/* -----------------------------------------
   MENU KNOPPEN (default.php)
------------------------------------------ */

.menu {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  margin: 15px;
  background: linear-gradient(135deg, #007bff, #0056d6);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  transition: 0.2s;
  box-shadow: 0 0 12px #0044aa;
}

.btn:hover {
  background: linear-gradient(135deg, #3399ff, #0066ff);
  transform: scale(1.05);
  box-shadow: 0 0 18px #007bff;
}

/* -----------------------------------------
   KNOPPEN (host & speler)
------------------------------------------ */

button {
  padding: 12px 25px;
  margin: 10px;
  background: linear-gradient(135deg, #0066ff, #0044cc);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 0 10px #003399;
}

button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #3388ff, #0055dd);
  box-shadow: 0 0 15px #0066ff;
}

button:disabled {
  background: #444;
  box-shadow: none;
  cursor: default;
  transform: none;
}

/* -----------------------------------------
   ANTWOORDKNOPPEN (player.php)
------------------------------------------ */

#answerButtons button {
  width: 100%;
  margin: 8px 0;
  padding: 15px;
  font-size: 20px;
  border-radius: 10px;
  background: #222;
  border: 2px solid #0066ff;
  transition: 0.2s;
}

#answerButtons button:hover {
  background: #003399;
  border-color: #3399ff;
  box-shadow: 0 0 12px #0066ff;
}

/* -----------------------------------------
   HOST ANTWOORDEN LIJST
------------------------------------------ */

#answers p {
  background: #1a1a1a;
  padding: 10px;
  margin: 8px auto;
  width: 60%;
  border-radius: 6px;
  border-left: 4px solid #0066ff;
  text-align: left;
  font-size: 18px;
}

/* -----------------------------------------
   STATUS / RESULTAAT
------------------------------------------ */

#status, #result {
  font-size: 22px;
  margin-top: 20px;
  padding: 10px;
  color: #4da3ff;
  text-shadow: 0 0 8px #003366;
}

/* -----------------------------------------
   ANIMATIES
------------------------------------------ */

@keyframes glow {
  0% { text-shadow: 0 0 5px #0066ff; }
  50% { text-shadow: 0 0 15px #3399ff; }
  100% { text-shadow: 0 0 5px #0066ff; }
}

h1 {
  animation: glow 2s infinite;
}
