.elementor-1968 .elementor-element.elementor-element-5af18e0{--display:flex;}.elementor-1968 .elementor-element.elementor-element-30fa886{--display:flex;}.elementor-1968 .elementor-element.elementor-element-a6f5cdd{--display:flex;}/* Start custom CSS for html, class: .elementor-element-5391804 */body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background-image: url('https://res.cloudinary.com/dodvhhfkj/image/upload/v1754917948/wtu8_q2za_210511_xffzbf.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
    overflow: hidden;
}

#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 15px;
    top: -20px;
    animation: fall 3s linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.cover-screen {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cover-screen h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #3498db;
}

.start-button {
    padding: 20px 40px;
    border: none;
    background-color: #2ecc71;
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.start-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.game-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.music-button {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 8px 12px;
    border: none;
    background-color: #ff6347;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
    width: 50px;
    height: 50px;
}

.quiz-card {
    position: relative;
    background-color: white;
    border-radius: 30px;
    padding: 50px; 
    padding-top: 80px;
    width: 85%; 
    max-width: 1100px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    text-align: center;
}

.progress-text {
    position: absolute;
    top: 25px; 
    left: 40px; 
    font-size: 20px;
    font-weight: 800;
    color: #888;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 10px;
}

.question-image {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 20px;
    margin-bottom: 20px;
    display: none;
}

.question {
    font-size: 32px; 
    font-weight: 800;
    margin-bottom: 40px; 
    margin-top: 0;
    min-height: 60px;
}

.answer-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.answer-btn {
    width: 100%;
    padding: 25px;
    border: none;
    border-radius: 20px;
    font-size: 26px; 
    font-weight: 700;
    cursor: pointer;
    color: white;
    transition: all 0.2s ease;
}

.answer-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.correct {
    animation: correct-animation 0.5s ease;
    background-color: #2ecc71 !important;
}

.incorrect {
    animation: incorrect-animation 0.5s ease;
    background-color: #e74c3c !important;
}

@keyframes correct-animation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes incorrect-animation {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-15px); }
    75% { transform: translateX(15px); }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.overlay img {
    max-width: 300px;
    border-radius: 20px;
}

.hidden { display: none; }

.results-screen { 
    position: relative;
    text-align: center; 
    background-color: white; 
    padding: 40px; 
    border-radius: 25px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
    transform: scale(0);
    transition: transform 0.4s ease-out;
}

.results-screen.show {
    transform: scale(1);
}

.results-screen h2 { font-size: 32px; margin-bottom: 10px; }
.results-screen .score { font-size: 48px; font-weight: 800; color: #ff6347; margin: 10px 0 30px; }

.result-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.restart-button, .exit-button {
    padding: 15px 30px;
    border: none;
    font-size: 20px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease;
}

.restart-button:hover, .exit-button:hover {
    transform: scale(1.05);
}

.restart-button {
    background-color: #3498db;
}

.exit-button {
    background-color: #e74c3c;
}

@media (max-width: 768px) {
    .quiz-card {
        width: 95%;
        padding: 20px;
        padding-top: 70px;
    }
    .answer-options {
        grid-template-columns: 1fr;
    }
    .question {
        font-size: 22px; 
    }
    .answer-btn {
        font-size: 18px; 
        padding: 15px;
    }
    .progress-text {
        left: 20px;
        top: 20px;
    }
}/* End custom CSS */