/* wizard.css – Styles pour l'assistant interactif TCP/UP */

.wizard-container {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--bg-card-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--squircle-radius);
    padding: 2.5rem 2rem;
}

.wizard-question {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.wizard-progress {
    margin-bottom: 2.5rem;
}

.progress-bar-container {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar-fill {
    height: 100%;
    background: var(--accent-blue);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: right;
    font-size: 0.8rem;
    color: var(--slate-blue);
    font-weight: 500;
}

.wizard-choices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wizard-choice-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.wizard-choice-btn:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--accent-blue);
    transform: translateX(5px);
}

.wizard-choice-btn::before {
    content: "→";
    margin-right: 1rem;
    color: var(--accent-blue);
    opacity: 0;
    transition: opacity 0.2s;
}

.wizard-choice-btn:hover::before {
    opacity: 1;
}

/* Écran de résultat */
.result-screen {
    text-align: center;
    padding: 1rem 0;
}

.result-header {
    margin-bottom: 1.5rem;
}

.result-badge-label {
    /* styles inline dans le JS, on peut renforcer ici */
    font-family: 'Courier New', monospace;
}

.result-badge-label img {
    display: block;
    margin: 0 auto;
}

.result-description {
    font-size: 1.1rem;
    color: var(--text-light-grey);
    margin-bottom: 2rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.result-reset {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
    .wizard-container {
        padding: 1.5rem 1rem;
    }
    .wizard-question {
        font-size: 1.5rem;
    }
    .wizard-choice-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    .result-actions {
        flex-direction: column;
    }
}
