body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E6F3FF; /* Pastel blue fallback */
}

#background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

#game-container {
    background-color: rgba(240, 230, 255, 0.8); /* Pastel lilac with 80% opacity */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px); /* הוספת אפקט טשטוש קל */
}

#question-card {
    background-color: rgba(255, 255, 255, 0.9); /* כמעט לבן עם 90% אטימות */
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#question, #answer {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
}

#question {
    color: #000080; /* Navy blue for high contrast */
}

#answer {
    color: #800080; /* Purple for high contrast */
}

button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

#score {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

#questions-input {
    width: 100%;
    margin-bottom: 10px;
}

#game-info {
    margin-top: 20px;
    text-align: center;
}

#conversation {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Additional styles for better visibility */
#question-counter, #score {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

#score-buttons button {
    font-size: 18px;
    margin: 5px;
}

#end-screen h2 {
    color: #4CAF50;
    font-size: 28px;
}

#final-score, #encouragement {
    font-size: 22px;
    color: #333;
}

#background-upload {
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(240, 240, 240, 0.8);
    border-radius: 5px;
}

#background-upload h3 {
    margin-top: 0;
}

#background-image-input {
    margin-bottom: 10px;
}
