/* PressWord Games SDK chrome — login prompt, account badge, toasts.
 * Namespaced under .pg- so it never collides with a game's own styles. */

#pg-badge {
  position: fixed; top: 8px; right: 10px; z-index: 2147483000;
  font: 600 12px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
#pg-badge a { cursor: pointer; color: #2271b1; text-decoration: none; background: rgba(255,255,255,.9);
  padding: 5px 9px; border-radius: 999px; border: 1px solid #c3c4c7; }
#pg-badge a:hover { background: #fff; }
#pg-badge .pg-acct { color: #1d2327; background: rgba(255,255,255,.9); padding: 5px 9px;
  border-radius: 999px; border: 1px solid #c3c4c7; }
#pg-badge .pg-acct::before { content: ""; }
#pg-badge .pg-out { margin-left: 4px; color: #646970; }

.pg-login-prompt {
  position: fixed; right: 18px; bottom: 18px; width: 340px; z-index: 2147483600;
  background: #fff; color: #1d2327; border: 1px solid #c3c4c7; border-top: 3px solid #2271b1;
  border-radius: 6px; box-shadow: 0 8px 28px rgba(0,0,0,.22); padding: 16px 18px;
  font: 13px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  animation: pg-rise .35s ease;
}
@keyframes pg-rise { from { opacity: 0; transform: translateY(10px); } }
.pg-login-prompt .pg-x { position: absolute; top: 8px; right: 10px; border: 0; background: none;
  font-size: 18px; cursor: pointer; color: #646970; line-height: 1; }
.pg-login-prompt .pg-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pg-login-prompt .pg-sub { color: #50575e; margin-bottom: 12px; }
.pg-login-prompt .pg-form { display: flex; gap: 6px; }
.pg-login-prompt input[type=email] { flex: 1; min-width: 0; padding: 8px 10px; border: 1px solid #8c8f94;
  border-radius: 4px; font: inherit; }
.pg-login-prompt .pg-form button { background: #2271b1; color: #fff; border: 0; border-radius: 4px;
  padding: 8px 12px; font: inherit; font-weight: 600; cursor: pointer; white-space: nowrap; }
.pg-login-prompt .pg-form button:hover { background: #135e96; }
.pg-login-prompt .pg-opt { display: flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 12px; color: #646970; }
.pg-login-prompt .pg-msg { margin-top: 8px; font-size: 12px; color: #2271b1; min-height: 16px; }

.pg-toast {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2147483600;
  background: #1d2327; color: #fff; padding: 11px 16px; border-radius: 6px; max-width: 90vw;
  box-shadow: 0 6px 20px rgba(0,0,0,.3); font: 13px/1.4 -apple-system, system-ui, sans-serif;
  animation: pg-rise .35s ease;
}
