/* anglescina/assets/css/style.css */
body {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    overflow-x: hidden;
}

.glass-panel {
    background: rgba(33, 37, 41, 0.85);
    /* Darker background for better contrast */
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    /* Wider for text */
}

.game-container {
    transition: all 0.3s ease;
}

.score-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.question-box {
    min-height: 100px;
}

.display-4 {
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.glass-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-radius: 10px;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.option-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.2s;
    font-size: 1.1rem;
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.option-btn.selected {
    background: rgba(13, 110, 253, 0.5);
    border-color: #0d6efd;
}

.option-btn.correct {
    background: rgba(25, 135, 84, 0.6) !important;
    border-color: #198754 !important;
}

.option-btn.wrong {
    background: rgba(220, 53, 69, 0.6) !important;
    border-color: #dc3545 !important;
}

.reading-box {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}