/* Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(to bottom, #1e5799, #207cca, #2989d8, #1e5799);
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 550px;
    text-align: center;
}

h1 {
    color: #FFF;
    margin: 20px 0;
}

/* Progresso */

.progress {
    height: 10px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    left: 0;
    top: 0;
    right: 0;
}

.progress--area {
    width: 100%;
    margin-bottom: 25px;
}

.progress--bar {
    background-color: #00FF00;
    height: 100%;
    transition: all ease .5s;
}

.progress--text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-align: center;
}

/* Questões e Resultado */

.questionArea,
.scoreArea {
    display: none;
}

.questionArea {
    max-width: 500px;
    width: 100%;
}

.question {
    color: #FFF;
    font-size: 18px;
    margin: 20px 0;
}

.option {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.option span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    margin-left: 5px;
    margin-right: 10px;
    background-color: #38bdf8;
    color: #FFF;
    flex-shrink: 0;
}
.option:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.scoreArea {
    background: transparent;
    color: #FFF;
    padding: 20px;
    border-radius: 20px;
    margin: 10px;
    text-align: center;
}
.prizeImage {
    width: auto;
    height: 100px;
    margin-bottom: 10px;
}
.scoreText1 {
    color: #000;
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 10px;
}
.scorePct {
    color: #0d630d;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
.scoreText2 {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}

.scoreArea button {
    border: 0;
    border-radius: 10px;
    background-color: #38bdf8;
    color: #FFF;
    padding: 10px;
    margin-top: 20px;
    cursor: pointer;
}
.scoreArea button:hover {
    background-color: #0ea5e9;
}

/* Footer */

footer {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

footer:hover {
    color: rgba(255, 255, 255, 0.9);
}