body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to right, #ff9a9e, #fad0c4, #fad0c4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  margin: 0;
  padding: 40px 20px;
}

h1 {
  color: #fff;
  text-shadow: 2px 2px 6px #333;
}

#status {
  margin: 20px;
  font-size: 1.2rem;
  color: #333;
  font-weight: bold;
}

.game-board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 12px;
  margin-top: 20px;
}

.tile {
  width: 100px;
  height: 100px;
  background-color: #fff7e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.tile.x {
  color: #ff4e50;
  background-color: #ffe0e0;
}

.tile.o {
  color: #2bcbba;
  background-color: #e0fff8;
}

.tile:hover {
  background-color: #ffeaa7;
}

.tile.winner {
  background-color: #55efc4 !important;
  color: #2d3436 !important;
}

#reset {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #6c5ce7;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#reset:hover {
  background-color: #a29bfe;
}
