:root{--glass-bg: rgba(255, 255, 255, .03);--glass-bg-hover: rgba(255, 255, 255, .08);--glass-border: rgba(255, 255, 255, .08);--glass-border-hover: rgba(255, 255, 255, .2);--glass-blur: blur(16px);--glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, .3);--glass-shadow-hover: 0 12px 40px 0 rgba(0, 0, 0, .4)}*{margin:0;padding:0;box-sizing:border-box}body{font-family:Inter,sans-serif;color:#fff;background-color:#05070a;background-image:radial-gradient(circle at 15% 50%,rgba(47,129,247,.08),transparent 25%),radial-gradient(circle at 85% 30%,rgba(252,95,5,.05),transparent 25%);background-attachment:fixed;background-size:cover;min-height:100vh}button,input,select,textarea{font-family:inherit}h1,h2,h3,h4,h5,h6{font-family:Montserrat,sans-serif}.chatbot-wrapper{position:fixed;bottom:30px;right:30px;z-index:9999;font-family:inherit}.chatbot-fab{background:linear-gradient(135deg,#2f81f7,#1f6feb);color:#fff;width:65px;height:65px;border-radius:50%;border:none;cursor:pointer;display:flex;justify-content:center;align-items:center;box-shadow:0 10px 25px #2f81f766;transition:all .3s cubic-bezier(.175,.885,.32,1.275)}.chatbot-fab:hover{transform:scale(1.1);box-shadow:0 15px 35px #2f81f780}.chatbot-fab.hidden{transform:scale(0);opacity:0;pointer-events:none}.chatbot-window{position:absolute;bottom:0;right:0;width:350px;height:500px;background:#0b0e14;border:1px solid rgba(255,255,255,.1);border-radius:20px;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 20px 50px #00000080;transform-origin:bottom right;transform:scale(0);opacity:0;pointer-events:none;transition:all .3s cubic-bezier(.175,.885,.32,1.275)}.chatbot-window.open{transform:scale(1);opacity:1;pointer-events:auto}.chatbot-header{background:#161b22f2;padding:15px 20px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid rgba(47,129,247,.2)}.chatbot-header-info{display:flex;align-items:center;gap:12px}.chatbot-avatar{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,#2f81f7,#fc5f05);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1.2rem;border:2px solid rgba(255,255,255,.1)}.chatbot-title-group h4{color:#fff;margin:0 0 2px;font-size:1.1rem}.chatbot-status{color:#3fb950;font-size:.8rem;display:flex;align-items:center;gap:5px}.chatbot-status:before{content:"";display:block;width:8px;height:8px;background:#3fb950;border-radius:50%}.chatbot-close{background:transparent;border:none;color:#888;font-size:24px;cursor:pointer;line-height:1;transition:color .2s ease}.chatbot-close:hover{color:#fff}.chatbot-messages{flex-grow:1;padding:20px;overflow-y:auto;display:flex;flex-direction:column;gap:15px;scrollbar-width:thin;scrollbar-color:rgba(255,255,255,.2) transparent}.chatbot-messages::-webkit-scrollbar{width:6px}.chatbot-messages::-webkit-scrollbar-track{background:transparent}.chatbot-messages::-webkit-scrollbar-thumb{background-color:#fff3;border-radius:20px}.chat-bubble-container{display:flex;width:100%}.chat-bubble-container.user{justify-content:flex-end}.chat-bubble-container.bot{justify-content:flex-start}.chat-bubble{max-width:80%;padding:12px 16px;border-radius:16px;font-size:.95rem;line-height:1.4}.chat-bubble.bot{background:#2f81f71a;color:#e0e0e0;border:1px solid rgba(47,129,247,.2);border-bottom-left-radius:4px}.chat-bubble.user{background:#2f81f7;color:#fff;border-bottom-right-radius:4px}.typing-indicator{display:flex;gap:4px;align-items:center;padding:16px 20px}.typing-indicator span{width:6px;height:6px;background-color:#a0a0a0;border-radius:50%;animation:typingPulse 1.4s infinite ease-in-out both}.typing-indicator span:nth-child(1){animation-delay:-.32s}.typing-indicator span:nth-child(2){animation-delay:-.16s}@keyframes typingPulse{0%,80%,to{transform:scale(0);opacity:.5}40%{transform:scale(1);opacity:1}}.chatbot-input-form{display:flex;padding:15px;background:#161b2299;border-top:1px solid rgba(255,255,255,.05);gap:10px}.chatbot-input{flex-grow:1;background:#00000080;border:1px solid rgba(255,255,255,.1);color:#fff;border-radius:20px;padding:0 15px;font-size:.95rem;outline:none;transition:border-color .2s ease}.chatbot-input:focus{border-color:#2f81f7}.chatbot-input::placeholder{color:#666}.chatbot-send-btn{background:#fc5f05;color:#fff;border:none;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s ease,transform .2s ease}.chatbot-send-btn:hover{background:#e35504;transform:scale(1.05)}@media(max-width:480px){.chatbot-window{position:fixed;bottom:0;right:0;width:100%;height:100%;border-radius:0;z-index:10000}.chatbot-wrapper{bottom:20px;right:20px}}.registration-overlay{position:fixed;top:0;left:0;width:100vw;height:100vh;background:#0b0e14d9;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);z-index:9999;display:flex;justify-content:center;align-items:center;padding:20px}.registration-modal{background:var(--glass-bg);backdrop-filter:var(--glass-blur);-webkit-backdrop-filter:var(--glass-blur);border:1px solid var(--glass-border);box-shadow:var(--glass-shadow);border-radius:20px;width:100%;max-width:600px;padding:40px;position:relative;transform:translateY(20px);opacity:0;animation:slideUpFadeIn .5s ease forwards;color:#fff;max-height:90vh;overflow-y:auto}.registration-modal::-webkit-scrollbar{width:6px}.registration-modal::-webkit-scrollbar-thumb{background:#fff3;border-radius:10px}@keyframes slideUpFadeIn{to{transform:translateY(0);opacity:1}}.close-popup-btn{position:absolute;top:20px;right:20px;background:#ffffff0d;border:1px solid rgba(255,255,255,.1);color:#a0a0a0;width:32px;height:32px;border-radius:50%;display:flex;justify-content:center;align-items:center;cursor:pointer;font-size:1rem;transition:all .2s ease;z-index:10}.close-popup-btn:hover{background:#fc5f0533;color:#fc5f05;border-color:#fc5f0580;transform:rotate(90deg)}.registration-header{text-align:center;margin-bottom:30px}.registration-title{font-size:2rem;font-weight:700;margin-bottom:10px}.registration-subtitle{color:#a0a0a0;font-size:.95rem;line-height:1.5}.registration-form{display:flex;flex-direction:column;gap:20px}.form-row{display:flex;gap:20px}.form-group{flex:1;display:flex;flex-direction:column}.form-group.full-width{width:100%}.form-group label{font-size:.85rem;color:#d1d5db;margin-bottom:8px;font-weight:500}.required-star{color:#fc5f05}.form-group input{background:#0003;border:1px solid rgba(255,255,255,.15);padding:12px 15px;border-radius:8px;color:#fff;font-size:1rem;transition:border-color .3s ease,box-shadow .3s ease;outline:none}.form-group input:focus{border-color:#2f81f7;box-shadow:0 0 0 3px #2f81f733}.submit-registration-btn{margin-top:10px;width:100%;padding:15px;font-size:1.1rem;display:flex;justify-content:center}.registration-success{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:40px 20px;animation:fadeIn .5s ease}@keyframes fadeIn{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.success-icon{width:80px;height:80px;border-radius:50%;background:#2f81f726;color:#2f81f7;display:flex;align-items:center;justify-content:center;font-size:2.5rem;margin-bottom:25px;border:2px solid #2F81F7;box-shadow:0 0 30px #2f81f74d}.registration-success h3{font-size:1.8rem;margin-bottom:15px;color:#fff}.registration-success p{color:#a0a0a0;line-height:1.6}@media(max-width:600px){.registration-modal{padding:30px 20px}.form-row{flex-direction:column;gap:20px}}@media(max-width:480px){.registration-modal{padding:20px 15px}.registration-title{font-size:1.6rem}}.global-loading-screen{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:99999;overflow:hidden;pointer-events:all;animation:disableClicks .1s 2.2s forwards}@keyframes disableClicks{to{pointer-events:none}}.door{position:absolute;top:0;height:100vh;width:50vw;background-color:#0b0e14;z-index:-1}.door-left{left:0;animation:openDoorLeft 1s 1.5s cubic-bezier(.77,0,.175,1) forwards;border-right:1px solid rgba(255,255,255,.05)}.door-right{right:0;animation:openDoorRight 1s 1.5s cubic-bezier(.77,0,.175,1) forwards;border-left:1px solid rgba(255,255,255,.05)}@keyframes openDoorLeft{to{transform:translate(-100%)}}@keyframes openDoorRight{to{transform:translate(100%)}}.loading-content-wrapper{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;justify-content:center;align-items:center;z-index:10;animation:zoomOutContent .8s 1.3s cubic-bezier(.4,0,.2,1) forwards}@keyframes zoomOutContent{to{transform:translate(-50%,-50%) scale(1.5);opacity:0;visibility:hidden}}.brand-text{font-size:3rem;letter-spacing:6px;color:#fff;margin:0;text-transform:uppercase;display:flex;gap:15px;opacity:0;transform:translateY(30px);animation:revealText .8s .2s cubic-bezier(.2,.8,.2,1) forwards}.text-light{font-weight:300}.text-bold{font-weight:800;color:#2f81f7;position:relative;display:inline-block}.text-bold:after{content:"";position:absolute;bottom:-5px;left:0;width:0;height:3px;background-color:#2f81f7;animation:drawLine .6s .8s cubic-bezier(.2,.8,.2,1) forwards}@keyframes revealText{to{opacity:1;transform:translateY(0)}}@keyframes drawLine{to{width:100%}}@media(max-width:768px){.brand-text{font-size:1.8rem;flex-direction:column;gap:5px;text-align:center}.text-bold:after{left:50%;transform:translate(-50%)}}.footer-section{background:var(--glass-bg);backdrop-filter:var(--glass-blur);-webkit-backdrop-filter:var(--glass-blur);padding:6rem 2rem 2rem;border-top:1px solid var(--glass-border);position:relative}.footer-container{max-width:1200px;margin:0 auto}.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:4rem;margin-bottom:4rem}.footer-brand .logo-image-footer{height:45px;margin-bottom:1.5rem;filter:brightness(1.2)}.footer-desc{color:#a0a0a0;font-size:.95rem;line-height:1.6;margin-bottom:2rem;max-width:300px}.footer-socials{display:flex;gap:1rem}.social-btn{width:40px;height:40px;border-radius:8px;background:#ffffff0d;color:#fff;display:flex;align-items:center;justify-content:center;text-decoration:none;font-size:.85rem;font-weight:600;transition:all .3s ease;border:1px solid rgba(255,255,255,.05)}.social-btn:hover{background:#2f81f7;border-color:#2f81f7;transform:translateY(-3px)}.footer-heading{color:#fff;font-size:1.1rem;font-weight:600;margin-bottom:1.5rem;position:relative;display:inline-block}.footer-heading:after{content:"";position:absolute;left:0;bottom:-6px;width:25px;height:2px;background:#2f81f7;border-radius:2px}.footer-links{list-style:none}.footer-links li{margin-bottom:.8rem}.footer-links a{color:#888;text-decoration:none;font-size:.95rem;transition:color .3s ease,padding-left .3s ease}.footer-links a:hover{color:#2f81f7;padding-left:5px}.contact-item{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.2rem}.contact-icon{font-size:1.2rem;margin-top:-2px}.contact-item p{color:#888;font-size:.95rem;line-height:1.5}.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:2rem;border-top:1px solid rgba(255,255,255,.05)}.copyright{color:#666;font-size:.9rem}.legal-links{display:flex;align-items:center;gap:1rem}.legal-links a{color:#666;text-decoration:none;font-size:.9rem;transition:color .3s ease}.legal-links a:hover{color:#fff}.divider{color:#444}@media(max-width:968px){.footer-grid{grid-template-columns:1fr 1fr}}@media(max-width:768px){.footer-section{padding:4rem 1.5rem 2rem}.footer-grid{grid-template-columns:1fr;gap:2.5rem}.footer-desc{max-width:100%}.footer-bottom{flex-direction:column;gap:1rem;text-align:center}.legal-links{justify-content:center}}#root{width:100%;margin:0;padding:0;overflow-x:hidden}.app-container{width:100%;min-height:100vh;display:flex;flex-direction:column}
