/* Shared game chat — DDD open lobby + WetDrool 18+
   Time Gods MIND bureau chrome · hard corners · mono stamps · gold/mind accents */

.gchat {
  --gchat-accent: #ffd24a;
  --gchat-mind: #9dccff;
  --gchat-ink: #f5ecd8;
  --gchat-muted: #a89878;
  --gchat-line: rgba(255, 210, 74, 0.22);
  --gchat-bg: linear-gradient(165deg, rgba(255, 210, 74, 0.06), transparent 42%),
    rgba(8, 7, 5, 0.72);
  --gchat-radius: 3px;
  --gchat-mono: "IBM Plex Mono", ui-monospace, monospace;
  --gchat-serif: "Instrument Serif", Georgia, serif;
  margin-top: 1.25rem;
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: var(--gchat-radius);
  border: 1px solid var(--gchat-line);
  background: var(--gchat-bg);
  color: var(--gchat-ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 210, 74, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.28);
  position: relative;
}

/* foil ticket notch strip + MAPLE CLUB serial stamp */
.gchat::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 52px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid rgba(255, 210, 74, 0.45);
  background:
    linear-gradient(105deg, #c9a227 0%, #f0d78c 42%, #ffe9a8 50%, #c9a227 100%);
  box-shadow: 0 0 14px rgba(255, 210, 74, 0.22);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}
.gchat::after {
  content: "MAPLE CLUB";
  position: absolute;
  top: 11px;
  right: 14px;
  z-index: 2;
  width: 48px;
  height: 16px;
  display: grid;
  place-content: center;
  font-family: var(--gchat-mono);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1a1408;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  pointer-events: none;
  border-radius: 1px;
  background:
    linear-gradient(
      115deg,
      transparent 28%,
      rgba(255, 255, 255, 0.35) 48%,
      transparent 64%
    ),
    transparent;
  background-size: 200% 100%;
  animation: gchat-foil-sheen 3.6s ease-in-out infinite;
}
@keyframes gchat-foil-sheen {
  0%, 55% { background-position: 120% 0; }
  85%, 100% { background-position: -40% 0; }
}

.gchat[data-rating="adult"] {
  --gchat-accent: #ff7a9c;
  --gchat-mind: #c9a0ff;
  --gchat-ink: #fce8ef;
  --gchat-muted: #c4a0ad;
  --gchat-line: rgba(255, 45, 106, 0.35);
  --gchat-bg: linear-gradient(165deg, rgba(140, 82, 255, 0.12), transparent 40%),
    linear-gradient(200deg, rgba(255, 145, 77, 0.06), transparent 55%),
    rgba(14, 4, 10, 0.88);
  color: var(--gchat-ink);
}
.gchat[data-rating="adult"]::before {
  border-color: rgba(255, 122, 156, 0.5);
  background: linear-gradient(105deg, #8c52ff 0%, #ff7a9c 48%, #ff914d 100%);
  box-shadow: 0 0 16px rgba(255, 45, 106, 0.28);
}
.gchat[data-rating="adult"]::after {
  content: "WET CLUB 18+";
  color: #1a0610;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
  font-size: 5.5px;
  background:
    linear-gradient(
      115deg,
      transparent 28%,
      rgba(255, 255, 255, 0.4) 48%,
      transparent 64%
    ),
    transparent;
  background-size: 200% 100%;
}

/* perforation notch beside foil stamp */
.gchat {
  --gchat-notch: #0b0a08;
}
.gchat__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  padding-right: 4.5rem; /* room for foil stamp */
  position: relative;
}
.gchat__head::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 66px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gchat-notch);
  box-shadow: inset 0 0 0 1px rgba(240, 215, 140, 0.55);
  pointer-events: none;
}
.gchat[data-rating="adult"] {
  --gchat-notch: #12040a;
}
.gchat[data-rating="adult"] .gchat__head::after {
  box-shadow: inset 0 0 0 1px rgba(255, 122, 156, 0.45);
}

.gchat__kicker {
  margin: 0;
  font-family: var(--gchat-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gchat-mind);
}

.gchat[data-rating="adult"] .gchat__kicker {
  color: var(--gchat-accent);
}

.gchat__title {
  margin: 0.25rem 0 0;
  font-family: var(--gchat-serif);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--gchat-ink);
}

.gchat__status {
  margin: 0;
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid var(--gchat-line);
  border-radius: var(--gchat-radius);
  font-size: 0.72rem;
  font-family: var(--gchat-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gchat-muted);
  background: rgba(0, 0, 0, 0.35);
}
.gchat__status[data-kind="err"] {
  color: #ff8a8a;
  border-color: rgba(255, 138, 138, 0.35);
}
.gchat__status[data-kind="live"] {
  color: var(--gchat-mind);
  border-color: rgba(157, 204, 255, 0.4);
  box-shadow: 0 0 12px rgba(157, 204, 255, 0.12);
}

.gchat__lede {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--gchat-muted);
  line-height: 1.45;
  text-wrap: pretty;
  max-width: 62ch;
}

.gchat__advanced {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  color: var(--gchat-muted);
}
.gchat__advanced summary {
  cursor: pointer;
  font-family: var(--gchat-mono);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--gchat-accent);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.gchat--easy .gchat__log {
  min-height: 12rem;
  max-height: 20rem;
}
.gchat--easy .gchat__form textarea {
  min-height: 3.25rem;
}

.gchat__e2ee-note {
  margin: 0 0 0.85rem;
  font-family: var(--gchat-mono);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--gchat-muted);
  opacity: 0.9;
}

.gchat__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  align-items: end;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  color: var(--gchat-muted);
}

.gchat__meta label {
  display: grid;
  gap: 0.25rem;
  font-family: var(--gchat-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gchat__meta input {
  min-height: 44px;
  min-width: 7.5rem;
  padding: 0 0.65rem;
  border-radius: var(--gchat-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050504;
  color: var(--gchat-ink);
  font: 500 0.88rem/1.2 system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
.gchat__meta input:focus-visible {
  outline: 2px solid var(--gchat-mind);
  outline-offset: 1px;
  border-color: rgba(157, 204, 255, 0.45);
}

.gchat__btn,
.gchat__send {
  min-height: 44px;
  padding: 0 1rem;
  border-radius: var(--gchat-radius);
  border: 1px solid color-mix(in oklab, var(--gchat-accent) 48%, transparent);
  background: color-mix(in oklab, var(--gchat-accent) 14%, transparent);
  color: var(--gchat-ink);
  font: 650 0.78rem var(--gchat-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.gchat__btn:hover {
  background: color-mix(in oklab, var(--gchat-accent) 22%, transparent);
}
.gchat__btn:focus-visible,
.gchat__send:focus-visible,
.gchat__agent:focus-visible,
.gchat__meme:focus-visible {
  outline: 2px solid var(--gchat-mind);
  outline-offset: 2px;
}
.gchat__btn.ghost {
  background: transparent;
  color: var(--gchat-muted);
  border-color: rgba(255, 255, 255, 0.14);
}
.gchat__send {
  background: linear-gradient(180deg, #ffe27a 0%, var(--gchat-accent) 55%, #c9a227 100%);
  color: #14110a;
  border: 1px solid #f0d78c;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(255, 210, 74, 0.22);
}
.gchat__send:hover {
  filter: brightness(1.04);
}
.gchat[data-rating="adult"] .gchat__send {
  background: linear-gradient(135deg, #ff2d6a, #8c52ff 70%, #ff914d);
  color: #fff;
  border-color: rgba(255, 122, 156, 0.55);
  box-shadow: 0 6px 20px rgba(255, 45, 106, 0.25);
}

.gchat__agents {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.gchat__agent {
  min-height: 40px;
  padding: 0 0.75rem;
  border-radius: var(--gchat-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  color: var(--gchat-muted);
  font: 650 0.72rem var(--gchat-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.gchat__agent:hover {
  color: var(--gchat-ink);
  border-color: rgba(255, 255, 255, 0.22);
}
.gchat__agent.is-on {
  border-color: var(--gchat-accent);
  color: var(--gchat-ink);
  background: color-mix(in oklab, var(--gchat-accent) 16%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--gchat-accent) 25%, transparent);
}

/* persona tints — hierarchy without icon toppers */
.gchat__agent[data-agent="droc"].is-on {
  border-color: #ffd24a;
  color: #ffd24a;
}
.gchat__agent[data-agent="ari"].is-on {
  border-color: #ff7eb6;
  color: #ff7eb6;
}
.gchat__agent[data-agent="host"].is-on,
.gchat__agent[data-agent="coach"].is-on {
  border-color: var(--gchat-mind);
  color: var(--gchat-mind);
}
.gchat__agent[data-agent="rival"].is-on {
  border-color: #df584b;
  color: #ff9a90;
}
.gchat__agent--people.is-on,
.gchat__agent[data-agent="people"].is-on {
  border-color: #5eead4;
  color: #5eead4;
  background: rgba(94, 234, 212, 0.12);
}
.gchat__people {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin: 0 0 10px;
  font-size: 0.8rem;
  color: var(--gchat-muted);
}
.gchat__people-label {
  font-family: var(--gchat-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5eead4;
  font-weight: 800;
}
.gchat__mode {
  margin: 0 0 10px;
  font-size: 0.78rem;
  opacity: 0.9;
  padding: 6px 10px;
  border-radius: var(--gchat-radius, 6px);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.gchat__mode[data-mode="people"] {
  border-color: rgba(94, 234, 212, 0.28);
  color: #b8fff3;
}
.gchat__mode[data-mode="hermes"] {
  border-color: color-mix(in oklab, var(--gchat-accent) 35%, transparent);
}
.gchat__msg--human .gchat__who {
  color: #5eead4;
}

.gchat__log {
  min-height: 10.5rem;
  max-height: 18rem;
  overflow: auto;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding: 0.7rem;
  border-radius: var(--gchat-radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px dashed rgba(255, 210, 74, 0.22);
  background:
    radial-gradient(circle at 0 12px, transparent 5px, transparent 6px),
    radial-gradient(circle at 100% 12px, transparent 5px, transparent 6px),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(255, 210, 74, 0.025) 23px,
      rgba(255, 210, 74, 0.025) 24px
    ),
    rgba(0, 0, 0, 0.45);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 210, 74, 0.35) transparent;
  position: relative;
}
.gchat[data-rating="adult"] .gchat__log {
  border-top-color: rgba(255, 122, 156, 0.28);
  scrollbar-color: rgba(255, 122, 156, 0.4) transparent;
}

.gchat__msg {
  padding: 0.45rem 0.55rem 0.5rem;
  border-radius: var(--gchat-radius);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}
/* micro ticket notches on human lines */
.gchat__msg--user::before,
.gchat__msg--user::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(8, 7, 5, 0.95);
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(157, 204, 255, 0.28);
  pointer-events: none;
  opacity: 0.9;
}
.gchat__msg--user::before { left: -3.5px; }
.gchat__msg--user::after { right: -3.5px; }
.gchat[data-rating="adult"] .gchat__msg--user::before,
.gchat[data-rating="adult"] .gchat__msg--user::after {
  box-shadow: inset 0 0 0 1px rgba(255, 122, 156, 0.35);
}
.gchat__msg p {
  margin: 0.2rem 0 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.92rem;
  line-height: 1.4;
  text-wrap: pretty;
}

.gchat__who {
  font-family: var(--gchat-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gchat-muted);
}

/* weight via surface + type — not decorative left rails */
.gchat__msg--bot {
  background: linear-gradient(90deg, rgba(255, 210, 74, 0.08), rgba(255, 255, 255, 0.03) 28%);
  border: 1px solid rgba(255, 210, 74, 0.12);
}
.gchat__msg--bot .gchat__who {
  color: var(--gchat-accent);
}
.gchat__msg--user {
  background: rgba(157, 204, 255, 0.05);
  border: 1px solid rgba(157, 204, 255, 0.1);
}
.gchat__msg--user .gchat__who {
  color: var(--gchat-mind);
}

.gchat[data-rating="adult"] .gchat__msg--bot {
  background: linear-gradient(90deg, rgba(255, 45, 106, 0.1), rgba(255, 255, 255, 0.03) 30%);
  border-color: rgba(255, 122, 156, 0.16);
}

.gchat__gif {
  display: block;
  max-width: min(220px, 100%);
  max-height: 140px;
  border-radius: var(--gchat-radius);
  margin-top: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gchat__memes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
  max-height: 7.25rem;
  overflow: auto;
  padding-bottom: 2px;
}

.gchat__meme {
  min-height: 44px;
  min-width: 44px;
  padding: 0.28rem 0.45rem;
  border-radius: var(--gchat-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.4);
  color: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}
.gchat__meme:hover {
  border-color: color-mix(in oklab, var(--gchat-accent) 50%, transparent);
}
.gchat__meme img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 2px;
}

.gchat__form {
  display: grid;
  gap: 0.5rem;
}

.gchat__form textarea {
  width: 100%;
  min-height: 3.4rem;
  resize: vertical;
  padding: 0.65rem 0.75rem;
  border-radius: var(--gchat-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050504;
  color: var(--gchat-ink);
  font: inherit;
  line-height: 1.4;
}
.gchat__form textarea:focus-visible {
  outline: 2px solid var(--gchat-mind);
  outline-offset: 1px;
  border-color: rgba(157, 204, 255, 0.4);
}
.gchat__form textarea::placeholder {
  color: color-mix(in oklab, var(--gchat-muted) 80%, transparent);
}

.gchat__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.gchat__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .gchat__send,
  .gchat__btn,
  .gchat__agent {
    transition: none;
  }
}

@media (prefers-contrast: more) {
  .gchat {
    border-width: 2px;
  }
  .gchat__msg--bot,
  .gchat__msg--user {
    border-width: 2px;
  }
}

/* —— Docked in-game club (under canvas) —— */
.chat-mount--docked {
  margin: 0;
}
.gchat--docked,
.gchat--club {
  margin-top: 0;
  padding: 0.55rem 0.7rem 0.65rem;
  border-radius: 0 0 4px 4px;
}
.gchat--docked::before,
.gchat--docked::after {
  display: none;
}
.gchat__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 12px;
  margin-bottom: 4px;
}
.gchat__bar-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.gchat__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5eead4;
  box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.5);
  animation: gchat-pulse 1.5s ease infinite;
}
@keyframes gchat-pulse {
  70% { box-shadow: 0 0 0 7px rgba(94, 234, 212, 0); }
}
.gchat__bar-title {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.gchat__room-pill {
  font-family: var(--gchat-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.4);
  color: #5eead4;
  background: rgba(94, 234, 212, 0.08);
}
/* Live birthday T-minus (Aug 7 Top 10) — feel the clock */
.gchat__tminus {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.35rem 0 0.15rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, #f0d78c 55%, transparent);
  background:
    linear-gradient(105deg, transparent 30%, rgba(255, 243, 196, 0.18) 48%, transparent 62%),
    color-mix(in oklab, #f0d78c 12%, transparent);
  background-size: 200% 100%, auto;
  animation: gchat-tminus-sheen 4.5s ease-in-out infinite;
  color: #f0d78c;
  font: 700 0.72rem/1.2 var(--gchat-mono, ui-monospace, monospace);
  letter-spacing: 0.04em;
  text-transform: none;
}
.gchat__tminus[data-closed="1"] {
  border-color: color-mix(in oklab, #ff8a8a 50%, transparent);
  color: #ffb4b4;
  background: color-mix(in oklab, #ff8a8a 10%, transparent);
  animation: none;
}
@keyframes gchat-tminus-sheen {
  0%,
  100% {
    background-position: 100% 0, 0 0;
  }
  50% {
    background-position: 0% 0, 0 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gchat__tminus {
    animation: none;
  }
}

/* Quick topic chips (SFW Maple Club deepen) */
.gchat__prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.35rem 0 0.55rem;
}
.gchat__prompt {
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border-radius: var(--gchat-radius);
  border: 1px solid color-mix(in oklab, var(--gchat-mind) 45%, transparent);
  background: color-mix(in oklab, var(--gchat-mind) 12%, transparent);
  color: var(--gchat-mind);
  font: 650 0.68rem var(--gchat-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.gchat__prompt:hover {
  filter: brightness(1.1);
  border-color: var(--gchat-accent);
  color: var(--gchat-accent);
}
.gchat__prompt:focus-visible {
  outline: 2px solid var(--gchat-mind);
  outline-offset: 2px;
}

.gchat[data-rating="adult"] .gchat__prompt {
  border-color: color-mix(in oklab, var(--gchat-accent) 45%, transparent);
  background: color-mix(in oklab, var(--gchat-accent) 12%, transparent);
  color: var(--gchat-accent);
}
.gchat[data-rating="adult"] .gchat__prompt:hover {
  border-color: #c9a0ff;
  color: #fce8ef;
}

/* docked club keeps a slim foil strip (no floating stamp clutter) */
.gchat--docked {
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #8a6a18, #f0d78c 40%, #fff3c4 52%, #c9a227 85%, #9dccff) 1;
}
.gchat--docked[data-rating="adult"] {
  border-image: linear-gradient(90deg, #8c52ff, #ff7a9c 48%, #ff914d 90%) 1;
}
.gchat--docked .gchat__bar {
  position: relative;
  padding-right: 0.25rem;
}
.gchat--docked .gchat__bar-title::after {
  content: " · FOIL";
  font-family: var(--gchat-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--gchat-accent);
  opacity: 0.7;
  font-weight: 700;
}

.gchat__cast {
  margin: 0 0 6px;
  font-size: 0.72rem;
  color: var(--gchat-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gchat--docked .gchat__log {
  min-height: 7.5rem;
  max-height: 11rem;
  margin-bottom: 0.45rem;
}
.gchat__composer {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 6px;
  align-items: center;
  margin-bottom: 0.35rem;
}
.gchat__alias,
.gchat__compose {
  min-height: 40px;
  padding: 0 10px;
  border-radius: var(--gchat-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050504;
  color: inherit;
  font: inherit;
}
.gchat__compose { min-width: 0; }
.gchat__send {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--gchat-radius);
  background: linear-gradient(90deg, var(--gchat-accent), #ff914d);
  color: #111;
  font: 800 12px inherit;
  cursor: pointer;
  white-space: nowrap;
}
.gchat[data-rating="adult"] .gchat__send {
  background: linear-gradient(135deg, #ff2d6a, #7c1d3a);
  color: #fff;
}
.gchat__memes--row {
  max-height: 3.2rem;
  margin-bottom: 0.25rem;
}
.gchat__memes--row .gchat__meme {
  min-height: 32px;
  min-width: 32px;
  font-size: 0.75rem;
  padding: 0.15rem 0.35rem;
}
.gchat__memes--row .gchat__meme img {
  width: 36px;
  height: 36px;
}
.gchat--docked .gchat__advanced {
  margin-top: 2px;
  font-size: 0.72rem;
  opacity: 0.75;
}
.gchat--docked .gchat__head { display: none; }
.gchat--docked .gchat__lede { display: none; }
@media (max-width: 560px) {
  .gchat__composer {
    grid-template-columns: 1fr auto;
  }
  .gchat__alias {
    grid-column: 1 / -1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gchat__live-dot { animation: none; }
  .gchat::after { animation: none; }
}
