/* Questionnaire Container */
#quiz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #09090b;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#quiz-container {
    max-width: 600px;
    width: 90%;
    text-align: center;
}

.quiz-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    border-radius: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

#progress-bar-bg {
    width: 100%;
    height: 2px;
    background: #27272a;
    margin-bottom: 3rem;
    border-radius: 2px;
}

#progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #d946ef);
    transition: width 0.4s ease;
}

.question-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

#question-text {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.question-sub {
    color: #a1a1aa;
    margin-bottom: 2.5rem;
}

.options-grid {
    display: grid;
    gap: 12px;
}

.option-btn {
    background: #18181b;
    border: 1px solid #27272a;
    color: white;
    padding: 1.25rem;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-btn:hover {
    background: #27272a;
    border-color: #3f3f46;
}

.option-btn.selected {
    background: white;
    color: black;
    border-color: white;
    transform: scale(0.98);
}

#results-screen {
    display: none;
}

.btn-primary {
    background: white;
    color: black;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #e4e4e7;
}

.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
