*{padding:0%;margin:0%;box-sizing:border-box}body{background-color:#0e0c16;color:#ececec;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif}a{text-decoration:none;color:inherit}.homePage{display:flex;align-items:center;justify-content:center;gap:100px;height:100%}@media screen and (max-width:1024px){.homePage{flex-direction:column;gap:0px}}.homePage .left{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;text-align:center}.homePage .left h1{font-size:100px;background:linear-gradient(to right,#217bfe,#e55571);background-clip:text;-webkit-background-clip:text;color:transparent}@media screen and (max-width:1280px){.homePage .left h1{font-size:64px}}.homePage .left h3{font-weight:400;max-width:70%}@media screen and (max-width:1024px){.homePage .left h3{max-width:100%}}.homePage .left a{padding:15px 25px;background-color:#217bfe;color:#fff;border-radius:20px;font-size:14px;margin-top:20px}.homePage .left a:hover{background-color:#fff;color:#217bfe}.homePage .right{flex:1;display:flex;align-items:center;justify-content:center;height:100%}.homePage .right .imgContainer{display:flex;align-items:center;justify-content:center;background-color:#140e2d;border-radius:50px;width:80%;height:50%;position:relative}.homePage .right .imgContainer .bgContainer{width:100%;height:100%;overflow:hidden;position:absolute;top:0;left:0;border-radius:50px}.homePage .right .imgContainer .bgContainer .bg{background-image:url(/bg.png);opacity:.2;width:200%;height:100%;background-size:auto 100%;animation:8s ease-in-out infinite alternate slideBg}.homePage .right .imgContainer .bot{width:100%;height:100%;object-fit:contain;animation:3s ease-in-out infinite alternate botAnimate}.homePage .orbital{position:absolute;bottom:0;left:0;opacity:.05;animation:100s linear infinite rotateOrbital;z-index:-1}.homePage .terms{position:absolute;bottom:20px;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;gap:20px}.homePage .terms img{width:16px;height:16px}.homePage .terms .links{display:flex;gap:10px;color:#888;font-size:10px}@keyframes rotateOrbital{0%{transform:rotate(0)}to{transform:rotate(60deg)}}@keyframes botAnimate{0%{transform:scale(1) rotate(0)}to{transform:scale(1.1) rotate(-5deg)}}@keyframes slideBg{0%{transform:translate(0)}to{transform:translate(-50%)}}.dashboardPage{height:100%;display:flex;flex-direction:column;align-items:center}.dashboardPage .texts{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;width:50%;gap:50px}.dashboardPage .texts .logo{display:flex;align-items:center;justify-content:center;gap:10px;opacity:.2}.dashboardPage .texts .logo img{width:84px;height:54px}.dashboardPage .texts .logo h1{font-size:64px;background:linear-gradient(to right,#217bfe,#e55571);background-clip:text;-webkit-background-clip:text;color:transparent}.dashboardPage .texts .options{width:100%;display:flex;align-items:center;justify-content:space-between;gap:50px}.dashboardPage .texts .options .option{flex:1;display:flex;flex-direction:column;gap:10px;font-weight:300;font-size:14px;padding:20px;border:1px solid #555;border-radius:20px}.dashboardPage .texts .options .option img{width:40px;height:40px;object-fit:cover}.dashboardPage .formContainer{margin-top:auto;width:50%;background-color:#2c2937;border-radius:20px;display:flex}.dashboardPage .formContainer form{width:100%;height:100%;display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:10px}.dashboardPage .formContainer form input{flex:1;padding:15px;background-color:transparent;border:none;outline:none;color:#ececec}.dashboardPage .formContainer form button{background-color:#605e68;border-radius:50%;border:none;cursor:pointer;padding:10px;display:flex;align-items:center;justify-content:center;margin-right:20px}.dashboardPage .formContainer form button img{width:16px;height:16px}.chatpage{height:100%;display:flex;align-items:center;flex-direction:column;position:relative}.chatpage .wrapper{flex:1;overflow:scroll;scrollbar-width:none;width:100%;display:flex;justify-content:center}.chatpage .wrapper .chat{width:min(820px,calc(100% - 32px));display:flex;flex-direction:column;gap:20px;padding:20px 0 140px}.chatpage .wrapper .chat .chatHeader{position:sticky;top:0;z-index:3;width:100%;padding:10px 14px;border-radius:12px;background:linear-gradient(90deg,#18162aeb,#252140eb);border:1px solid rgba(255,255,255,.08);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}.chatpage .wrapper .chat .chatHeader h2{margin:0;font-size:.95rem;font-weight:600;color:#d8dcff;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.chatpage .wrapper .chat .chatMessageRow{display:flex;flex-direction:column;width:100%}.chatpage .wrapper .chat .chatMessageRow.user{align-items:flex-end}.chatpage .wrapper .chat .chatMessageRow.model{align-items:flex-start}.chatpage .wrapper .chat .invalidChatMessage{padding:14px 16px;border-radius:12px;background-color:#ff55551a;border:1px solid rgba(255,85,85,.35);color:#ffd7d7}.chatpage .wrapper .chat .invalidChatMessage a{color:#9ad0ff;text-decoration:underline}.chatpage .wrapper .chat p,.chatpage .wrapper .chat li{margin:10px 0}.chatpage .wrapper .chat .message{padding:20px;line-height:1.65;overflow-wrap:anywhere}.chatpage .wrapper .chat .message:not(.user){background-color:#171627;border:1px solid rgba(255,255,255,.06);border-radius:14px}.chatpage .wrapper .chat .message h1,.chatpage .wrapper .chat .message h2,.chatpage .wrapper .chat .message h3,.chatpage .wrapper .chat .message h4{margin:14px 0 10px;line-height:1.3}.chatpage .wrapper .chat .message h1{font-size:1.55rem}.chatpage .wrapper .chat .message h2{font-size:1.35rem}.chatpage .wrapper .chat .message h3{font-size:1.15rem}.chatpage .wrapper .chat .message ul,.chatpage .wrapper .chat .message ol{margin:10px 0 12px 24px;padding-left:10px}.chatpage .wrapper .chat .message li::marker{color:#9ad0ff}.chatpage .wrapper .chat .message code{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;background-color:#ffffff14;padding:2px 6px;border-radius:6px;font-size:.9em}.chatpage .wrapper .chat .message pre{background-color:#11101d;border:1px solid rgba(255,255,255,.08);padding:14px;border-radius:10px;overflow-x:auto;margin:12px 0}.chatpage .wrapper .chat .message pre code{background-color:transparent;padding:0;border-radius:0}.chatpage .wrapper .chat .message blockquote{border-left:3px solid #5ea8ff;padding-left:12px;color:#c9d7ff;margin:12px 0}.chatpage .wrapper .chat .message hr{border:none;border-top:1px solid rgba(255,255,255,.2);margin:16px 0}.chatpage .wrapper .chat .message strong{color:#fff}.chatpage .wrapper .chat .message.user{background-color:#2c2937;border-radius:20px;max-width:80%;align-self:flex-end}@media (max-width: 900px){.chatpage .wrapper .chat{width:calc(100% - 20px);padding-top:12px}.chatpage .wrapper .chat .message{padding:16px}}.endChat{padding-bottom:100px}.newForm{width:min(820px,calc(100% - 32px));position:absolute;bottom:0;left:50%;transform:translate(-50%);background-color:#2c2937;border-radius:20px;display:flex;align-items:center;gap:10px;padding:0 10px}.newForm input{flex:1;padding:20px;border:none;outline:none;background-color:transparent;color:#ececec}.newForm button,.newForm label{border-radius:50%;background-color:#605e68;border:none;padding:10px;display:flex;align-items:center;justify-content:center;cursor:pointer}.newForm button img,.newForm label img{width:16px;height:16px}@media (max-width: 900px){.newForm{width:calc(100% - 20px);bottom:8px;border-radius:16px}.newForm input{padding:16px}}.rootLayout{padding:16px 36px;height:100vh;display:flex;flex-direction:column}.rootLayout header{display:flex;align-items:center;justify-content:space-between}.rootLayout header .logo{display:flex;align-items:center;font-weight:700;gap:8px}.rootLayout header .logo img{width:42px;height:42px}.rootLayout main{flex:1;overflow:hidden}.dashboardLayout{display:flex;gap:50px;padding-top:20px;height:100%}.dashboardLayout .menu{flex:1}.dashboardLayout .content{flex:4;background-color:#12101b}.chatList{display:flex;flex-direction:column;height:100%;font-size:15px}.chatList hr{border:none;height:2px;background-color:#ddd;opacity:.1;border-radius:5px;margin:10px 0}.chatList .title{font-weight:600;font-size:10px;margin-bottom:10px}.chatList .list{display:flex;flex-direction:column;overflow:scroll;scrollbar-width:none}.chatList a{padding:7px;border-radius:10px}.chatList a:hover{background-color:#2c2937}.upgrade{margin-top:auto;display:flex;align-items:center;gap:10px;font-size:12px}.upgrade img{width:24px;height:15px}.upgrade .texts{display:flex;flex-direction:column}.upgrade .texts span:first-child{font-weight:600}.upgrade .texts span:last-child{color:#888}.signInPage,.signUpPage{height:100%;display:flex;align-items:center;justify-content:center}
