/* Global style */
body {
    background-color: #000; /* Full black background */
    color: #00ccff; /* Neon blue text */
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: left;
}

/* Game window container */
#game-container {
    background-color: #111;
    border: 2px solid #00ccff;
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.4);
    width: 90%;
    max-width: 600px;
    padding: 30px;
    border-radius: 12px;
}

/* Text output */
#game-text {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Scene Image */
#scene-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #00ccff;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
}

/* Buttons */
button {
    background-color: #000;
    color: #00ccff;
    border: 1px solid #00ccff;
    padding: 10px 16px;
    margin: 10px 0;
    width: 100%;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-radius: 6px;
}

button:hover {
    background-color: #00ccff;
    color: #000;
    box-shadow: 0 0 8px #00ccff;
}

/* === Responsive Tweaks for Mobile === */
@media screen and (max-width: 480px) {
    #game-container {
        padding: 20px;
    }

    #game-text {
        font-size: 1rem;
    }

    button {
        font-size: 0.95rem;
        padding: 8px 12px;
    }

    #scene-image {
        max-height: 250px;
    }
}

@media screen and (max-height: 600px) {
    body {
        align-items: flex-start;
        padding-top: 20px;
    }

    #game-container {
        margin-top: 10px;
    }
}
