/* GENERAL */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background: #f5eaff;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* SCREENS */
.screen {
    display: none;
    width: 100%;
    padding: 0;
}

.screen.active {
    display: block;
}

/* WELCOME SCREEN */
#welcome-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    margin: 0;
}

.welcome-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* QUIZ */
.quiz-header {
    padding: 20px;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #e2c7ff;
    border-radius: 5px;
    overflow: hidden;
}

#progress-bar-fill {
    width: 0%;
    height: 100%;
    background: #a854ff;
    transition: width 0.3s;
}

.progress-text-container {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.question-block {
    padding: 20px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
}

.btn.primary {
    background: #a854ff;
    color: white;
}

.btn.secondary {
    background: white;
    border: 2px solid #a854ff;
    color: #a854ff;
}

.quiz-navigation {
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* COMPLETION */
#completion-screen {
    text-align: center;
    padding: 20px;
}

.completion-image-container img {
    width: 200px;
    display: block;
    margin: 0 auto;
}

/* RESULTS */
#results-screen {
    padding: 20px;
    text-align: center;
}

#results-content {
    margin-top: 20px;
}
