.chatbot-container{display:flex;flex-direction:column;height:calc(100vh - 110px);max-width:1200px;margin:0 auto;padding:0 20px 20px}.chatbot-header{padding:24px 0;border-bottom:1px solid rgba(255,255,255,.05);margin-bottom:24px}.chatbot-header-content{display:flex;justify-content:space-between;align-items:center}.chatbot-header-left{display:flex;align-items:center;gap:16px}.chatbot-icon-wrapper{width:56px;height:56px;background:linear-gradient(135deg,#c89b3c,#f0e6d2);border-radius:16px;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px #c89b3c4d}.chatbot-header-icon{width:48px;height:48px;object-fit:cover;border-radius:12px}.chatbot-title{font-size:28px;font-weight:700;margin:0;background:linear-gradient(135deg,#c89b3c,#f0e6d2);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.chatbot-subtitle{font-size:14px;color:#ffffff80;margin:4px 0 0}.chatbot-delete-btn{width:40px;height:40px;background:#ff3b301a;border:1px solid rgba(255,59,48,.2);border-radius:12px;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#ff3b30;transition:all .3s ease}.chatbot-delete-btn:hover{background:#ff3b3033;transform:scale(1.05)}.chatbot-messages{flex:1;overflow-y:auto;padding:0 8px;margin-bottom:16px}.chatbot-messages::-webkit-scrollbar{width:6px}.chatbot-messages::-webkit-scrollbar-track{background:#ffffff08;border-radius:3px}.chatbot-messages::-webkit-scrollbar-thumb{background:#c89b3c4d;border-radius:3px}.chatbot-messages::-webkit-scrollbar-thumb:hover{background:#c89b3c80}.chatbot-welcome{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;text-align:center;padding:40px 20px}.chatbot-welcome-icon{width:120px;height:120px;background:linear-gradient(135deg,#c89b3c,#f0e6d2);border-radius:30px;display:flex;align-items:center;justify-content:center;margin-bottom:24px;box-shadow:0 8px 32px #c89b3c4d;animation:float 3s ease-in-out infinite}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}.chatbot-welcome-icon img{width:100%;height:100%;object-fit:cover;border-radius:30px}.chatbot-welcome h2{font-size:32px;font-weight:700;margin:0 0 12px;background:linear-gradient(135deg,#c89b3c,#f0e6d2);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.chatbot-welcome p{font-size:16px;color:#fff9;margin:0 0 32px}.chatbot-suggestions-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;width:100%;max-width:600px}.chatbot-suggestion-card{background:#ffffff08;border:1px solid rgba(255,255,255,.05);border-radius:16px;padding:20px;cursor:pointer;transition:all .3s ease;display:flex;flex-direction:column;align-items:center;gap:12px;text-align:center}.chatbot-suggestion-card:hover{background:#c89b3c1a;border-color:#c89b3c4d;transform:translateY(-4px);box-shadow:0 8px 24px #c89b3c33}.chatbot-suggestion-icon{font-size:32px}.chatbot-messages-list{display:flex;flex-direction:column;gap:16px;padding:8px 0}.chatbot-message{display:flex;animation:messageSlideIn .3s ease-out}@keyframes messageSlideIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.chatbot-message-user{justify-content:flex-end}.chatbot-message-assistant{justify-content:flex-start}.chatbot-message-content{display:flex;flex-direction:column;align-items:flex-start;max-width:80%}.chatbot-message-user .chatbot-message-content{align-items:flex-end}.chatbot-message-bubble{background:#ffffff08;border:1px solid rgba(255,255,255,.05);border-radius:20px;padding:16px 20px;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.chatbot-message-user .chatbot-message-bubble{background:linear-gradient(135deg,#c89b3c33,#f0e6d21a);border:1px solid rgba(200,155,60,.3)}.chatbot-message-text{margin:0;line-height:1.6;color:#ffffffe6;word-wrap:break-word}.chatbot-message-text h1,.chatbot-message-text h2,.chatbot-message-text h3,.chatbot-message-text h4{color:#c89b3c;margin:16px 0 8px;font-weight:700;line-height:1.3}.chatbot-message-text h1{font-size:24px;border-bottom:2px solid rgba(200,155,60,.3);padding-bottom:8px}.chatbot-message-text h2{font-size:20px}.chatbot-message-text h3{font-size:16px}.chatbot-message-text p{margin:8px 0;white-space:pre-wrap}.chatbot-message-text img{max-width:200px;max-height:200px;border-radius:8px;margin:8px 0;display:inline-block;vertical-align:middle}.chatbot-message-text strong{color:#f0e6d2;font-weight:700}.chatbot-message-text em{color:#f0e6d2e6;font-style:italic}.chatbot-message-text ul,.chatbot-message-text ol{margin:8px 0;padding-left:24px}.chatbot-message-text li{margin:4px 0;color:#ffffffd9}.chatbot-message-text code{background:#c89b3c26;border:1px solid rgba(200,155,60,.3);border-radius:4px;padding:2px 6px;font-family:Courier New,monospace;font-size:13px;color:#f0e6d2}.chatbot-message-text pre{background:#0000004d;border:1px solid rgba(200,155,60,.2);border-radius:8px;padding:12px;overflow-x:auto;margin:8px 0}.chatbot-message-text pre code{background:transparent;border:none;padding:0}.chatbot-message-text table{width:100%;border-collapse:collapse;margin:12px 0;font-size:14px}.chatbot-message-text table th,.chatbot-message-text table td{border:1px solid rgba(200,155,60,.3);padding:8px 12px;text-align:left}.chatbot-message-text table th{background:#c89b3c33;color:#f0e6d2;font-weight:700}.chatbot-message-text table tr:nth-child(2n){background:#ffffff05}.chatbot-message-text table tr:hover{background:#c89b3c1a}.chatbot-message-text hr{border:none;border-top:1px solid rgba(200,155,60,.3);margin:16px 0}.chatbot-message-text blockquote{border-left:3px solid #C89B3C;padding-left:12px;margin:12px 0;color:#ffffffb3;font-style:italic}.chatbot-message-text a{color:#c89b3c;text-decoration:none;border-bottom:1px solid rgba(200,155,60,.3);transition:all .2s}.chatbot-message-text a:hover{color:#f0e6d2;border-bottom-color:#f0e6d2}.chatbot-message-time{font-size:12px;color:#ffffff4d;margin-top:6px;padding:0 4px}.chatbot-champion-suggestions{display:flex;flex-direction:column;gap:12px;margin-top:16px}.chatbot-champion-card{background:#ffffff0d;border:1px solid rgba(200,155,60,.2);border-radius:12px;padding:16px;transition:all .3s ease}.chatbot-champion-card:hover{background:#c89b3c1a;border-color:#c89b3c66;transform:translate(4px)}.chatbot-champion-header{display:flex;align-items:center;gap:12px;margin-bottom:8px}.chatbot-champion-name{font-size:18px;font-weight:700;margin:0;color:#c89b3c}.chatbot-champion-reason{font-size:14px;color:#ffffffb3;margin:0 0 12px;line-height:1.5}.chatbot-champion-tips{background:#c89b3c1a;border-left:3px solid #C89B3C;padding:10px 12px;border-radius:6px}.chatbot-champion-tips-label{font-size:12px;font-weight:600;color:#c89b3c;display:block;margin-bottom:4px}.chatbot-champion-tips p{margin:0;font-size:13px;color:#ffffffb3;line-height:1.5}.chatbot-typing-indicator{display:flex;gap:6px;padding:4px 0}.chatbot-typing-indicator span{width:8px;height:8px;background:#c89b3c99;border-radius:50%;animation:typing 1.4s infinite}.chatbot-typing-indicator span:nth-child(2){animation-delay:.2s}.chatbot-typing-indicator span:nth-child(3){animation-delay:.4s}@keyframes typing{0%,60%,to{transform:scale(1);opacity:.6}30%{transform:scale(1.3);opacity:1}}.chatbot-input-area{border-top:1px solid rgba(255,255,255,.05);padding-top:16px}.chatbot-error{background:#ff3b301a;border:1px solid rgba(255,59,48,.3);border-radius:12px;padding:12px 16px;margin-bottom:12px;display:flex;justify-content:space-between;align-items:center;color:#ff3b30;font-size:14px}.chatbot-error button{background:none;border:none;color:#ff3b30;cursor:pointer;font-size:16px;padding:0 4px;opacity:.7;transition:opacity .2s}.chatbot-error button:hover{opacity:1}.chatbot-input-wrapper{display:flex;gap:12px;align-items:flex-end;background:#ffffff08;border:1px solid rgba(255,255,255,.05);border-radius:16px;padding:12px 16px;transition:all .3s ease}.chatbot-input-wrapper:focus-within{background:#ffffff0d;border-color:#c89b3c80;box-shadow:0 0 0 4px #c89b3c1a}.chatbot-input{flex:1;background:transparent;border:none;outline:none;color:#ffffffe6;font-size:15px;font-family:Montserrat,sans-serif;resize:none;max-height:120px;min-height:24px}.chatbot-input::placeholder{color:#ffffff4d}.chatbot-input:disabled{opacity:.5;cursor:not-allowed}.chatbot-send-btn{width:40px;height:40px;background:linear-gradient(135deg,#c89b3c,#f0e6d2);border:none;border-radius:12px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .3s ease;flex-shrink:0}.chatbot-send-btn:hover:not(:disabled){transform:scale(1.05);box-shadow:0 4px 16px #c89b3c66}.chatbot-send-btn:disabled{opacity:.4;cursor:not-allowed}.chatbot-send-btn img{width:20px;height:20px;filter:brightness(0) invert(1)}.chatbot-spinner{width:20px;height:20px;border:3px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:spin .8s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}@media(max-width:768px){.chatbot-container{height:calc(100vh - 60px);padding:0 12px 80px}.chatbot-title{font-size:22px}.chatbot-icon-wrapper{width:48px;height:48px}.chatbot-header-icon{width:28px;height:28px}.chatbot-message-content{max-width:90%}.chatbot-suggestions-grid{grid-template-columns:1fr}.chatbot-welcome h2{font-size:24px}.chatbot-welcome-icon{width:100px;height:100px}.chatbot-welcome-icon img{width:56px;height:56px}}
