.cq-easteregg {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  font-family: inherit;
}

.cq-easteregg__fab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff6b2b;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 107, 43, 0.4);
  animation: cq-egg-pulse 2s ease infinite;
}

.cq-easteregg__hint {
  font-size: 0.8rem;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.3s;
}

.cq-easteregg__fab:hover .cq-easteregg__hint {
  max-width: 120px;
}

.cq-easteregg__panel {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 0.5rem;
  width: 280px;
  background: #252540;
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  direction: rtl;
}

.cq-easteregg__panel[hidden] {
  display: none;
}

.cq-easteregg__panel input {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1a1a2e;
  color: #fff;
  font-family: monospace;
}

.cq-easteregg__msg {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.cq-easteregg__msg.is-error {
  color: #f87171;
}

.cq-easteregg__msg.is-success {
  color: #4ade80;
}

@keyframes cq-egg-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
