@import"https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Sansita+Swashed:wght@300..900&display=swap";*{margin:0;padding:0;box-sizing:border-box}html{font-family:Sansita Swashed,system-ui;font-size:62.5%}@media (max-width: 500px){html{font-size:55%}}button{font-family:inherit;font-size:inherit;color:inherit;background:transparent;border:none;cursor:pointer}.App{width:100%;height:100vh;display:grid;place-items:center;background-color:#1a1a1a}.start-title{font-family:Playfair Display,serif;color:#ddd;font-size:5rem;padding:2rem}.start-btn{width:33rem;height:13rem;background:linear-gradient(135deg,#ff8c00,gold);border:1px solid #ddd;border-radius:1rem;font-size:7rem;letter-spacing:.1rem;transition:transform .2s ease}.start-btn:hover{transform:scale(.95)}.chat-app{width:100%;height:100vh;display:flex}.chat-list{width:30%;height:100%;display:flex;flex-direction:column;row-gap:1rem;padding:1rem;background:linear-gradient(135deg,#1a1a1a,#2d2d2d)}.chat-list-header{width:100%;display:flex;justify-content:space-between;align-items:center;color:#ddd;padding:2rem 1rem}.chat-list-header button:last-child{display:none}.chat-list-header h2{font-family:Playfair Display,serif;font-size:2rem;text-transform:uppercase;color:#ff8c00;text-shadow:0 2px 8px rgba(255,140,0,.3)}.chat-list-header button{font-size:2.5rem;color:#ddd;transition:all .3s ease}.chat-list-header button:hover{color:#ff8c00;transform:scale(1.1)}.chat-list-item{width:100%;height:6rem;display:flex;justify-content:space-between;align-items:center;padding:.5rem 1rem;border-radius:1.5rem;background:#dddddd0d;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border:1px solid rgba(221,221,221,.1);box-shadow:0 8px 32px #0000004d;transition:all .3s ease}.chat-list-item:hover{background:#dddddd1a;box-shadow:0 12px 40px #ff8c0033}.chat-list-item.active{background:linear-gradient(135deg,#ff8c00,gold);border:1px solid rgba(255,140,0,.5);box-shadow:0 8px 32px #ff8c0066}.chat-list-item.active h4{color:#000;font-weight:500}.chat-list-item h4{font-size:1.6rem;font-weight:300;color:#ddd}.chat-list-item button i{font-size:2.5rem;color:#ddd}.chat-list-item.active button i{color:#000}.chat-window{width:70%;height:100%;display:flex;flex-direction:column;background:#ddd}.chat-title{width:100%;min-height:8rem;display:flex;justify-content:space-between;align-items:center;background:linear-gradient(135deg,#1a1a1a,#2d2d2d);padding-right:2rem;box-shadow:0 4px 20px #0000004d}.chat-title button:first-child{display:none}.chat-title button i.fa-arrow-right{font-size:4rem;color:#ddd;transition:all .3s ease}.chat-title button:hover i.fa-arrow-right{color:#ff8c00;transform:translate(5px)}.chat-title h3{font-family:Playfair Display,serif;color:#ff8c00;font-size:2rem;padding-left:2rem;text-transform:uppercase;letter-spacing:.1rem;text-shadow:0 2px 8px rgba(255,140,0,.3)}.chat{width:100%;flex:1;display:flex;flex-direction:column;padding:1rem;gap:2rem;overflow-y:auto;min-height:0;background:#ddd}.chat::-webkit-scrollbar{width:8px}.chat::-webkit-scrollbar-track{background:#0000001a;border-radius:4px}.chat::-webkit-scrollbar-thumb{background:linear-gradient(135deg,#ff8c00,gold);border-radius:4px}.chat::-webkit-scrollbar-thumb:hover{background:linear-gradient(135deg,gold,#ff8c00)}.empty-chat{display:flex;justify-content:center;align-items:center;height:100%;width:100%}.empty-chat p{background:linear-gradient(135deg,#ff8c00,gold);font-size:1.8rem;color:#1a1a1a;padding:1rem;border:2px solid #ffd700;border-radius:3rem;text-align:center}.chat-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#00000080;z-index:999;display:none}.prompt,.response{max-width:80%;font-size:1.6rem;padding:2rem;box-shadow:0 8px 32px #00000026;transition:transform .3s ease}.prompt time,.response time{display:block;margin-top:.5rem;font-size:1.4rem;opacity:.8}.prompt{background:linear-gradient(135deg,#1a1a1a,#2d2d2d);color:#ddd;align-self:flex-end;border-radius:3rem 0 3rem 3rem;text-align:right;border:2px solid #ff8c00;box-shadow:0 8px 32px #ff8c0033}.prompt time{color:#ff8c00}.response{background:linear-gradient(135deg,#ff8c00,gold);color:#000;align-self:flex-start;text-align:left;border-radius:0 3rem 3rem;border:2px solid #ffd700;box-shadow:0 8px 32px #ffd7004d;font-weight:500}.response time{color:#000000b3}.typing{font-size:1.6rem;color:#ff8c00;margin-top:auto;font-weight:500;text-shadow:0 2px 4px rgba(255,140,0,.3)}.msg-form{width:100%;min-height:10rem;display:flex;align-items:center;background:linear-gradient(135deg,#2d2d2d,#1a1a1a);box-shadow:0 -4px 20px #0000004d;padding-right:5rem;border-top:2px solid #ff8c00}.msg-form button i{font-size:2.5rem;color:#ff8c00;transition:all .3s ease}.msg-form button:hover i{color:gold;transform:scale(1.1)}.msg-input{height:100%;flex-grow:1;font-size:1.6rem;color:#ddd;background-color:transparent;border:none;padding:0 2rem;font-weight:400}.msg-input:focus{outline:none;box-shadow:0 0 0 2px #ff8c0080;border-radius:.5rem}.msg-input::placeholder{font-size:1.8rem;color:#ddd9}.msg-input:focus::placeholder{opacity:0}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (max-width: 900px){.chat-app{flex-direction:column}.chat-list-header button:last-child{display:block}.chat-list{position:fixed;top:0;left:0;width:40%;height:100%;transform:translate(-100%);transition:transform .3s ease;z-index:1000}.chat-list.show{transform:translate(0)}.chat-window{width:100%}.chat-title button:first-child{display:block}.chat-title button:first-child{font-size:3rem;color:#ddd;padding-left:1rem;transition:all .3s ease}.chat-title button:first-child:hover{color:#ff8c00;transform:scale(1.1)}.chat-title h3{padding-left:0}.chat-overlay{display:block}}@media (min-width: 501px) and (max-width: 650px){.chat-list{width:50%}}@media (max-width: 500px){.chat-list{width:60%}}
