:root{--primary: #3b82f6;--primary-hover: #2563eb;--text-dark: #1e293b;--text-light: #64748b;--bg-gradient: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);--glass-bg: rgba(255, 255, 255, .85);--glass-border: rgba(255, 255, 255, .4);--glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, .07)}*{box-sizing:border-box;margin:0;padding:0}body{font-family:Inter,sans-serif;background:var(--bg-gradient);color:var(--text-dark);min-height:100vh;display:flex;align-items:center;justify-content:center;padding:.5rem}@media (min-width: 600px){body{padding:1rem}}.app-container{width:100%;max-width:800px;background:var(--glass-bg);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:1px solid var(--glass-border);border-radius:20px;box-shadow:var(--glass-shadow);padding:1.5rem 1rem;animation:fadeIn .5s ease-out}@media (min-width: 600px){.app-container{padding:2rem 3rem}}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}h1,h2,h3{margin-bottom:1rem;color:var(--text-dark)}.text-center{text-align:center}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.btn{background:var(--primary);color:#fff;border:none;padding:.75rem 1.5rem;border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease;display:inline-block;width:100%}.btn:hover{background:var(--primary-hover);transform:translateY(-2px);box-shadow:0 4px 12px #3b82f64d}.btn:disabled{background:#cbd5e1;cursor:not-allowed;transform:none;box-shadow:none}.form-group{margin-bottom:1.5rem;text-align:left}.form-group label{display:block;margin-bottom:.5rem;font-weight:500;color:var(--text-dark)}.form-group input{width:100%;padding:.75rem 1rem;border:1px solid #cbd5e1;border-radius:8px;font-size:1rem;font-family:inherit;transition:border-color .3s ease,box-shadow .3s ease}.form-group input:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px #3b82f61a}.quiz-card{background:#fff;padding:1.25rem 1rem;border-radius:12px;box-shadow:0 4px 6px #0000000d;margin-bottom:1.5rem}@media (min-width: 600px){.quiz-card{padding:2rem}}.question-text{font-size:1.2rem;font-weight:600;line-height:1.5;margin-bottom:1.5rem}.options-grid{display:grid;grid-template-columns:1fr;gap:.75rem}@media (min-width: 600px){.options-grid{grid-template-columns:1fr 1fr}}.option-btn{background:#f8fafc;border:2px solid #e2e8f0;padding:1rem;border-radius:8px;text-align:center;font-weight:500;cursor:pointer;transition:all .2s ease}.option-btn:hover{background:#f1f5f9;border-color:#cbd5e1}.option-btn.selected{background:#eff6ff;border-color:var(--primary);color:var(--primary-hover)}.result-header{border-bottom:2px solid #e2e8f0;padding-bottom:1rem;margin-bottom:1.5rem}.identity-layout{display:flex;flex-direction:column;gap:2rem}.identity-instructions{display:none;background:#3b82f60d;padding:1.5rem;border-radius:12px;border-left:4px solid var(--primary);text-align:left}.identity-instructions ul{margin-top:1rem;padding-left:1.5rem;color:var(--text-dark);font-size:.95rem;line-height:1.6}.identity-instructions h2{font-size:1.5rem;margin-bottom:.5rem;color:var(--primary)}@media (min-width: 768px){.identity-layout{flex-direction:row;align-items:flex-start}.identity-instructions{display:block;flex:1}.identity-form-container{flex:1.2;background:#fff;padding:2rem;border-radius:16px;box-shadow:0 4px 6px #00000005}}@media print{.no-print{display:none!important}body{background:#fff!important}.app-container{box-shadow:none!important;margin:0!important;padding:0!important}.recap-table{font-size:.8rem}.diagnosis-badge{border:1px solid #000}}.identity-box{background:#f8fafc;padding:1.5rem;border-radius:12px;margin-bottom:1.5rem;border:1px solid #e2e8f0}.identity-row{display:flex;margin-bottom:.5rem}.identity-row:last-child{margin-bottom:0}.identity-label{width:150px;font-weight:600;color:var(--text-light)}.identity-value{font-weight:500;color:var(--text-dark);flex:1}.score-box{display:flex;background:#fff;border-radius:12px;border:1px solid #e2e8f0;margin-bottom:2rem;overflow:hidden}.score-left{background:#f8fafc;padding:2rem;text-align:center;border-right:1px solid #e2e8f0;min-width:150px}.score-number{font-size:3.5rem;font-weight:700;color:var(--primary);line-height:1;margin-bottom:.25rem}.score-max{font-size:.875rem;color:var(--text-light)}.score-right{padding:2rem;display:flex;flex-direction:column;justify-content:center}.diagnosis-label{font-size:.875rem;color:var(--text-light);text-transform:uppercase;letter-spacing:.05em;font-weight:600;margin-bottom:.5rem}.diagnosis-title{font-size:1.5rem;font-weight:700;margin-bottom:1rem}.diagnosis-badge{display:inline-block;background:var(--text-dark);color:#fff;padding:.25rem .75rem;border-radius:6px;font-size:.875rem;font-weight:600;width:max-content}.mindset-F{color:#ef4444}.mindset-FG{color:#f59e0b}.mindset-GF{color:#10b981}.mindset-G{color:var(--primary)}.recap-table{width:100%;border-collapse:collapse;margin-top:1rem;font-size:.9rem}.recap-table th,.recap-table td{padding:.75rem;text-align:left;border-bottom:1px solid #e2e8f0}.recap-table th{background:#f8fafc;font-weight:600;color:var(--text-light)}.recap-table tr:hover{background:#f8fafc}.loader{border:4px solid #f3f3f3;border-top:4px solid var(--primary);border-radius:50%;width:40px;height:40px;animation:spin 1s linear infinite;margin:2rem auto}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.error-message{background:#fef2f2;color:#b91c1c;padding:1rem;border-radius:8px;margin-bottom:1rem;text-align:center;border:1px solid #f87171}.warning-config{background:#fffbeb;color:#b45309;padding:1rem;border-radius:8px;margin-bottom:1rem;font-size:.9rem;border:1px solid #fbbf24}
