
body {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    font-family: Arial, sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

#aladin-lite-div {
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin-bottom: 20px;
    position: relative;
}
#popup {
    position: absolute;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 5px;
    display: none;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
}
#controls {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
#start-game {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#score, #timer, #game-status, #instructions {
    text-align: center;
    font-size: 20px;
    margin: 10px 0;
}
#timer {
    transition: color 0.5s ease;
}
#countdown {
    font-size: 60px;
    color: rgb(250, 249, 247);
    display: none;
}
