/* Standalone public room, also displayed inside the Android WebView. */
.chat-room-page { background: #0b0d12; font-family: system-ui, sans-serif; }
.chat-room-shell { max-width: 900px; background: #101319; }
.chat-room-header { flex-shrink: 0; gap: 10px; background: #191d25; padding: 12px; }
.chat-room-back { background: transparent; flex-shrink: 0; }
.chat-room-group-avatar, .chat-room-avatar { display: grid; place-items: center; border-radius: 50%; font-weight: 800; flex-shrink: 0; }
.chat-room-group-avatar { width: 44px; height: 44px; background: linear-gradient(140deg, #ed443b, #961d28); font-size: 15px; }
.chat-room-heading { min-width: 0; }
.chat-room-header h1 { font-size: 18px; letter-spacing: -.3px; }
.chat-room-header p { color: #abb5c5; font-size: 12px; }
.chat-room-info-toggle { display: flex; flex-shrink: 0; margin: 0; padding: 0 18px; min-height: 38px; border: 0; border-radius: 0; background: #161920; font-size: 12px; color: #bdc6d4; }
.chat-room-shell.is-info-collapsed .chat-room-radio,
.chat-room-shell.is-info-collapsed .chat-room-live,
.chat-room-shell.is-info-collapsed .chat-room-rules { display: none; }
.chat-room-radio { flex-shrink: 0; }
.chat-room-card { border: 0; }
.chat-room-identity { flex-shrink: 0; background: #191d25; }
.chat-room-identity .live-chat-nick-toggle { display: flex; }
.chat-room-identity.is-nick-collapsed { padding: 5px 12px; }
.chat-room-identity.is-nick-collapsed .live-chat-name-field,
.chat-room-identity.is-nick-collapsed .live-chat-save-name,
.chat-room-identity.is-nick-collapsed .live-chat-name-confirm { display: none; }
.chat-room-messages { padding: 18px 14px; gap: 13px; background-color: #101319; background-image: radial-gradient(#ffffff07 1px, transparent 1px); background-size: 20px 20px; overscroll-behavior: contain; }
.chat-room-messages .live-chat-message { display: flex; align-items: flex-end; gap: 8px; max-width: 87%; }
.chat-room-avatar { width: 30px; height: 30px; background: hsl(var(--avatar-hue) 32% 27%); color: #fff; font-size: 10px; }
.chat-room-messages .live-chat-bubble { min-width: 85px; padding: 9px 12px 5px; border: 1px solid #ffffff08; border-radius: 16px 16px 16px 3px; background: #242a35; box-shadow: 0 2px 3px #0002; }
.chat-room-messages .is-me .chat-room-avatar { display: none; }
.chat-room-messages .is-me .live-chat-bubble { background: #68292e; border-color: #a8485033; border-radius: 16px 16px 3px 16px; }
.chat-room-messages .is-featured .live-chat-bubble { border-color: #e9bf55; }
.chat-room-messages .is-private .live-chat-bubble { border-color: #e9bf55; }
.chat-room-messages .live-chat-meta { flex-wrap: wrap; color: #ffb9ad; font-size: 12px; gap: 5px; }
.chat-room-messages .is-me .live-chat-meta { color: #f9ccc7; }
.chat-room-messages .live-chat-text { font-size: 15px; line-height: 1.5; white-space: pre-wrap; }
.chat-room-message-time { text-align: right; margin-top: 3px; color: #b7bfcc; font-size: 10px; }
.chat-room-messages .chat-room-notice { align-self: center; max-width: 95%; }
.chat-room-notice .live-chat-bubble { background: #1b2029; border-radius: 12px; }
.chat-room-notice .live-chat-text { font-size: 12px; color: #c3ccda; }
.chat-room-composer { padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: #191d25; box-shadow: 0 -1px 0 #ffffff0a; }
.chat-room-composer .live-chat-form { gap: 8px; align-items: flex-end; }
.chat-room-composer textarea { flex: 1; min-width: 0; box-sizing: border-box; min-height: 46px; max-height: 112px; resize: none; border: 1px solid #ffffff0c; border-radius: 23px; background: #282e39; color: #fff; padding: 12px 15px; font: inherit; font-size: 16px; line-height: 20px; outline: none; }
.chat-room-composer textarea:focus { border-color: #e95850; }
.chat-room-composer .live-chat-form button { width: 46px; height: 46px; flex-shrink: 0; border: 0; border-radius: 50%; background: #df3a33; }
.chat-room-composer .live-chat-form .chat-room-emoji-toggle { background: transparent; font-size: 23px; width: 38px; color: #bac4d3; }
.chat-room-composer [hidden] { display: none !important; }
.chat-room-composer .live-chat-quick-emojis { margin-bottom: 10px; }
.chat-room-reactions { justify-content: center; margin-top: 7px; gap: 15px; }
.chat-room-reactions button { width: 34px; height: 30px; border: 0; background: transparent; }
.chat-room-shell button { cursor: pointer; touch-action: manipulation; }
.chat-room-shell button:active { transform: translateY(2px) scale(.96); }
.chat-room-shell button:focus-visible { outline: 2px solid #ff978e; outline-offset: 2px; }
.chat-room-shell button:disabled { opacity: .5; cursor: default; }
@media (max-width: 380px) {
    .chat-room-messages { padding: 12px 8px; }
    .chat-room-messages .live-chat-message { max-width: 94%; gap: 5px; }
    .chat-room-composer { padding-left: 6px; padding-right: 6px; }
    .chat-room-radio { flex-wrap: wrap; }
}

.chat-room-group-avatar { object-fit: contain; padding: 3px; background: #fff; }
.chat-room-public-note { margin: 0 0 8px; color: #abb5c5; font-size: 11px; text-align: center; }
