body {
    font-family: Arial, sans-serif;
    background-color: #ffe6f2;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .game-container {
    width: 600px;
    height: 500px;
    background: #fff0f6;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center; /* 🔥 centraliza tudo no eixo vertical */
    align-items: center;     /* 🔥 centraliza no eixo horizontal */
    padding: 20px;
    box-sizing: border-box;
    position: relative;
  }
  
  img {
    width: 200px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: block;
  }
  
  h1 {
    margin: 10px 0 20px;
    color: #d6336c;
    text-align: center;
  }
  
  .buttons {
    width: 100%;
    height: 120px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px; /* 🔥 espaço entre o texto e os botões */
  }
  
  #yes, #no {
    padding: 15px 25px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  #yes {
    background-color: #4CAF50;
    color: white;
    /*z-index: 1;
    margin-right: 100px; /* 🔥 garante espaço fixo entre SIM e NÃO */
  }
  
  #no {
    background-color: #f44336;
    color: white;
    /*position: absolute;
    left: 65%;
    top: 50%;*/
    /*transform: translateY(-50%);
    z-index: 2;
    transition: left 0.15s ease, top 0.15s ease, transform 0.2s ease;*/
  }
  
  .hidden {
    display: none;
  }
  
  .final {
    font-size: 28px;
    color: #d6336c;
    text-align: center;
  }

  /*#finalScreen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }*/

  #final-img {
    width: 200px;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }

  #final-img:hover {
    transform: scale(1.05);
  }