@import"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";:root{--discord-sidebar: #09010d;--discord-channels: #17001d;--discord-chat: #270022;--discord-users: #17001d;--discord-accent: #ff0546;--discord-accent-hover: #9c173b;--discord-text-normal: #DBDEE1;--discord-text-muted: #949BA4;--discord-text-heading: #F2F3F5;--discord-divider: #660f31;--discord-input: #450327;--discord-online: #0ce6f2;--discord-offline: #660f31;--discord-idle: #0098db;--discord-dnd: #ff0546;--discord-brand: #1e579c;--discord-danger: #ff0546}*{box-sizing:border-box;margin:0;padding:0}html,body,#root{height:100%}body{margin:0;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:var(--discord-chat);color:var(--discord-text-normal);overflow:hidden}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-track{background:var(--discord-channels);border-radius:4px}::-webkit-scrollbar-thumb{background:#450327;border-radius:4px}::-webkit-scrollbar-thumb:hover{background:#660f31}button{all:unset;cursor:pointer;box-sizing:border-box}input,textarea{font-family:inherit}.app-layout{display:flex;height:calc(100vh - 22px);width:100vw;overflow:hidden;background-color:var(--discord-chat)}.status-bar{position:fixed;bottom:0;left:0;right:0;height:22px;display:flex;align-items:center;justify-content:space-between;padding:0 12px;background:var(--discord-background-tertiary);border-top:1px solid rgba(255,255,255,.04);color:var(--discord-text-muted);font-size:11px;z-index:1000;-webkit-user-select:none;user-select:none}.status-bar-left,.status-bar-right{display:flex;align-items:center;gap:6px}.conn-status-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}.conn-status-dot.connected{background:var(--discord-online);box-shadow:0 0 4px #0ce6f280}.conn-status-dot.disconnected{background:var(--discord-danger);box-shadow:0 0 4px #ff054680}.status-separator{color:#ffffff1a;font-size:10px}.auth-container{display:flex;align-items:center;justify-content:center;height:100vh;background-color:var(--discord-sidebar)}.auth-box{background-color:var(--discord-chat);padding:32px;border-radius:8px;width:480px;box-shadow:0 2px 10px #0003;display:flex;flex-direction:column;gap:20px;text-align:center}.auth-box h1{font-size:24px;font-weight:600;color:var(--discord-text-heading)}.auth-box p{color:var(--discord-text-muted);font-size:15px}.disconnect-spinner{width:48px;height:48px;margin:0 auto 8px;border:3px solid rgba(255,255,255,.08);border-top-color:var(--discord-accent);border-radius:50%;animation:disconnectSpin .9s linear infinite}@keyframes disconnectSpin{to{transform:rotate(360deg)}}.input-field{background-color:var(--discord-sidebar);border:none;padding:10px;color:var(--discord-text-normal);border-radius:3px;font-size:16px;width:100%;outline:none;transition:border-color .2s}.input-field:focus{outline:1px solid var(--discord-accent)}.btn-primary{background-color:var(--discord-accent);color:#fff;padding:10px 16px;border-radius:3px;font-weight:500;transition:background-color .2s;text-align:center;width:100%}.btn-primary:hover{background-color:var(--discord-accent-hover)}.server-sidebar{width:72px;background-color:var(--discord-sidebar);display:flex;flex-direction:column;align-items:center;padding:12px 0;gap:8px;overflow-y:auto;flex-shrink:0}.server-icon{width:48px;height:48px;border-radius:50%;background-color:var(--discord-chat);display:flex;align-items:center;justify-content:center;color:var(--discord-text-normal);transition:all .2s ease;cursor:pointer;position:relative;font-weight:600;font-size:18px}.server-icon:hover,.server-icon.active{border-radius:16px;background-color:var(--discord-accent);color:#fff}.server-icon.action-btn{background-color:var(--discord-channels);color:var(--discord-online)}.server-icon.action-btn:hover{background-color:var(--discord-online);color:#fff}.channels-sidebar{width:240px;background-color:var(--discord-channels);display:flex;flex-direction:column;flex-shrink:0}.channels-header{padding:12px 16px;height:48px;box-shadow:0 1px 2px #0003;display:flex;align-items:center;justify-content:space-between;font-weight:600;color:var(--discord-text-heading);cursor:pointer;transition:background-color .15s ease}.channels-header:hover{background-color:#ffffff0d}.channel-list{flex:1;overflow-y:auto;padding:16px 8px;display:flex;flex-direction:column;gap:2px}.channel-item{display:flex;align-items:center;gap:6px;padding:6px 8px;border-radius:4px;color:var(--discord-text-muted);cursor:pointer;transition:background-color .15s ease,color .15s ease}.channel-item:hover{background-color:#ffffff0d;color:var(--discord-text-normal)}.channel-item.active{background-color:#ffffff1a;color:var(--discord-text-heading)}.current-user-area{background-color:var(--discord-sidebar);padding:0 8px;height:52px;display:flex;align-items:center;gap:8px}.current-user-avatar{width:32px;height:32px;border-radius:50%;background-color:var(--discord-accent);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:600}.chat-area{flex:1;display:flex;flex-direction:column;background-color:var(--discord-chat);min-width:0}.chat-header{height:48px;padding:0 16px;border-bottom:1px solid var(--discord-sidebar);display:flex;align-items:center;gap:8px;font-weight:600;color:var(--discord-text-heading)}.message-list{flex:1;min-height:0;position:relative}.message-item{display:flex;gap:16px;padding:8px 16px;margin-bottom:4px;border-left:3px solid transparent;transition:background-color .15s ease}.message-item:hover{background-color:var(--discord-message-hover)}.message-item.own-message{background-color:#ff05460d;border-left-color:var(--discord-accent)}.message-item.own-message:hover{background-color:#ff05461a}.message-avatar{width:40px;height:40px;border-radius:50%;background-color:var(--discord-accent);flex-shrink:0;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:600}.message-content{flex:1}.message-header{display:flex;align-items:center;gap:8px;margin-bottom:4px}.message-author{color:var(--discord-text-heading);font-weight:500}.message-time{color:var(--discord-text-muted);font-size:12px}.message-text{color:var(--discord-text-normal);line-height:1.4;white-space:pre-wrap;word-break:break-word}.message-input-area{padding:0 16px 24px}.message-input-wrapper{background-color:var(--discord-input);border-radius:8px;padding:10px 16px;display:flex;align-items:center}.message-input{background:transparent;border:none;color:var(--discord-text-normal);width:100%;outline:none;font-size:15px}.users-sidebar{width:240px;background-color:var(--discord-users);flex-shrink:0;display:flex;flex-direction:column}.users-list{flex:1;overflow-y:auto;padding:16px 8px}.users-group{margin-bottom:24px}.users-group-title{color:var(--discord-text-muted);font-size:12px;font-weight:600;text-transform:uppercase;padding:0 8px;margin-bottom:4px}.user-item{display:flex;align-items:center;gap:12px;padding:6px 8px;border-radius:4px;cursor:pointer;transition:background-color .15s ease}.user-item:hover{background-color:#ffffff0d}.user-avatar-wrapper{position:relative}.user-avatar{width:32px;height:32px;border-radius:50%;background-color:var(--discord-accent)}.status-indicator{position:absolute;bottom:-2px;right:-2px;width:14px;height:14px;border-radius:50%;border:2px solid var(--discord-users)}.status-online{background-color:var(--discord-online)}.status-offline{background-color:var(--discord-offline)}.status-idle{background-color:var(--discord-idle)}.status-dnd{background-color:var(--discord-dnd)}.user-name{color:var(--discord-text-normal);font-weight:500}.voice-channel-users{padding:2px 0 4px 28px;display:flex;flex-direction:column;gap:2px}.voice-channel-user{display:flex;align-items:center;gap:8px;padding:2px 8px;border-radius:4px;font-size:13px;color:var(--discord-text-muted);cursor:default}.voice-channel-user:hover{background-color:#ffffff0a}.voice-channel-user-avatar{width:20px;height:20px;border-radius:50%;background-color:var(--discord-accent);display:flex;align-items:center;justify-content:center;color:#fff;font-size:10px;font-weight:600;flex-shrink:0}.voice-panel{flex:1;display:flex;flex-direction:column;overflow:hidden}.voice-panel-center{flex:1;display:flex;align-items:center;justify-content:center;padding:40px;overflow-y:auto}.voice-participants-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:24px;width:100%;max-width:700px}.voice-participant{display:flex;flex-direction:column;align-items:center;gap:8px;padding:12px;border-radius:12px;background-color:var(--discord-channels);transition:all .2s ease}.voice-participant:hover{background-color:#ffffff0f}.voice-participant.speaking{background-color:#0ce6f21a}.voice-participant-avatar{width:56px;height:56px;border-radius:50%;background-color:var(--discord-accent);display:flex;align-items:center;justify-content:center;color:#fff;font-size:20px;font-weight:600;transition:box-shadow .2s ease;border:3px solid transparent}.voice-participant-avatar.speaking-glow{border-color:var(--discord-online);box-shadow:0 0 16px #0ce6f280,0 0 32px #0ce6f233;animation:speakPulse 1.5s ease-in-out infinite}@keyframes speakPulse{0%,to{box-shadow:0 0 16px #0ce6f280,0 0 32px #0ce6f233}50%{box-shadow:0 0 24px #0ce6f2b3,0 0 48px #0ce6f24d}}.voice-participant-name{color:var(--discord-text-heading);font-size:14px;font-weight:500;text-align:center;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.speaking-indicator{display:flex;align-items:flex-end;gap:2px;height:16px}.speaking-indicator span{display:block;width:3px;background-color:var(--discord-online);border-radius:2px;animation:speakBar .6s ease-in-out infinite}.speaking-indicator span:nth-child(1){height:8px;animation-delay:0s}.speaking-indicator span:nth-child(2){height:14px;animation-delay:.15s}.speaking-indicator span:nth-child(3){height:10px;animation-delay:.3s}@keyframes speakBar{0%,to{transform:scaleY(.4)}50%{transform:scaleY(1)}}.participant-volume-control{width:100%;padding:0;display:flex;align-items:center;justify-content:center;margin-top:4px}.participant-volume-slider{width:100%;height:4px;border-radius:2px;outline:none;-webkit-appearance:none;appearance:none;background:#ffffff1a;transition:background .15s ease}.participant-volume-slider:hover{background:#fff3}.participant-volume-slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:12px;height:12px;border-radius:50%;background:var(--discord-accent);cursor:pointer}.participant-volume-slider::-moz-range-thumb{width:12px;height:12px;border-radius:50%;background:var(--discord-accent);border:none;cursor:pointer}.voice-status-bar{padding:8px 16px;background-color:var(--discord-channels);border-top:1px solid rgba(255,255,255,.06)}.voice-status-info{display:flex;flex-direction:column;gap:2px}.voice-status-connected{display:flex;align-items:center;gap:8px;color:var(--discord-online);font-size:14px;font-weight:600}.voice-status-dot{width:8px;height:8px;border-radius:50%;background-color:var(--discord-text-muted);transition:background-color .2s ease}.voice-status-connected.transmitting .voice-status-dot{background-color:var(--discord-online);animation:dotPulse 1.5s ease-in-out infinite;box-shadow:0 0 8px var(--discord-online)}.voice-status-connected.transmitting{color:var(--discord-online)}@keyframes dotPulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(1.2)}}.voice-status-channel{color:var(--discord-text-muted);font-size:12px;padding-left:16px}.voice-controls{display:flex;align-items:center;justify-content:center;gap:12px;padding:16px;background-color:var(--discord-sidebar)}.voice-control-btn{width:48px;height:48px;border-radius:50%;background-color:var(--discord-channels);display:flex;align-items:center;justify-content:center;color:var(--discord-text-normal);cursor:pointer;transition:all .15s ease}.voice-control-btn:hover{background-color:#ffffff1a;color:var(--discord-text-heading)}.voice-control-btn.active-danger{background-color:#ff054633;color:var(--discord-danger)}.voice-control-btn.active-danger:hover{background-color:#ff054659}.voice-control-btn.disconnect{background-color:#ff0546cc;color:#fff}.voice-control-btn.disconnect:hover{background-color:var(--discord-danger)}.voice-controls-divider{width:1px;height:24px;background-color:#ffffff1a;margin:0 4px}.voice-control-btn.active{background-color:var(--discord-accent);color:#fff}.voice-participant.has-video{padding:0;overflow:hidden;background-color:#000;aspect-ratio:16 / 9;width:100%}.voice-participant-video-container{width:100%;height:100%;position:relative}.voice-participant-video{width:100%!important;height:100%!important;object-fit:cover}.voice-participant-video-overlay{position:absolute;bottom:8px;left:8px;background-color:#00000080;padding:2px 8px;border-radius:4px;pointer-events:none}.voice-participant-video-overlay .voice-participant-name{color:#fff;font-size:12px;text-align:left}.voice-participants-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px;width:100%;max-width:1200px}.voice-persistent-overlay{position:fixed;bottom:0;left:312px;z-index:500;width:320px;background:linear-gradient(135deg,#1e1f22f7,#18191cf7);border:1px solid rgba(255,255,255,.08);border-bottom:none;border-radius:12px 12px 0 0;box-shadow:0 -4px 24px #0006;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.voice-persistent-overlay .chat-area{background:transparent;min-width:0}.voice-persistent-overlay .chat-header{display:none}.voice-persistent-overlay .voice-panel{max-height:300px;overflow:hidden}.voice-persistent-overlay .voice-panel-center{padding:10px 12px;overflow-y:auto}.voice-persistent-overlay .voice-participants-grid{grid-template-columns:repeat(auto-fill,minmax(80px,1fr));gap:8px}.voice-persistent-overlay .voice-participant{padding:10px 6px;border-radius:8px}.voice-persistent-overlay .voice-participant-avatar{width:40px;height:40px;font-size:16px}.voice-persistent-overlay .voice-participant-name{font-size:11px}.voice-persistent-overlay .voice-controls{padding:10px 12px;gap:8px}.voice-persistent-overlay .voice-control-btn{width:36px;height:36px}.voice-persistent-overlay .voice-status-bar{padding:6px 12px}.channels-with-voice-sidebar{width:240px;flex-shrink:0;display:flex;flex-direction:column;background-color:var(--discord-channels)}.channels-with-voice-sidebar .channels-sidebar{width:100%;flex:1;min-height:0}.voice-sidebar-panel{border-top:1px solid rgba(255,255,255,.06);background-color:var(--discord-channels);overflow:hidden}.voice-sidebar-panel .chat-area{background:transparent;min-width:0}.voice-sidebar-panel .chat-header{display:none}.voice-sidebar-panel .voice-panel{max-height:360px}.voice-sidebar-panel .voice-panel-center{padding:8px 10px;overflow-y:auto}.voice-sidebar-panel .voice-participants-grid{grid-template-columns:repeat(auto-fill,minmax(74px,1fr));gap:6px}.voice-sidebar-panel .voice-participant{padding:8px 4px;border-radius:8px}.voice-sidebar-panel .voice-participant-avatar{width:36px;height:36px;font-size:14px}.voice-sidebar-panel .voice-participant-name{font-size:10px}.voice-sidebar-panel .voice-controls{padding:8px 10px;gap:6px}.voice-sidebar-panel .voice-control-btn{width:32px;height:32px}.voice-sidebar-panel .voice-status-bar{padding:5px 10px}.voice-sidebar-panel .voice-status-connected{font-size:12px}.voice-video-expand-btn{position:absolute;top:6px;right:6px;background:#0009;border-radius:4px;padding:3px 5px;color:#fff;opacity:0;transition:opacity .15s;pointer-events:none;display:flex;align-items:center}.voice-participant-video-container:hover .voice-video-expand-btn{opacity:1}.voice-video-expanded-overlay{position:fixed;inset:0;z-index:2000;background:#000000d9;display:flex;align-items:center;justify-content:center;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.voice-video-expanded-container{position:relative;max-width:92vw;max-height:88vh;border-radius:12px;overflow:hidden;box-shadow:0 8px 48px #0009}.voice-video-expanded-video{display:block;max-width:92vw;max-height:88vh;object-fit:contain;background:#000}.voice-video-expanded-close{position:absolute;top:10px;right:10px;z-index:10;background:#0009;color:#fff;border-radius:50%;width:32px;height:32px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .15s}.voice-video-expanded-close:hover{background:#ff0546cc}.voice-video-expanded-name{position:absolute;bottom:10px;left:12px;color:#fff;font-weight:600;font-size:14px;text-shadow:0 1px 4px rgba(0,0,0,.8)}.chat-area.dragging{background-color:#ff05461a!important;outline:2px dashed var(--discord-accent)!important;outline-offset:-10px!important}.file-preview-container{background-color:var(--discord-sidebar);margin:0 16px 8px;border-radius:8px;overflow:hidden;border:1px solid rgba(255,255,255,.05)}.file-preview-bar{padding:12px;display:flex;align-items:center;gap:12px;border-bottom:1px solid rgba(255,255,255,.05)}.upload-options{display:flex;align-items:center;gap:16px;padding:8px 12px;background-color:#0000001a}.upload-option-item{display:flex;align-items:center;gap:6px;color:var(--discord-text-muted);font-size:12px;font-weight:500}.expiration-select{background:var(--discord-background-tertiary);color:var(--discord-text-normal);border:1px solid var(--discord-border);border-radius:4px;font-size:11px;padding:2px 4px;outline:none;cursor:pointer}.expiration-select:focus{border-color:var(--discord-accent)}.password-toggle-btn{background:transparent;border:none;color:var(--discord-text-muted);cursor:pointer;display:flex;align-items:center;gap:6px;padding:4px 8px;border-radius:4px;font-size:12px;font-weight:500;transition:all .2s}.password-toggle-btn:hover{background:#ffffff0d;color:var(--discord-text-normal)}.password-toggle-btn.active{color:var(--discord-accent);background:#ff05461a}.password-inline-input{background:var(--discord-background-tertiary);border:1px solid var(--discord-border);color:var(--discord-text-normal);border-radius:4px;padding:2px 8px;font-size:11px;width:120px;outline:none}.password-inline-input:focus{border-color:var(--discord-accent)}.attachment-status{display:flex;flex-direction:column;gap:4px;background:var(--discord-background-secondary);border:1px solid var(--discord-border);border-radius:8px;padding:12px;max-width:400px}.attachment-meta{display:flex;align-items:center;gap:12px}.attachment-icon{color:var(--discord-text-muted);display:flex;align-items:center;justify-content:center}.attachment-details{display:flex;flex-direction:column}.attachment-name{color:var(--discord-text-normal);font-weight:600;font-size:14px}.attachment-type{color:var(--discord-text-muted);font-size:11px}.attachment-info-bar{display:flex;align-items:center;gap:8px;margin-top:8px;padding-top:8px;border-top:1px solid var(--discord-border);font-size:11px;color:var(--discord-text-muted)}.attachment-info-item{display:flex;align-items:center;gap:4px}.attachment-info-item.expired{color:var(--discord-accent)}.attachment-actions{display:flex;gap:8px;margin-top:12px}.btn-unlock,.btn-download{display:flex;align-items:center;gap:6px;background:var(--discord-accent);color:#fff;border:none;border-radius:4px;padding:6px 12px;font-size:12px;cursor:pointer;font-weight:500}.btn-unlock{background:var(--discord-border)}.unlock-form{display:flex;gap:8px;margin-top:8px}.unlock-form input{flex:1;background:var(--discord-background-tertiary);border:1px solid var(--discord-border);border-radius:4px;color:var(--discord-text-normal);padding:4px 8px;font-size:12px}.attachment-image-container{max-width:400px;border-radius:8px;overflow:hidden;background:var(--discord-background-secondary);border:1px solid rgba(255,255,255,.06)}.attachment-image-preview{display:block;max-width:100%;max-height:300px;object-fit:contain;cursor:pointer;border-radius:8px 8px 0 0;transition:opacity .15s}.attachment-image-preview:hover{opacity:.9}.attachment-image-footer{display:flex;align-items:center;justify-content:space-between;padding:6px 10px;background:#00000026}.attachment-image-name{color:var(--discord-text-muted);font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:0}.attachment-image-expires{display:flex;align-items:center;gap:4px;color:var(--discord-text-muted);font-size:11px;white-space:nowrap;flex-shrink:0}.attachment-image-download{background:none;border:none;color:var(--discord-text-muted);cursor:pointer;padding:2px;display:flex;align-items:center;border-radius:4px;transition:all .15s;flex-shrink:0}.attachment-image-download:hover{color:var(--discord-text-normal);background:#ffffff14}.attachment-image-overlay{position:fixed;inset:0;z-index:2000;background:#000000d9;display:flex;align-items:center;justify-content:center;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);cursor:zoom-out}.attachment-image-full{max-width:92vw;max-height:88vh;object-fit:contain;border-radius:8px;box-shadow:0 8px 48px #0009;cursor:default}@keyframes modalOverlayFadeIn{0%{opacity:0}to{opacity:1}}@keyframes modalContentPop{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.modal-overlay{position:fixed;inset:0;background-color:#000000bf;display:flex;align-items:center;justify-content:center;z-index:1000;animation:modalOverlayFadeIn .2s ease-out;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.modal-content{background-color:var(--discord-chat);border-radius:8px;box-shadow:0 8px 24px #0006;padding:24px;width:100%;animation:modalContentPop .25s cubic-bezier(.19,1,.22,1);overflow:hidden;position:relative}.message-item.highlight{background-color:#ff054633!important;animation:highlight-fade 2s ease-out}@keyframes highlight-fade{0%{background-color:#ff05464d}to{background-color:transparent}}.reply-preview:hover{text-decoration:underline}
