
.guest-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.0);
  z-index: 999;
  cursor: pointer;
}
@keyframes guardSlideLeft {
  from { transform: translateX(-150%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes guardSlideRight {
  from { transform: translateX(150%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.guest-overlay .guard-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 120px;
  height: auto;
  pointer-events: none;
  animation: guardSlideLeft 0.8s ease-out forwards;
}
.guest-overlay .guard-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 120px;
  height: auto;
  pointer-events: none;
  animation: guardSlideRight 0.8s ease-out forwards;
}
.guard-bubble {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  z-index: 1000;
  opacity: 0;
  display: inline-block;
  animation: bubbleFadeIn 1s ease forwards;
  animation-delay: 0.9s;
}
.guard-bubble::before,
.guard-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
}
.guard-bubble::before { left: -20px; border-right-color: #000; }
.guard-bubble::after { right: -20px; border-left-color: #000; }
@keyframes bubbleFadeIn {
  from { opacity: 0; transform: translateX(-50%) scale(0.8); }
  to   { opacity: 1; transform: translateX(-50%) scale(1); }
}
.guest-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 2px solid #444;
  border-radius: 8px;
  padding: 1.5rem;
  z-index: 10000;
  box-shadow: 0 0 1rem rgba(0,0,0,0.3);
  text-align: center;
  width: 300px;
  max-width: 300px;
  display: none;
}
.guest-modal h3 { margin-bottom: 1rem; font-size: 1.1rem; color: #333; }
.guest-modal a {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}
.guest-modal a:hover { background: #0056b3; }