#banner {
    background-color: #1a7a3e;
    width: 100%;
    height: 64px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image {
    width: 1080px; /* Set this to the actual width of your hero image */
    height: 64px; /* Set this to the actual height of your hero image */
    /*background-image: url('images/hero-image-00.png');*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.game-grid {
    display: grid;
    justify-content: center; /* Centers items horizontally */
    align-content: center; /* Centers items vertically */
    grid-template-columns: repeat(auto-fit, minmax(64px, 64px)); /* Adjusts column width */
    gap: 20px;
    padding: 10px 20px;
    background-color: #1a1c2c;
}

.game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    background-color: #1a1c2c;
}

.game-item:hover {
    transform: scale(1.04);
}

.game-image {
    width: 128px;
    height: auto;
    border-radius: 10px;
}

.game-title {
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
    text-shadow: -1px 1px #1a1c2c;
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 10px;
    background-color: #1a1c2c;
}

#game-frame {
    max-width: 100%;
}

#game-description {
    background-color: #1a1c2c;
    padding-top: 1px;
    padding-top: 40px;
    padding-left: 60px;
    padding-right: 60px;
}

.game-description-content {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.game-description-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}