body {
  background-color: #050510;
  color: #0ff;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #0ff, 0 0 20px #0ff;
  overflow-x: hidden;
}

#game {
  display: inline-block;
  position: relative;
  margin-top: 40px;
  padding: 15px;
  border: 2px solid #0ff;
  box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  border-radius: 10px;
}

.row {
  display: flex;
}

.cell {
  width: 100px;
  height: 100px;
  margin: 5px;
  border: 2px solid #00ffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
  box-shadow: inset 0 0 10px #0ff, 0 0 8px #0ff;
  background-color: rgba(0, 255, 255, 0.05);
}

.cell:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #0ff, 0 0 30px #00ffff;
}

.cell.win {
  background-color: #00ff88;
  color: #000;
  font-weight: bold;
  transform: scale(1.1);
  box-shadow: 0 0 20px #00ff88, 0 0 40px #00ff88;
}

#status {
  margin-top: 20px;
  font-size: 1.4rem;
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 25px #00ffff;
}

#score, #score2 {
  font-size: 1.2rem;
  color: #f0f0f0;
  text-shadow: 0 0 8px #00ffff, 0 0 15px #00ffff;
}

#reset, #restart {
  margin-top: 20px;
  padding: 12px 25px;
  background: transparent;
  border: 2px solid #0ff;
  color: #0ff;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 8px;
  text-shadow: 0 0 8px #0ff;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #0ff, inset 0 0 10px #0ff;
}

#reset:hover, #restart:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 25px #0ff, 0 0 50px #0ff;
}



body, #status, #score, #score2 {
  animation: flicker 2s infinite alternate;
}
