@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000302; 
    color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

.quiz-container, #result-container {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 60px 50px; 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    max-width: 900px; 
    width: 90%;
}

h1 {
    color: #000000;  
    text-shadow: 0 0 8px #000000, 0 0 12px #05a625; 
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    font-size: 1rem; 
    margin-top: -20px; 
    margin-bottom: 10px;
    letter-spacing: 1px; 
    opacity: 0.8;
    font-family: 'Courier New', monospace; 
}

h2 {
    color: #ffffff; 
    text-shadow: 0 0 10px #05a625, 0 0 12px #05a625; 
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-size: 2.8rem; 
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif; 
}

#question-text {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 
        -1px -1px 0 #000000, 
         1px -1px 0 #000000, 
        -1px  1px 0 #000000, 
         1px  1px 0 #000000,
        0px  0px 4px #000000; 
}



#options-container .option {
    background-color: #f4f4f4;
    color: #000302;
    border: 2px solid #05a625; 
    padding: 14px 20px;
    margin: 12px 0;
    border-radius: 10px; 
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

#options-container .option:hover {
    background-color: #05a625;
    color: #ffffff;
    box-shadow: inset 0 0 0 2px #05a625, 0 0 10px #05a625;
    transform: scale(1.01);
}


#result-container p {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    text-transform: uppercase;
     text-shadow: 
        -1px -1px 0 #000000, 
         1px -1px 0 #000000, 
        -1px  1px 0 #000000, 
         1px  1px 0 #000000,
        0px  0px 4px #000000; 
    line-height: 1.6;
    margin-top: 10px;
} 


.selected-option {
    background-color: #067622; 
    color: #ffffff;
    border: 2px solid #05a625;
    box-shadow: 0 0 12px #05a625; 
    transform: scale(1.02); 
    transition: all 0.2s ease-in-out;
}

button, .cta-button {
    background-color: #05a625; 
    color: #ffffff;
    border: none;
    padding: 16px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
    text-align: center;
}

button:hover, .cta-button:hover {
    background-color: #067622; 
}

button:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

.hidden {
    display: none;
}

.selected-option {
    background-color: #05a625;
    color: #ffffff;
}

.cta-button {
    display: block;
    margin-top: 20px;
}

.alert {
    color: #7d0000;
    font-weight: bold;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer {
    background-color: #000302;
    color: #ffffff;
    text-align: center;
    padding: 16px;
    font-size: 0.9rem;
    border-top: 2px solid #05a625;
}

@media (max-width: 768px) {
    .quiz-container, #result-container {
        padding: 30px 20px;
        max-width: 100%;
        margin: 10px;
    }

    h1, h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    #question-text {
        font-size: 1.2rem;
        text-align: center;
    }

    #options-container .option {
        font-size: 1rem;
        padding: 12px;
    }

    button, .cta-button {
       
        padding: 14px;
        font-size: 1rem;
        text-align: center;
    }

    footer {
        font-size: 0.8rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    #options-container .option {
        font-size: 0.95rem;
        padding: 10px;
    }

    h1, h2 {
        font-size: 1.4rem;
    }

    #question-text {
        font-size: 1rem;
    }
}