@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
:root { --primary-color: #6a1b9a; --secondary-color: #fce4ec; --card-bg: #ffffff; --body-bg: #f3e5f5; --text-color: #333; --light-text: #6c757d; --border-color: #e0e0e0; --highlight-bg: #f8f9fa; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; background-color: var(--body-bg); color: var(--text-color); display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 20px; }
.wizard-wrapper { width: 100%; max-width: 600px; }
.wizard-card { background-color: var(--card-bg); border-radius: 12px; box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1); overflow: hidden; }
.wizard-header { text-align: center; padding: 16px; background-color: var(--primary-color); color: white; }
.wizard-header h2 { font-size: 22px; }
.progress-bar { background-color: #e0e0e0; padding: 2px; }
.progress-bar-inner { height: 6px; background-color: #ffab40; border-radius: 3px; transition: width 0.4s ease-in-out; }
.wizard-body { padding: 32px; }
#question-text { font-size: 20px; font-weight: 600; margin-bottom: 24px; text-align: center; }
.options-container { display: grid; gap: 16px; }
.option-label { display: block; background-color: var(--highlight-bg, #f8f9fa); border: 2px solid var(--border-color); border-radius: 8px; padding: 16px; cursor: pointer; transition: all 0.2s; }
.option-label:hover { border-color: var(--primary-color); }
.option-label input[type="radio"]:checked + span, .option-label.selected span { color: var(--primary-color); font-weight: 600; }
.option-label.selected { border-color: var(--primary-color); background-color: var(--secondary-color); }
.option-label input[type="radio"] { display: none; }
.wizard-footer { padding: 24px; border-top: 1px solid var(--border-color); }
button.primary-btn { width: 100%; padding: 14px; border: none; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; background-color: var(--primary-color); color: white; transition: background-color 0.2s; }
button.primary-btn:hover { background-color: #4a148c; }
.screen-title { text-align: center; font-size: 24px; font-weight: 700; color: var(--primary-color); margin-bottom: 8px; }
.screen-subtitle { text-align: center; font-size: 16px; color: var(--light-text); margin-bottom: 32px; }
.profile-options-container { display: grid; gap: 16px; margin-bottom: 32px; }
.profile-option-label { display: block; border: 2px solid var(--border-color); border-radius: 12px; cursor: pointer; transition: all 0.2s; }
.profile-option-label:hover { border-color: var(--primary-color); transform: translateY(-2px); }
.profile-option-label input[type="radio"]:checked + .profile-option-content { border-color: var(--primary-color); background-color: var(--secondary-color); box-shadow: 0 4px 15px rgba(106, 27, 154, 0.1); }
.profile-option-content { padding: 20px; text-align: center; border: 2px solid transparent; border-radius: 10px; }
.profile-option-content h4 { font-size: 18px; margin-bottom: 4px; color: #333; }
.profile-option-content p { font-size: 14px; color: var(--light-text); }
.info-box { margin-top: 24px; padding: 16px; background-color: #f1f8e9; border-left: 4px solid #8bc34a; color: #556b2f; font-size: 14px; line-height: 1.6; border-radius: 4px; }
.result-list { list-style: none; padding-left: 0; margin: 20px 0; }
.result-list li { background-color: var(--highlight-bg, #f8f9fa); padding: 12px; border-radius: 8px; margin-bottom: 10px; font-weight: 600; }
.result-info { font-size: 14px; color: var(--light-text); margin-top: 20px; }
button.secondary-btn { background-color: #e9ecef; color: #333; border: 2px solid #dee2e6; margin-top: 20px; font-weight: 600; }
button.secondary-btn:hover { background-color: #dee2e6; border-color: #adb5bd; }
/* YENİ EKLENEN SONUÇ KARTI STİLLERİ */
.result-card {
    background-color: var(--highlight-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.result-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.result-card .match-score {
    font-size: 14px;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 12px;
}

.result-card .description {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.result-card .tags-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.result-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.result-card .tag {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.result-card .details-btn {
    display: inline-block;
    width: auto;
    padding: 8px 16px;
    font-size: 14px;
    margin-top: 10px;
}
