/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background: linear-gradient(90deg, #1f2833, #0b0c10);
    color: #ffffff;
    text-align: center;
    overflow-x: hidden;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#game-container {
    position: relative;
    visibility: hidden; /* Hide until fully loaded */
}

#board {
    background-image: url("./scribblejumpbg.png"); /* Updated background image */
    background-size: cover;
    border: 4px solid #38ef7d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

/* Style for Score */
#score {
    color: #66fcf1;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px #0b0c10;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

/* Style for High Score */
#highScore {
    color: #f1c40f;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px #0b0c10;
    position: absolute;
    top: 50px; /* Positioned below the score */
    left: 10px; /* Aligned to the left */
    z-index: 10;
}

/* Style for Game Over text */
#gameOver {
    color: #e74c3c;
    font-size: 60px;
    font-weight: bold;
    text-shadow: 3px 3px #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 10;
}
