* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Corps de page */
body {
  background: linear-gradient(135deg, #7ec8f5 0%, #ffffff 100%);
  color: #333;
  padding: 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Titre */
h1 {
  font-family: 'Press Start 2P', cursive, monospace;
  color: #e3350d; /* rouge Pokémon */
  margin-bottom: 20px;
  text-shadow: 1px 1px 0 #00000080;
  font-size: 2rem;
}

/* Bouton */
button {
  background: #e3350d;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 0 4px #b0280a;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: background 0.3s ease;
  display: inline-block;
  width: auto;
}

button:hover {
  background: #f44336;
}

button:active {
  box-shadow: none;
  transform: translateY(2px);
}
button.solution-btn {
  background-color: #4CAF50; /* vert classique */
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-inline {
  display: inline-block !important;
  width: auto !important;
  padding: 10px 20px;
  cursor: pointer;
}
button.solution-btn:hover {
  background-color: #45a049; /* vert un peu plus foncé au hover */
}
/* Audio player */
audio {
  margin: 20px auto;
  outline: none;
}

/* Solution affichée */
p.solution {
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #2a52be; /* bleu Pokémon */
  text-shadow: 1px 1px 1px #00000060;
}

/* Liste des titres importés (admin ou import) */
ul {
  list-style: none;
  margin-top: 20px;
}

ul li {
  background: #f0f8ff;
  margin: 5px auto;
  max-width: 300px;
  padding: 8px 15px;
  border-radius: 10px;
  font-family: monospace;
  box-shadow: 0 2px 4px #aaa;
}

/* Responsive très basique */
@media (max-width: 480px) {
  body {
    padding: 10px;
  }
  h1 {
    font-size: 1.5rem;
  }
  button {
	padding: 12px;
    font-size: 1rem;
}
  ul li {
    max-width: 100%;
  }
}
.logo {
	width: 450px;
	margin: 0 auto 20px;
	background-color: rgba(0,0,0,0);
}