/* Snake Game Specific Styles */

.snake-game-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

#snake-canvas {
  display: block;
  background: #000000;
  border-radius: 3px;
}

/* AI Button Styles */
.controls {
  margin-top: 20px;
  text-align: left;
  clear: both;
}

.ai-button {
  display: inline-block;
  background: #8f7a66;
  border-radius: 3px;
  padding: 0 20px;
  text-decoration: none;
  color: #f9f6f2;
  height: 40px;
  line-height: 42px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
  float: none;
  margin-left: 0;
}

.ai-button:hover {
  background: #9f8b77;
}

.ai-button:active {
  background: #7f6a56;
}

.ai-button.running {
  background: #f65e3b;
}

.ai-button.running:hover {
  background: #f77b5f;
}

.snake-message {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(238, 228, 218, 0.5);
  z-index: 100;
  text-align: center;
}

.snake-message.game-over {
  display: block;
}

.snake-message p {
  font-size: 60px;
  font-weight: bold;
  height: 60px;
  line-height: 60px;
  margin-top: 222px;
  color: #776e65;
}

.snake-message .lower {
  display: block;
  margin-top: 59px;
}

.snake-message a {
  display: inline-block;
  background: #8f7a66;
  border-radius: 3px;
  padding: 0 20px;
  text-decoration: none;
  color: #f9f6f2;
  height: 40px;
  line-height: 42px;
  margin-left: 9px;
  cursor: pointer;
}

/* Mobile Responsive */
@media screen and (max-width: 520px) {
  #snake-canvas {
    width: 260px;
    height: 260px;
  }

  .snake-message p {
    font-size: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    margin-top: 90px !important;
  }

  .snake-message .lower {
    margin-top: 30px !important;
  }
}
