body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* Fond de page rose bonbon */
  background-color: #ffb6c1; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  color: #c71585; /* Texte rose foncé */
}

h1 {
  margin-top: 20px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

canvas {
  /* Bordure rose foncé et épaisse */
  border: 10px solid #db7093; 
  border-radius: 15px; /* Coins arrondis */
  
  /* Fond par défaut du canvas en rose très clair */
  background-color: #fff0f5; 
  
  /* Pour le rendu pixel art */
  image-rendering: pixelated; 
  image-rendering: crisp-edges;
  
  max-width: 95vw;
  height: auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.panel {
  width: min(95vw, 520px);
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(255, 240, 245, 0.95);
  border: 4px solid #db7093;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.panel h2 {
  margin: 0 0 8px;
}

#auth-form {
  display: flex;
  gap: 8px;
}

#auth-form input {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: 2px solid #db7093;
}

button {
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  background: #db7093;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

button:disabled {
  opacity: 0.6;
  cursor: default;
}

.error {
  min-height: 20px;
  color: #a10050;
  font-weight: 600;
}

.role-buttons {
  display: flex;
  gap: 8px;
}

.hidden {
  display: none;
}

#replay-button {
  margin-top: 12px;
}