.avatar-container{display:flex;flex-direction:column;align-items:center;padding:5px}.avatar-wrapper{position:relative;width:150px;height:150px;display:flex;align-items:center;justify-content:center}.avatar{width:120px;height:120px;border-radius:50%;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;animation:breathe 4s ease-in-out infinite;box-shadow:0 10px 40px #667eea66;border:3px solid rgba(102,126,234,.5)}.avatar-photo{width:100%;height:100%;object-fit:cover;border-radius:50%;position:relative;z-index:1}.speaking-overlay{position:absolute;bottom:0;left:0;right:0;height:35%;background:linear-gradient(to top,rgba(102,126,234,.9),transparent);display:flex;align-items:flex-end;justify-content:center;padding-bottom:8px;z-index:2;border-radius:0 0 50% 50%}.sound-wave{display:flex;gap:3px;align-items:flex-end;height:20px}.sound-wave span{width:3px;background:#fff;border-radius:2px;animation:wave .6s ease-in-out infinite}.sound-wave span:nth-child(1){animation-delay:0s}.sound-wave span:nth-child(2){animation-delay:.2s}.sound-wave span:nth-child(3){animation-delay:.4s}.ring{position:absolute;border-radius:50%;border:2px solid rgba(102,126,234,.3)}.ring-1{width:130px;height:130px;animation:rotate 20s linear infinite}.ring-2{width:145px;height:145px;animation:rotate 25s linear infinite reverse;border-style:dashed}.ring-3{width:160px;height:160px;border-color:#667eea80}.ring.pulse{animation:pulse 1s ease-in-out infinite}.avatar-status{margin-top:15px}.status{display:flex;align-items:center;gap:8px;font-size:.9rem;color:#a0aec0}.status.speaking{color:#667eea}.status .dot{width:8px;height:8px;background:#667eea;border-radius:50%;animation:pulse 1s ease-in-out infinite}@keyframes breathe{0%,to{transform:scale(1)}50%{transform:scale(1.02)}}@keyframes wave{0%,to{height:8px}50%{height:18px}}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes pulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.05)}}.avatar-container.speaking .avatar{box-shadow:0 10px 50px #667eea99}@media (max-width: 600px){.avatar-wrapper{width:120px;height:120px}.avatar{width:90px;height:90px}.ring-1{width:100px;height:100px}.ring-2{width:110px;height:110px}.ring-3{width:120px;height:120px}}.chat-container{background:#ffffff0d;border-radius:20px;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.1);overflow:hidden;display:flex;flex-direction:column;height:auto}.messages{flex:1;overflow-y:auto;padding:12px;display:flex;flex-direction:column;gap:12px}.messages::-webkit-scrollbar{width:6px}.messages::-webkit-scrollbar-track{background:#ffffff0d}.messages::-webkit-scrollbar-thumb{background:#667eea4d;border-radius:3px}.message{display:flex;animation:fadeIn .3s ease}.message.user{justify-content:flex-end}.message.assistant{justify-content:flex-start}.message-content{display:flex;align-items:flex-start;gap:10px;max-width:80%}.message.user .message-content{flex-direction:row-reverse}.avatar-icon{font-size:1.5rem;flex-shrink:0}.message p{padding:12px 16px;border-radius:18px;line-height:1.5;font-size:.95rem}.message.assistant p{background:#667eea33;color:#e2e8f0;border-bottom-left-radius:4px}.message.user p{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;border-bottom-right-radius:4px}.typing-indicator{display:flex;gap:4px;padding:12px 16px;background:#667eea33;border-radius:18px 18px 18px 4px}.typing-indicator span{width:8px;height:8px;background:#667eea;border-radius:50%;animation:bounce 1.4s infinite ease-in-out}.typing-indicator span:nth-child(1){animation-delay:0s}.typing-indicator span:nth-child(2){animation-delay:.2s}.typing-indicator span:nth-child(3){animation-delay:.4s}.suggestions{padding:8px 12px;border-top:1px solid rgba(255,255,255,.1)}.suggestions-label{font-size:.8rem;color:#718096;margin-bottom:10px}.suggestion-buttons{display:flex;flex-wrap:wrap;gap:8px}.suggestion-buttons button{padding:8px 14px;background:#667eea26;border:1px solid rgba(102,126,234,.3);border-radius:20px;color:#a0aec0;font-size:.85rem;cursor:pointer;transition:all .2s ease}.suggestion-buttons button:hover{background:#667eea4d;color:#e2e8f0}.suggestion-buttons button:disabled{opacity:.5;cursor:not-allowed}.input-form{display:flex;gap:10px;padding:12px;border-top:1px solid rgba(255,255,255,.1);background:#0003}.input-form input{flex:1;padding:12px 18px;background:#ffffff14;border:1px solid rgba(255,255,255,.1);border-radius:25px;color:#fff;font-size:.95rem;outline:none;transition:all .2s ease}.input-form input::placeholder{color:#718096}.input-form input:focus{border-color:#667eea;background:#ffffff1a}.input-form button{width:45px;height:45px;border-radius:50%;border:none;background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s ease}.input-form button:hover:not(:disabled){transform:scale(1.05);box-shadow:0 5px 20px #667eea66}.input-form button:disabled{opacity:.5;cursor:not-allowed}.input-form button svg{width:20px;height:20px}.mic-btn{background:#ffffff1a!important;border:1px solid rgba(102,126,234,.3)}.mic-btn:hover:not(:disabled){background:#667eea33!important}.mic-btn.listening{background:#ef44444d!important;border-color:#ef444480;animation:pulse 1.5s ease-in-out infinite}.mic-btn svg{width:22px;height:22px}@keyframes pulse{0%,to{transform:scale(1);box-shadow:0 0 #ef444466}50%{transform:scale(1.05);box-shadow:0 0 0 8px #ef444400}}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes bounce{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}@media (max-width: 600px){.chat-container{height:350px}.message-content{max-width:90%}.suggestion-buttons button{font-size:.75rem;padding:6px 10px}}.app{min-height:100vh;display:flex;flex-direction:column;max-width:800px;margin:0 auto;padding:12px}.header{text-align:center;padding:8px 0}.header-content{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:15px}.chat-actions{display:flex;gap:10px}.action-btn{padding:8px 16px;background:#ffffff1a;border:1px solid rgba(102,126,234,.3);border-radius:20px;color:#a0aec0;font-size:.85rem;cursor:pointer;transition:all .2s ease;white-space:nowrap}.action-btn:hover:not(:disabled){background:#667eea4d;color:#e2e8f0;border-color:#667eea80}.action-btn:disabled{opacity:.4;cursor:not-allowed}.header h1{font-size:1.9rem;font-weight:700;background:linear-gradient(135deg,#667eea,#764ba2);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:6px}.subtitle{font-size:.98rem;color:#a0aec0;font-weight:400}.main-content{flex:1;display:flex;flex-direction:column;gap:12px}.voice-toggle{display:flex;justify-content:center;gap:10px}.voice-btn,.stop-btn{padding:8px 16px;border-radius:20px;border:none;cursor:pointer;font-size:.9rem;transition:all .3s ease}.voice-btn{background:#ffffff1a;color:#a0aec0}.voice-btn.active{background:#667eea4d;color:#667eea}.voice-btn:hover{background:#667eea66}.stop-btn{background:#ea66664d;color:#ea6666}.stop-btn:hover{background:#ea666680}.footer{text-align:center;padding:20px 0;color:#718096;font-size:.9rem}.footer-content{display:flex;flex-direction:column;align-items:center;gap:12px;margin-bottom:10px}.footer p{margin:5px 0}.footer a{color:#a0aec0;text-decoration:none;transition:color .2s ease}.footer a:hover{color:#667eea}.download-cv-btn{display:inline-flex;align-items:center;gap:8px;padding:10px 20px;background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;text-decoration:none;border-radius:25px;font-size:.9rem;font-weight:500;transition:all .3s ease;box-shadow:0 4px 15px #667eea4d}.download-cv-btn:hover{transform:translateY(-2px);box-shadow:0 6px 20px #667eea80}.powered-by{font-size:.8rem;opacity:.7}@media (max-width: 600px){.app{padding:10px}.header-content{flex-direction:column;text-align:center}.header h1{font-size:1.6rem}.subtitle{font-size:.9rem}.chat-actions{justify-content:center}.action-btn{font-size:.75rem;padding:6px 12px}}*{margin:0;padding:0;box-sizing:border-box}body{font-family:Inter,-apple-system,BlinkMacSystemFont,sans-serif;background:linear-gradient(135deg,#1a1a2e,#16213e,#0f3460);min-height:100vh;color:#fff}#root{min-height:100vh;display:flex;flex-direction:column}
