
    body {
      margin: 0;
      font-family: 'Beaufort for LoL', serif;
      background: radial-gradient(circle at center, #1a1a1e 0%, #0a0a0c 100%);
      color: #f0e6d2;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      text-align: center;
    }

    main {
      flex-grow: 1;
      padding-top: 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    h1 {
      font-size: 3rem;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .jeu-container {
      background: #1e1e20;
      border: 2px solid #463714;
      border-radius: 15px;
      padding: 2rem;
      max-width: 600px;
      width: 90%;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    input[type="text"] {
      padding: 1rem;
      border-radius: 10px;
      border: none;
      width: 300px;
      font-size: 1rem;
      background-color: #2c2c2c;
      color: #f0e6d2;
    }

    input[type="submit"] {
      padding: 1rem 2rem;
      background: #c8aa6e;
      border: none;
      border-radius: 10px;
      color: #0a0a0c;
      font-weight: bold;
      margin-left: 1rem;
      cursor: pointer;
    }

    .image-feedback {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .champion-img {
      width: 300px;
      max-width: 90%;
      border-radius: 15px;
      border: 5px solid transparent;
      object-fit: cover;
      box-shadow: 0 0 20px rgba(0,0,0,0.6);
    }

    .feedback-block {
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .feedback-block p {
      margin: 5px 0;
      font-size: 1.2rem;
    }

    .resultat {
      margin-top: 1.5rem;
      font-size: 1.4rem;
      color: #c8aa6e;
    }

    .win {
      color: limegreen;
    }

    .erreur {
      color: crimson;
    }

    footer {
      margin-top: auto;
    }
