/* Shared "arcade" look for the Snake, Number Picker, and Brick Breaker
   showcase games — same pixel font, background gradient, and button style
   across all three so they read as one consistent set. */

@import url("https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap");

body {
  font-family: "Press Start 2P", sans-serif;
  font-weight: 400;
  min-height: 100vh;
  color: #333;
  background-image: linear-gradient(to top, #525252 0%, #17a2b8 2%);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 95%;
  max-width: 1200px;
  margin: 1rem auto;
  gap: 0.5rem;
}

.btn {
  text-align: center;
  position: relative;
  color: #444;
  background: none;
  border: none;
  font-family: "Press Start 2P", sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 400;
  transition: all 0.2s;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 1.75rem 3.5rem rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: #3e8e41;
  color: #fff;
}

@media (max-width: 720px) {
  .btn {
    font-size: 0.65rem;
    padding: 0.6rem 1rem;
  }
}
