<style>
    /* === Reset + Mise en page === */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html,
    body {
        margin: 0;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    }

    body {
      font-family: Arial, sans-serif;
      background: #058e9f;       /* couleur demandée */
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;             /* occupe toute la hauteur */
      color: white;
    }

    .game-container {
      background: #046e7b;       /* nuance plus sombre */
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 95%;
      max-width: 1100px;         /* largeur max sur desktop */
    }

    h2 {
      margin-bottom: 15px;
      font-size: 28px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    }

    canvas {
      width: 100%;
      height: auto;
      max-height: 80vh;          /* pour éviter de dépasser l’écran */
      border-radius: 10px;
      background: #035d67;
    }

    footer {
      margin-top: 15px;
      font-size: 14px;
      opacity: 0.8;
    }
  </style>
