
body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: linear-gradient(to bottom, #fff9f3, #fef6ed);
  margin: 0;
  padding: 0;
}

#startScreen {
  padding: 30px;
}

#gameArea {
  padding: 10px;
}

#board {
  display: grid;
  grid-template-columns: repeat(10, 40px);
  grid-gap: 4px;
  justify-content: center;
  margin: 10px auto;
}

.square {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #333;
}

.square:nth-child(3n+1) {
  background-color: #ffd180;
}

.square:nth-child(3n+2) {
  background-color: #ce93d8;
}

.square:nth-child(3n) {
  background-color: #80deea;
}

.player1 {
  background-color: red !important;
  color: white;
}

.player2 {
  background-color: blue !important;
  color: white;
}

.pergunta-box {
  margin-top: 10px;
  padding: 8px;
  background-color: #fff3cd;
  border: 2px dashed #ffeeba;
  border-radius: 8px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

#answers button {
  margin: 4px;
  padding: 6px 10px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: #f0f0f0;
}

#answers button:hover {
  background-color: #e0e0e0;
}

#victoryMessage {
  margin-top: 20px;
  font-size: 16px;
}

/* Telas pequenas (celular) */
@media (max-width: 600px) {
  #board {
    grid-template-columns: repeat(10, 22px);
  }

  .square {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .pergunta-box {
    padding: 6px;
    font-size: 12px;
  }

  #answers button {
    font-size: 12px;
    padding: 5px 8px;
  }

  #turnInfo {
    font-size: 14px;
  }
}
