.game-page {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
    color: #fff;
}

.game-header {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.game-artwork {
    width: 150px;
    height: 150px;
    border-radius: 20%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.game-info h1 {
    margin: 0;
    font-size: 2rem;
}

.btn-download {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: #00aaff;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn-download:hover {
    background: #0088cc;
}

.game-description {
    margin-top: 2rem;
    line-height: 1.6;
}

.game-screenshots {
    margin-top: 2rem;
}

.screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.screenshots img {
    width: calc(33% - 1rem);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.game-description h3 {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: #00aaff;
}

.game-description p {
    margin: 0.6rem 0;
    line-height: 1.6;
}

.game-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.game-features li {
    margin: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.game-features li::before {
    content: "◉";
    color: #00aaff;
    position: absolute;
    left: 0;
}
.game-screenshots .screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.game-screenshots .screenshots img {
    width: 100%;        /* Shrink to container width */
    max-width: 350px;   /* Or whatever you want */
    aspect-ratio: 3/2;   /* Ensure uniform aspect ratio */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.debug-dump {
    margin-top: 3rem;
    padding: 1rem;
    background: #111;
    color: #0f0;
    font-family: monospace;
    font-size: 0.8rem;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0,255,0,0.3);
}

.debug-dump button {
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 4px;
    background: #00aaff;
    color: #fff;
    cursor: pointer;
}

.debug-dump button:hover {
    background: #0088cc;
}

.back-button {
    margin-bottom: 1rem;
}

.btn-back {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-back:hover {
    background: #555;
}
