/* Additional body styles specific for games page */
body {
    background-color: #f8f9fa; /* Light grey background */
}

/* Container for games */
.games-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

/* Individual game card */
.game-card {
    width: 30%; /* Adjust based on preference */
    margin: 15px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s; /* Animation on hover */
}

.game-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

/* Game details styling */
.game-details {
    padding: 20px;
    text-align: center;
}

.game-title {
    font-size: 20px;
    color: #007bff; /* Bootstrap blue */
    margin-bottom: 10px;
}

/* Styling the 'PLAY' button */
.play-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #28a745; /* Bootstrap green */
    color: white;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 0 0 4px 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.play-button:hover {
    background-color: #218838; /* Darker green */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .game-card {
        width: 100%; /* Full width on small screens */
    }
}

/* BRIANS STYLING */

.game-entry {
  background: lightgrey;
  margin: auto;
  margin-top: 15px;
  padding-left: 14px;
  padding-right: 14px;
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
  padding-top: 7px;
  padding-bottom: 7px;
  text-align: left;
  display: block;
  line-height:2;
}

.game-entry a.btn {
  float: right;
  text-decoration: none;
  color: black;
  background-color: #71ff33;
  box-shadow: 0 0 20px #71ff33;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 4px;
}
