.game-info {
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
}

#status {
  font-size: 1.2rem;
  font-weight: bold;
}

#reset {
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#reset:hover {
  background-color: var(--accent-color);
}

.board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 5px;
  margin: 1rem 0;
}

.cell {
  background-color: var(--card-color);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: background-color 0.3s;
}

.cell:hover {
  background-color: #e0e0e0;
}

@media (max-width: 400px) {
  .board {
    grid-template-columns: repeat(3, 80px);
    grid-template-rows: repeat(3, 80px);
  }
  
  .game-info {
    width: 250px;
  }
}
