 

html {
  height: 100%;
  width: 100%;
}
@keyframes neon-glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px #ff3a3a);
    box-shadow: 0 0 20px rgba(255, 58, 58, 0.6), 0 0 40px rgba(255, 58, 58, 0.6), 0 0 60px rgba(255, 58, 58, 0.6);
  }
  50% {
    filter: drop-shadow(0 0 10px #ffcc29);
    box-shadow: 0 0 20px rgba(255, 204, 41, 0.6), 0 0 40px rgba(255, 204, 41, 0.6), 0 0 60px rgba(255, 204, 41, 0.6);
  }
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #130a3a, #4f2164);
  margin: 0;
  padding: 0;
  font-family: 'Teko', sans-serif;
  overflow: hidden;
}
.main {
  width: 65vmin;
  height: 70vmin;
  background: #19ff79;
  border-radius: 5px;
  flex-direction: column;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), 0 0 40px rgba(255, 255, 255, 0.1), 0 0 60px rgba(255, 255, 255, 0.1);
  animation: neon-glow 1s ease-in-out infinite alternate;
}
.heaad {
  height: 35px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: rgba(59, 255, 180, 0.3);
  font-size: 1rem;
  font-weight: 30;
  border-bottom: 2px solid white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: 0 0 10px rgba(104, 255, 3, 0.6), 0 0 20px rgba(170, 40, 170, 0.6), 0 0 30px rgba(170, 40, 170, 0.6);
  animation: neon-glow 1s ease-in-out infinite alternate-reverse;
}
.board {
  height: 100%;
  width: 100%;
  background: #222;
  display: grid;
  grid-template: repeat(30, 1fr) / repeat(30, 1fr);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), 0 0 40px rgba(255, 255, 255, 0.2), 0 0 60px rgba(255, 255, 255, 0.2);
  animation: neon-glow 1s ease-in-out infinite alternate;
}



.board .food {
  background: rgb(255, 62, 14);
  box-shadow: 0 0 10px rgba(255, 76, 76, 0.8), 0 0 20px rgba(255, 0, 0, 0.8), 0 0 30px rgba(255, 0, 0, 0.8);
  animation: neon-glow 1s ease-in-out infinite alternate-reverse;
}
.board .head {
  background: rgb(36, 253, 47);
  box-shadow: 0 0 10px rgba(48, 255, 110, 0.8), 0 0 20px rgba(110, 255, 65, 0.8), 0 0 30px rgba(110, 255, 65, 0.8);
  animation: neon-glow 1s ease-in-out infinite alternate;
}
.controls {
  display: none;
  justify-content: space-between;
}
.controls i {
  padding: 25px 0;
  text-align: center;
  font-size: 1.3rem;
  color: #b8c6dc;
  width: calc(100% / 4);
  cursor: pointer;
  border-right: 1px solid #171b26;
}
@media screen and (max-width: 800px) {
  .wrapper {
    width: 90vmin;
    height: 115vmin;
  }
  .game-details {
    font-size: 1rem;
    padding: 15px 27px;
  }
  .controls {
    display: flex;
  }
  .controls i {
    padding: 15px 0;
    font-size: 2rem;
  }
}
@keyframes neon-glow {
  from {
    box-shadow: 0 0 10px rgba(215, 255, 104, 0.8), 0 0 20px rgba(88, 255, 116, 0.8), 0 0 30px rgba(109, 212, 253, 0.8);
  }
  to {
    box-shadow: 0 0 20px rgba(197, 255, 131, 0.8), 0 0 40px rgba(149, 255, 128, 0.8), 0 0 60px rgba(107, 255, 255, 0.8);
  }
}
.celebrate-glow {
  animation: neon-glow 5s ease-in-out infinite alternate;
}

.sc{
  color:#500092;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hsc{
  color:#500092;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}