:root{--primary:#C6FF00;--bg:#050505;--bg2:#0D0D0D;--card:#111111;--border:rgba(198,255,0,.12);--text:#ffffff;--muted:#8c8c8c}#chat-toggle{position:fixed;right:18px;bottom:18px;width:50px;height:50px;background:#050505;border:2px solid #C6FF00;border-radius:20px;display:flex;align-items:center;justify-content:center;overflow:hidden;cursor:pointer;z-index:999999;transition:all .25s ease;box-shadow:0 0 25px rgb(198 255 0 / .35),0 15px 40px rgb(0 0 0 / .55)}#chat-toggle:hover{transform:translateY(-3px);box-shadow:0 0 0 1px rgb(198 255 0 / .25),0 0 35px rgb(198 255 0 / .4),0 15px 40px rgb(0 0 0 / .6)}#chat-toggle img{width:25px;height:25px;display:block;object-fit:contain;object-position:center;max-width:none;transform:none}#chat-box{position:fixed;right:18px;bottom:98px;width:min(390px, calc(100vw - 20px));height:580px;display:none;flex-direction:column;background:rgb(8 8 8 / .98);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid var(--border);border-radius:24px;overflow:hidden;z-index:999998;box-shadow:0 25px 70px rgb(0 0 0 / .65)}#chat-header{height:68px;display:flex;align-items:center;justify-content:space-between;padding:0 14px;background:#0D0D0D;border-bottom:1px solid var(--border);flex-shrink:0}.chat-title{display:flex;align-items:center;gap:10px;color:#fff;font-weight:700;font-size:15px}.chat-status{width:10px;height:10px;border-radius:50%;background:var(--primary);box-shadow:0 0 12px var(--primary)}.title{color:#fff;font-size:15px;font-weight:700}#chat-end{border:none;background:#fff0;color:var(--primary);cursor:pointer;font-size:12px;font-weight:700}#chat-messages{flex:1;overflow-y:auto;padding:18px;background:#050505;scroll-behavior:smooth}#chat-messages::-webkit-scrollbar{width:5px}#chat-messages::-webkit-scrollbar-thumb{background:#333;border-radius:20px}.bot-message{max-width:85%;width:fit-content;padding:14px 16px;margin-bottom:14px;color:#fff;background:#111;border:1px solid rgb(255 255 255 / .05);border-radius:18px 18px 18px 4px;line-height:1.7;font-size:14px;word-wrap:break-word;overflow-wrap:break-word}.user-message{max-width:80%;width:fit-content;margin-left:auto;margin-bottom:14px;padding:14px 16px;background:var(--primary);color:#000;font-weight:600;border-radius:18px 18px 4px 18px;line-height:1.6;font-size:14px;word-wrap:break-word;overflow-wrap:break-word}#chat-input-area{display:flex;gap:10px;padding:14px;background:#0D0D0D;border-top:1px solid var(--border);flex-shrink:0}#chat-input{flex:1;border:1px solid #222;background:#111;color:#fff;border-radius:14px;padding:14px;outline:none;font-size:14px;min-width:0}#chat-input:focus{border-color:var(--primary)}#chat-input::placeholder{color:#666}#chat-send{border:none;min-width:85px;border-radius:14px;background:var(--primary);color:#000;font-weight:700;cursor:pointer;transition:.25s}#chat-send:hover{transform:translateY(-2px);box-shadow:0 0 20px rgb(198 255 0 / .25)}.typing-dots{color:var(--primary);font-weight:600}.typing-dots span{animation:blink 1.4s infinite}.typing-dots span:nth-child(2){animation-delay:.2s}.typing-dots span:nth-child(3){animation-delay:.4s}@keyframes blink{0%{opacity:.2}20%{opacity:1}100%{opacity:.2}}@media(max-width:768px){#chat-box{width:calc(100vw - 20px);height:min(500px,60vh);max-height:500px;min-height:420px;right:10px;bottom:80px;border-radius:18px}#chat-toggle{width:50px;height:50px;right:12px;bottom:12px}#chat-toggle img{width:25px;height:25px}#chat-input{font-size:16px}#chat-send{min-width:75px}}