/* Scoped to the chat overlay; the portfolio keeps its existing styles. */
#launchreel-create {
  position: fixed;
  z-index: 45;
  left: 50%;
  bottom: max(44px, calc(env(safe-area-inset-bottom) + 24px));
  width: min(680px, calc(100% - 40px));
  transform: translateX(-50%);
  color: #fff;
  font: 400 14px/1.4 Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  -webkit-text-fill-color: currentColor;
  pointer-events: auto;
}
#launchreel-create .lr-caption {
  margin: 0 0 12px;
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  text-shadow: 0 2px 12px #000;
}
#launchreel-create .lr-composer {
  padding: 18px 18px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(16,16,16,.9);
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
#launchreel-create textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  max-height: 120px;
  margin: 0;
  padding: 0 2px 10px;
  resize: none;
  border: 0;
  outline: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  caret-color: #fff;
  box-shadow: none;
  touch-action: auto;
}
#launchreel-create textarea::placeholder { color: #929292; opacity: 1; }
#launchreel-create .lr-footer { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
#launchreel-create button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 0;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s;
}
#launchreel-create button:hover { background: #dedede; }
#launchreel-create button:focus-visible { outline: 2px solid white; outline-offset: 4px; }
#launchreel-create textarea:focus,
#launchreel-create textarea:focus-visible { outline: none; border: 0; box-shadow: none; }
#launchreel-create button:disabled { background: #303030; color: #888; cursor: default; }
#launchreel-create svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 600px) {
  #launchreel-create { width: calc(100% - 24px); bottom: max(34px, calc(env(safe-area-inset-bottom) + 20px)); }
  #launchreel-create .lr-composer { padding: 16px 16px 12px; border-radius: 22px; }
  #launchreel-create .lr-caption { font-size: 12px; margin-bottom: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  #launchreel-create button { transition: none; }
}
