body {
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: #fff;
  margin: 0;
  padding: 20px;
  touch-action: manipulation;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffdf6c;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 12px;
  justify-content: center;
  margin: 30px auto;
}

.cell {
  width: 100px;
  height: 100px;
  font-size: 2.5rem;
  font-weight: bold;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cell:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

#status, #trophies {
  font-size: 1.2rem;
  margin-top: 15px;
  font-weight: bold;
  color: #ffdf6c;
}

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

button:hover {
  background: #e91e63;
}
