*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html,body,#root{height:100%;width:100%;overflow:hidden}body{font-family:Inter,-apple-system,BlinkMacSystemFont,sans-serif;background:#0a0a0f;color:#fff;-webkit-font-smoothing:antialiased}.app{display:flex;height:100vh;width:100vw;overflow:hidden}.app__chat{flex:0 0 380px;display:flex;flex-direction:column;background:#111118;border-right:1px solid rgba(255,255,255,.06)}.app__image{flex:1;display:flex;align-items:center;justify-content:center;background:#0a0a0f;overflow:hidden}.chat{display:flex;flex-direction:column;height:100%}.chat-header{display:flex;align-items:center;gap:12px;padding:16px 20px;border-bottom:1px solid rgba(255,255,255,.06);background:#16161f}.chat-header__avatar{width:40px;height:40px;border-radius:50%;object-fit:cover}.chat-header__info{display:flex;flex-direction:column}.chat-header__name{font-weight:600;font-size:15px}.chat-header__status{font-size:12px;color:#4ade80}.chat-messages{flex:1;overflow-y:auto;padding:20px;display:flex;flex-direction:column;gap:12px}.chat-messages::-webkit-scrollbar{width:4px}.chat-messages::-webkit-scrollbar-thumb{background:#ffffff1a;border-radius:2px}.chat-bubble{display:flex;align-items:flex-end;gap:8px;max-width:85%;animation:bubbleIn .3s ease-out}.chat-bubble--bot{align-self:flex-start}.chat-bubble--user{align-self:flex-end;flex-direction:row-reverse}.chat-bubble__avatar{width:28px;height:28px;border-radius:50%;object-fit:cover;flex-shrink:0}.chat-bubble__text{padding:10px 14px;border-radius:18px;font-size:16px;line-height:1.45}.chat-bubble--bot .chat-bubble__text{background:#1e1e2a;border-bottom-left-radius:4px;color:#e0e0e8}.chat-bubble--user .chat-bubble__text{background:linear-gradient(135deg,#7c3aed,#a855f7);border-bottom-right-radius:4px;color:#fff}@keyframes bubbleIn{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.chat-cta{padding:16px 20px;border-top:1px solid rgba(255,255,255,.06);background:#16161f}.chat-cta__button{display:block;width:100%;padding:14px;text-align:center;font-size:16px;font-weight:600;color:#fff;background:linear-gradient(135deg,#7c3aed,#ec4899);border:none;border-radius:14px;text-decoration:none;cursor:pointer;transition:transform .15s ease,box-shadow .15s ease;box-shadow:0 4px 20px #7c3aed59}.chat-cta__button:hover{transform:translateY(-1px);box-shadow:0 6px 28px #7c3aed80}.chat-cta__button:active{transform:translateY(0)}.image-viewer{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:20px}.image-viewer__container{position:relative;max-width:100%;max-height:100%}.image-viewer__photo{display:block;max-width:100%;max-height:90vh;border-radius:16px;object-fit:contain;transition:filter .5s ease,opacity .5s ease;filter:blur(0px);opacity:1}.image-viewer__photo--fade{filter:blur(20px);opacity:.6}.image-viewer__buttons-mobile{display:none}.image-viewer__btn--overlay{position:absolute;transform:translate(-50%,-50%)}.image-viewer__btn{padding:14px 28px;font-size:16px;font-weight:600;color:#fff;background:linear-gradient(135deg,#7c3aed,#ec4899);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);border:2px solid rgba(255,255,255,.25);border-radius:24px;cursor:pointer;white-space:nowrap;transition:background .2s ease,transform .15s ease,box-shadow .2s ease;animation:btnPulse 2s ease-in-out infinite,btnShimmer 3s ease-in-out infinite;box-shadow:0 0 20px #7c3aed66;z-index:2}.image-viewer__btn:hover{background:linear-gradient(135deg,#6d28d9,#db2777);box-shadow:0 0 30px #7c3aed99}.image-viewer__btn--secondary{padding:8px 18px;font-size:13px;background:#ffffff1a;border:1px solid rgba(255,255,255,.15);animation:none;box-shadow:none}.image-viewer__btn--secondary:hover{background:#fff3;box-shadow:none}@keyframes btnPulse{0%,to{box-shadow:0 0 15px 5px #a855f780,0 0 30px 10px #ec489933}50%{box-shadow:0 0 25px 25px #a855f74d,0 0 50px 30px #ec48991a}}@keyframes btnShimmer{0%{filter:brightness(1)}50%{filter:brightness(1.2)}to{filter:brightness(1)}}.popup-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:100;display:flex;align-items:center;justify-content:center;background:#000c;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);animation:fadeIn .4s ease}.popup{text-align:center;padding:48px 40px;background:linear-gradient(160deg,#1a1a2e,#16162a);border:1px solid rgba(255,255,255,.08);border-radius:24px;max-width:400px;width:90%;animation:popupSlide .4s ease}.popup__title{font-size:28px;font-weight:700;margin-bottom:8px;background:linear-gradient(135deg,#e879f9,#a855f7);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.popup__subtitle{font-size:15px;color:#ffffff80;margin-bottom:32px}.popup__button{display:inline-block;padding:16px 56px;font-size:18px;font-weight:700;color:#fff;background:linear-gradient(135deg,#7c3aed,#ec4899);border:none;border-radius:16px;text-decoration:none;cursor:pointer;transition:transform .15s ease,box-shadow .15s ease;box-shadow:0 4px 24px #7c3aed66}.popup__button:hover{transform:translateY(-2px);box-shadow:0 8px 32px #7c3aed99}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes popupSlide{0%{opacity:0;transform:translateY(20px) scale(.95)}to{opacity:1;transform:translateY(0) scale(1)}}@media(max-width:768px){.app{flex-direction:column-reverse}.app__chat{flex:1;min-height:0;border-right:none;border-top:1px solid rgba(255,255,255,.06);overflow:hidden}.app__image{flex:0 0 auto;max-height:55vh}.chat-header{display:none}.image-viewer{padding:8px;overflow:hidden}.image-viewer__photo{max-height:calc(55vh - 60px);border-radius:12px}.image-viewer__btn--overlay{display:none}.image-viewer__buttons-mobile{display:flex;gap:10px;padding:10px 8px 0;width:100%;justify-content:center;flex-wrap:wrap}.image-viewer__btn--mobile{position:static;transform:none}.image-viewer__btn{padding:8px 16px;font-size:13px}.popup{padding:36px 24px}.popup__title{font-size:24px}}
