*{margin:0;padding:0;box-sizing:border-box}body{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;background:linear-gradient(135deg,#667eea,#764ba2);min-height:100vh;margin:0}#root{width:100%}.pokemon-card{background:#fff;border-radius:12px;padding:20px;box-shadow:0 4px 6px #0000001a;transition:transform .2s,box-shadow .2s;display:flex;flex-direction:column;align-items:center;position:relative}.pokemon-card:hover{transform:translateY(-5px);box-shadow:0 8px 12px #00000026}.pokemon-id{position:absolute;top:10px;right:15px;font-weight:700;color:#999;font-size:.9rem}.pokemon-image{width:150px;height:150px;object-fit:contain}.pokemon-name{margin:10px 0;font-size:1.5rem;font-weight:700;text-transform:capitalize;color:#333}.pokemon-types{display:flex;gap:8px;margin-bottom:15px}.type-badge{padding:5px 15px;border-radius:20px;color:#fff;font-size:.85rem;font-weight:600;text-transform:uppercase}.pokemon-info{width:100%;display:flex;justify-content:space-around;margin-top:10px;padding-top:15px;border-top:1px solid #eee}.info-item{display:flex;flex-direction:column;align-items:center;gap:5px}.info-label{font-size:.8rem;color:#666}.info-value{font-weight:700;color:#333}.pokemon-list-container{max-width:1400px;margin:0 auto;padding:20px}.header{text-align:center;margin-bottom:40px}.header h1{font-size:3rem;color:#ffcb05;text-shadow:3px 3px 0 #2a75bb,-1px -1px 0 #2a75bb,1px -1px 0 #2a75bb,-1px 1px 0 #2a75bb;margin-bottom:20px}.search-bar{position:relative;max-width:500px;margin:0 auto 15px}.search-input{width:100%;padding:15px 45px 15px 20px;font-size:1rem;border:2px solid #ddd;border-radius:50px;outline:none;transition:border-color .3s}.search-input:focus{border-color:#2a75bb}.clear-button{position:absolute;right:15px;top:50%;transform:translateY(-50%);background:none;border:none;font-size:1.2rem;color:#999;cursor:pointer;padding:5px;line-height:1}.clear-button:hover{color:#333}.results-count{color:#666;font-size:.95rem}.pokemon-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:25px;margin-top:30px}.loading,.error{text-align:center;font-size:1.5rem;padding:50px;color:#666}.error{color:#d32f2f}.no-results{text-align:center;font-size:1.2rem;color:#666;padding:50px}@media(max-width:768px){.header h1{font-size:2rem}.pokemon-grid{grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:15px}}.chat-toggle-button{position:fixed;bottom:30px;right:30px;width:60px;height:60px;border-radius:50%;background:linear-gradient(135deg,#667eea,#764ba2);border:none;color:#fff;font-size:1.8rem;cursor:pointer;box-shadow:0 4px 12px #0000004d;transition:all .3s ease;z-index:1000;display:flex;align-items:center;justify-content:center}.chat-toggle-button:hover{transform:scale(1.1);box-shadow:0 6px 16px #0006}.chat-toggle-button.open{background:#e74c3c}.chat-container{position:fixed;bottom:100px;right:30px;width:380px;height:500px;background:#fff;border-radius:15px;box-shadow:0 8px 24px #0003;display:flex;flex-direction:column;z-index:999;animation:slideUp .3s ease}@keyframes slideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.chat-header{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;padding:20px;border-radius:15px 15px 0 0;display:flex;justify-content:space-between;align-items:center}.chat-header h3{margin:0;font-size:1.2rem}.chat-close{background:none;border:none;color:#fff;font-size:1.5rem;cursor:pointer;padding:0;width:30px;height:30px;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:background .2s}.chat-close:hover{background:#fff3}.chat-messages{flex:1;overflow-y:auto;padding:20px;display:flex;flex-direction:column;gap:15px;background:#f5f5f5}.chat-messages::-webkit-scrollbar{width:6px}.chat-messages::-webkit-scrollbar-thumb{background:#ccc;border-radius:3px}.chat-message{display:flex;flex-direction:column;gap:5px}.chat-message.user{align-items:flex-end}.chat-message.bot{align-items:flex-start}.message-bubble{max-width:80%;padding:12px 16px;border-radius:18px;word-wrap:break-word;line-height:1.4}.chat-message.user .message-bubble{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;border-bottom-right-radius:4px}.chat-message.bot .message-bubble{background:#fff;color:#333;border-bottom-left-radius:4px;box-shadow:0 2px 4px #0000001a}.message-bubble.typing{display:flex;gap:5px;padding:16px 20px}.message-bubble.typing span{width:8px;height:8px;background:#999;border-radius:50%;animation:typing 1.4s infinite}.message-bubble.typing span:nth-child(2){animation-delay:.2s}.message-bubble.typing span:nth-child(3){animation-delay:.4s}@keyframes typing{0%,60%,to{transform:translateY(0)}30%{transform:translateY(-10px)}}.message-time{font-size:.7rem;color:#999;padding:0 10px}.chat-input-container{display:flex;padding:15px;background:#fff;border-radius:0 0 15px 15px;gap:10px;border-top:1px solid #eee}.chat-input{flex:1;padding:12px 15px;border:1px solid #ddd;border-radius:25px;outline:none;font-size:.95rem;transition:border-color .3s}.chat-input:focus{border-color:#667eea}.chat-send-button{width:45px;height:45px;border-radius:50%;border:none;background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;font-size:1.2rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .3s}.chat-send-button:hover:not(:disabled){transform:scale(1.1)}.chat-send-button:disabled{opacity:.5;cursor:not-allowed}@media(max-width:768px){.chat-container{width:calc(100vw - 40px);right:20px;bottom:90px;height:450px}.chat-toggle-button{bottom:20px;right:20px}}.app{min-height:100vh}
