* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;
}

body {
    background-color: #f0f8ff;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background-color: #4682b4;
    color: white;
    padding: 15px;
    border-radius: 10px;
}

h1 {
    font-size: 28px;
}

.score-container {
    font-size: 18px;
    font-weight: bold;
}

.game-area {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#question-container {
    text-align: center;
    margin-bottom: 30px;
}

#hebrew-display {
    font-size: 72px;
    margin: 20px 0;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#options-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.option {
    background-color: #e6f2ff;
    border: 2px solid #4682b4;
    border-radius: 8px;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.option:hover {
    background-color: #d1e7ff;
    transform: scale(1.03);
}

.correct {
    background-color: #90ee90;
    border-color: #32cd32;
}

.incorrect {
    background-color: #ffcccb;
    border-color: #ff6b6b;
}

#feedback {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 18px;
    font-weight: bold;
}

.feedback-correct {
    background-color: #d4edda;
    color: #155724;
}

.feedback-incorrect {
    background-color: #f8d7da;
    color: #721c24;
}

.controls {
    display: flex;
    justify-content: center;
}

button {
    background-color: #4682b4;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #36648b;
}

.hidden {
    display: none;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    h1 {
        margin-bottom: 10px;
    }
    
    #hebrew-display {
        font-size: 60px;
    }
    
    #options-container {
        grid-template-columns: 1fr;
    }
}

/* Level selector styles */
.level-selector {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.level-btn {
    background-color: #e6f2ff;
    border: 2px solid #4682b4;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    color: #000000;
    font-weight: 600;
}

.level-btn:hover {
    background-color: #d1e7ff;
    transform: scale(1.05);
}

.level-btn.current-level {
    background-color: #4682b4;
    color: white;
    font-weight: bold;
}

.small-btn {
    background-color: #4682b4;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.small-btn:hover {
    background-color: #36648b;
} 