/* Live viewer — theater layout (video-first + docked chat) */

/* Page: full width, less “boxed” feel */
.live-view-page--theater.page-wrapper {
  max-width: 100%;
  padding-bottom: 24px;
}

.live-view-page--theater.page-wrapper::before,
.live-view-page--theater.page-wrapper::after {
  width: 16px;
  opacity: 0.45;
}

.live-page-kicker {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 146, 42, 0.55);
  text-align: center;
  margin: 0 0 10px;
  padding: 0 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* HMS root — no heavy chrome */
.live-theater {
  padding: 0 12px 8px;
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .live-theater {
    padding: 0 20px 12px;
  }
}

/* Stage: video + chat column (desktop) or stacked + overlay chat (mobile) */
.live-video-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  grid-template-rows: minmax(320px, min(78vh, 860px));
  align-items: stretch;
  background: #030201;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(90, 60, 28, 0.35);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.live-video-overlay,
.live-video-frame {
  grid-column: 1;
  grid-row: 1;
}

.live-video-overlay {
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 12px 12px 14px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(4, 2, 1, 0.72) 0%,
    transparent 38%,
    transparent 55%,
    rgba(4, 2, 1, 0.35) 100%
  );
}

.live-video-overlay * {
  pointer-events: auto;
}

.live-video-overlay__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.live-performer-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(15px, 2.2vw, 22px);
  color: var(--gold-light);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
  margin-right: 4px;
}

.live-video-overlay__tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.live-overlay-btn {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(201, 146, 42, 0.38);
  background: rgba(12, 8, 4, 0.72);
  color: rgba(245, 208, 112, 0.92);
  cursor: pointer;
  line-height: 1;
}

.live-overlay-btn:hover:not(:disabled) {
  background: rgba(40, 24, 10, 0.88);
  border-color: rgba(245, 208, 112, 0.45);
}

.live-overlay-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.live-overlay-btn--fs {
  font-size: 18px;
  padding: 6px 10px;
}

.live-video-frame {
  z-index: 1;
  position: relative;
  min-height: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.live-video-aspect {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #050302;
}

@media (min-width: 769px) {
  .live-video-frame {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .live-video-aspect {
    width: 100%;
    height: auto;
    max-height: 100%;
    flex: 0 1 auto;
  }
}

/* Chat dock — desktop: right column */
.live-chat-dock {
  grid-column: 2;
  grid-row: 1;
  z-index: 4;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: linear-gradient(175deg, rgba(18, 11, 5, 0.96) 0%, rgba(6, 4, 2, 0.98) 100%);
  border-left: 1px solid rgba(90, 60, 28, 0.4);
}

.live-chat-dock__toggle {
  display: none;
}

.live-chat-dock__body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  overflow: hidden;
}

.live-chat-dock__title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 16px;
  color: var(--gold-light);
  font-weight: 400;
  margin: 0;
  padding: 12px 14px 8px;
  border-bottom: 1px solid rgba(122, 85, 32, 0.25);
  flex-shrink: 0;
}

/* Legacy hero (unused on theater page) */
.live-view-hero {
  text-align: center;
  padding: 28px 20px 8px;
}

.live-view-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 146, 42, 0.75);
  margin-bottom: 8px;
}

.live-view-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(28px, 5vw, 40px);
  color: var(--gold-light);
  text-shadow: 0 0 28px rgba(201, 146, 42, 0.35);
  font-weight: 400;
}

.live-view-sub {
  margin-top: 10px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(208, 185, 140, 0.82);
}

.live-view-divider.title-divider {
  width: 120px;
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, rgba(201, 146, 42, 0.55), transparent);
  border: 0;
}

.live-view-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 22px;
  align-items: start;
  padding: 12px 20px 32px;
}

@media (max-width: 960px) {
  .live-view-layout {
    grid-template-columns: 1fr;
  }
}

/* Stage (legacy class names kept for any old references) */
.live-stage {
  border: 1px solid rgba(122, 85, 32, 0.45);
  border-radius: 12px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(80, 40, 8, 0.45) 0%, transparent 55%),
    linear-gradient(165deg, rgba(28, 16, 6, 0.96) 0%, rgba(10, 6, 3, 0.98) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(201, 146, 42, 0.12);
  padding: 16px 16px 18px;
}

.live-stage-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 14px;
}

.live-pill {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(122, 85, 32, 0.55);
}

.live-pill--off {
  color: rgba(208, 185, 140, 0.55);
  background: rgba(20, 12, 4, 0.6);
}

.live-pill--on {
  color: #fecaca;
  border-color: rgba(220, 80, 80, 0.55);
  background: rgba(60, 12, 12, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-pill--members {
  color: #fde68a;
  border-color: rgba(251, 191, 36, 0.55);
  background: rgba(80, 50, 8, 0.55);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(122, 85, 32, 0.55);
}

.live-pill--public {
  color: rgba(186, 230, 253, 0.95);
  border-color: rgba(125, 211, 252, 0.35);
  background: rgba(12, 40, 60, 0.4);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(122, 85, 32, 0.45);
}

.live-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f87171;
  box-shadow: 0 0 12px rgba(248, 113, 113, 0.9);
  animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.92);
  }
}

.live-stage-meta {
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  color: rgba(208, 185, 140, 0.72);
  font-style: italic;
}

.live-stage-meta--idle {
  margin-left: 4px;
}

.live-presence-count {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.85);
  border: 1px solid rgba(125, 211, 252, 0.25);
  background: rgba(12, 40, 60, 0.35);
  padding: 5px 10px;
  border-radius: 999px;
}

.live-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(90, 45, 12, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, #120a04 0%, #080402 100%);
}

.live-video-placeholder--live {
  background:
    radial-gradient(ellipse 60% 70% at 50% 40%, rgba(120, 30, 20, 0.35) 0%, transparent 55%),
    linear-gradient(145deg, #1a0c08 0%, #070302 100%);
  overflow: hidden;
}

.live-video-placeholder--locked {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(90, 45, 12, 0.45) 0%, transparent 55%),
    linear-gradient(165deg, rgba(28, 16, 6, 0.98) 0%, rgba(8, 4, 2, 0.98) 100%);
  border: 1px solid rgba(122, 85, 32, 0.35);
}

.live-video-placeholder--locked .live-video-hint {
  color: rgba(253, 230, 138, 0.75);
}

.live-video-cta {
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  color: rgba(208, 185, 140, 0.92);
  margin: 14px auto 0;
  max-width: 340px;
  line-height: 1.5;
}

.live-video-cta a {
  color: var(--gold-bright);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 146, 42, 0.45);
}

.live-video-cta a:hover {
  color: #fde68a;
}

.live-video-shimmer {
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    125deg,
    transparent 30%,
    rgba(201, 146, 42, 0.06) 45%,
    rgba(255, 200, 120, 0.09) 50%,
    rgba(201, 146, 42, 0.06) 55%,
    transparent 70%
  );
  animation: liveShimmer 8s linear infinite;
}

@keyframes liveShimmer {
  0% {
    transform: translate(-12%, -12%) rotate(8deg);
  }
  100% {
    transform: translate(12%, 12%) rotate(8deg);
  }
}

.live-video-center {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  max-width: 90%;
}

.live-video-icon {
  display: inline-block;
  font-size: 28px;
  color: rgba(232, 184, 75, 0.85);
  text-shadow: 0 0 24px rgba(201, 146, 42, 0.5);
  margin-bottom: 8px;
}

.live-video-moon {
  display: inline-block;
  font-size: 42px;
  line-height: 1;
  color: rgba(201, 146, 42, 0.45);
  margin-bottom: 10px;
  filter: drop-shadow(0 0 12px rgba(201, 146, 42, 0.25));
}

.live-video-label {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--gold-pale);
  margin-bottom: 6px;
}

.live-video-hint {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  color: rgba(208, 185, 140, 0.55);
  line-height: 1.45;
  max-width: 320px;
  margin: 0 auto;
}

.live-design-note {
  margin-top: 14px;
  font-family: 'EB Garamond', serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(208, 185, 140, 0.45);
  text-align: center;
}

/* Chat column (legacy) */
.live-chat {
  border: 1px solid rgba(122, 85, 32, 0.45);
  border-radius: 12px;
  background: linear-gradient(175deg, rgba(22, 14, 6, 0.97) 0%, rgba(8, 5, 2, 0.99) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  max-height: min(78vh, 720px);
}

.live-chat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(122, 85, 32, 0.35);
}

.live-chat-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.live-tip-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 208, 112, 0.4);
  background: rgba(201, 146, 42, 0.2);
  color: #f5d070;
  cursor: pointer;
  flex-shrink: 0;
}

.live-tip-btn:hover {
  background: rgba(201, 146, 42, 0.32);
}

.live-tip-btn--off,
.live-tip-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  border-color: rgba(122, 85, 32, 0.4);
  color: rgba(208, 185, 140, 0.5);
  background: rgba(30, 22, 14, 0.55);
}

.live-tip-btn--off:hover,
.live-tip-btn:disabled:hover {
  background: rgba(30, 22, 14, 0.55);
}

.live-chat-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 18px;
  color: var(--gold-light);
  font-weight: 400;
}

.live-chat-tag {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.75);
  border: 1px solid rgba(110, 160, 140, 0.35);
  padding: 4px 8px;
  border-radius: 4px;
}

.live-chat-scroll {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-color: rgba(122, 85, 32, 0.6) rgba(10, 6, 3, 0.5);
}

.live-chat-locked {
  text-align: center;
  padding: 18px 12px;
  border-radius: 10px;
  border: 1px solid rgba(122, 85, 32, 0.35);
  background: rgba(20, 12, 6, 0.55);
}

.live-chat-locked-title {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fde68a;
  margin: 0 0 8px;
}

.live-chat-locked-text {
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  color: rgba(208, 185, 140, 0.75);
  margin: 0 0 12px;
  line-height: 1.45;
}

.live-chat-locked-btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-pale);
  border: 1px solid rgba(201, 146, 42, 0.55);
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(40, 22, 8, 0.6);
}

.live-chat-locked-btn:hover {
  color: var(--gold-bright);
}

.live-msg {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(223, 208, 182, 0.92);
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(30, 18, 8, 0.55);
  border: 1px solid rgba(122, 85, 32, 0.22);
}

.live-msg--highlight {
  background: rgba(50, 28, 10, 0.65);
  border-color: rgba(201, 146, 42, 0.35);
}

.live-msg-user {
  display: inline;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-right: 6px;
}

.live-msg-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
  color: rgba(167, 243, 208, 0.95);
  border: 1px solid rgba(110, 160, 140, 0.4);
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 6px;
}

.live-msg-text {
  display: inline;
  color: rgba(232, 216, 188, 0.92);
}

.live-msg--tip-announcement {
  text-align: center;
  font-style: italic;
  background: linear-gradient(135deg, rgba(55, 36, 12, 0.88), rgba(28, 18, 8, 0.78));
  border-color: rgba(245, 208, 112, 0.42);
  color: rgba(250, 232, 200, 0.95);
}

.live-msg-tip-ico {
  margin-right: 8px;
  filter: drop-shadow(0 0 6px rgba(245, 208, 112, 0.45));
}

.live-msg--tipper {
  border-color: rgba(245, 208, 112, 0.38);
  animation: live-tipper-pulse 3.5s ease-in-out infinite;
}

.live-msg-crown {
  display: inline;
  font-size: 12px;
  line-height: 1;
  vertical-align: middle;
  margin-right: 6px;
  letter-spacing: 0.04em;
}

@keyframes live-tipper-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(245, 208, 112, 0.15);
  }
  50% {
    box-shadow: 0 0 14px rgba(245, 208, 112, 0.22);
  }
}

.live-emoji-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px 6px;
  border-top: 1px solid rgba(122, 85, 32, 0.22);
  flex-shrink: 0;
}

.live-emoji-btn {
  border: 1px solid rgba(122, 85, 32, 0.45);
  background: rgba(20, 12, 5, 0.75);
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
  padding: 6px 8px;
  cursor: pointer;
}

.live-emoji-btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.live-compose {
  display: flex;
  gap: 8px;
  padding: 10px 12px 8px;
  align-items: stretch;
  flex-shrink: 0;
  border-top: 1px solid rgba(122, 85, 32, 0.28);
  background: rgba(8, 5, 2, 0.35);
}

.live-compose-input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(122, 85, 32, 0.45);
  border-radius: 8px;
  background: rgba(8, 5, 2, 0.85);
  color: rgba(208, 185, 140, 0.85);
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  padding: 9px 12px;
}

.live-compose-input::placeholder {
  color: rgba(208, 185, 140, 0.38);
}

.live-compose-input:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.live-compose-send {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(122, 85, 32, 0.55);
  border-radius: 8px;
  padding: 0 14px;
  color: rgba(201, 146, 42, 0.85);
  background: rgba(25, 15, 6, 0.8);
  cursor: pointer;
}

.live-compose-send:disabled {
  color: rgba(208, 185, 140, 0.45);
  cursor: not-allowed;
}

.live-compose-send.live-chat-send--cooldown,
#admin-send-btn.live-chat-send--cooldown {
  opacity: 0.72;
  cursor: not-allowed;
}

.live-chat-footnote {
  padding: 0 12px 10px;
  margin: 0;
  font-size: 10px;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: rgba(208, 185, 140, 0.38);
  line-height: 1.35;
}

/* Fullscreen: hide page chrome feel */
.live-video-stage:fullscreen {
  border: none;
  max-height: none;
  grid-template-rows: 1fr;
}

.live-video-stage:fullscreen .live-chat-dock {
  max-height: none;
}

/* ——— Mobile: video-first, chat as bottom overlay ——— */
@media (max-width: 768px) {
  .live-page-kicker {
    margin-bottom: 6px;
  }

  .live-theater {
    padding: 0 0 8px;
  }

  .live-video-stage {
    display: block;
    position: relative;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .live-video-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 5;
    height: auto;
    min-height: min(48vh, 360px);
    padding: 10px 10px 12px;
    pointer-events: none;
  }

  .live-video-overlay * {
    pointer-events: auto;
  }

  .live-video-frame {
    position: relative;
    width: min(100%, calc(min(72vh, 640px) * 9 / 16));
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    max-height: min(72vh, 640px);
    background: #050302;
  }

  .live-video-aspect {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
  }

  .live-chat-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    grid-column: unset;
    grid-row: unset;
    border-left: none;
    border-top: 1px solid rgba(122, 85, 32, 0.4);
    background: linear-gradient(180deg, rgba(10, 6, 3, 0.2) 0%, rgba(6, 4, 2, 0.92) 18%, rgba(6, 4, 2, 0.97) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-bottom: env(safe-area-inset-bottom, 0);
    max-height: 48vh;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.55);
  }

  .live-chat-dock__toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 208, 112, 0.9);
    background: rgba(18, 11, 5, 0.55);
    border: none;
    border-bottom: 1px solid rgba(122, 85, 32, 0.25);
    cursor: pointer;
  }

  .live-chat-dock__chevron {
    transition: transform 0.2s ease;
    font-size: 10px;
    opacity: 0.85;
  }

  .live-chat-dock--collapsed .live-chat-dock__chevron {
    transform: rotate(-90deg);
  }

  .live-chat-dock__body {
    max-height: min(28vh, 220px);
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .live-chat-dock--collapsed .live-chat-dock__body {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }

  .live-chat-dock__title {
    padding-top: 8px;
  }

  .live-chat-scroll {
    max-height: min(22vh, 180px);
  }

  .live-performer-name {
    font-size: clamp(14px, 4vw, 18px);
  }

  .live-video-overlay__tools {
    justify-content: flex-end;
    gap: 6px;
  }

  .live-tip-btn {
    padding: 0.38rem 0.75rem;
    font-size: 0.65rem;
  }

  .live-overlay-btn {
    min-width: 38px;
    min-height: 38px;
    padding: 6px 10px;
  }
}

@media (max-width: 960px) {
  .live-chat {
    max-height: none;
    min-height: 0;
  }
}
