body {
    margin: 0;
    padding: 0;
    font-family: 'Pixelify Sans', sans-serif;
    background-color: #000000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#game-container {
    display: flex;
    max-width: 800px;
    align-items: center;
    padding: 20px;
    border: 2px solid #555;
}

#game-image {
    width: 400px;
    height: 400px;
    background-color: #222;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
}

#game-content {
    width: 40%;
}

#game-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.choice {
    font-family: 'Pixelify Sans', sans-serif;
    display: block;
    margin: 10px 0;
    padding: 10px;
    background-color: #000000;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.choice:hover {
    background-color: #555;
}

.game-over {
    color: red;
}

#portfolio-link {
    display: none;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 5px;
}

#portfolio-link:hover {
    background-color: #555;
}

#thanks-text {
    font-size: 24px;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    #game-container {
        flex-direction: column;
        align-items: flex-start;
    }

    #game-image {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }

    #game-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #game-container {
        padding: 10px;
    }

    .choice {
        margin: 5px 0;
        padding: 5px;
    }
}
