/**
 * Robots NoIndex Warning Banner Styles
 */

@keyframes rin-slide-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rin-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.robots-noindex-warning {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #3033fd;
  color: #fff;
  padding: 10px 16px;
  font-family: Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
  animation: rin-slide-up 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
  opacity: 0;
}

.robots-noindex-warning__content {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.robots-noindex-warning__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffb100;
  flex-shrink: 0;
  animation: rin-pulse 1.8s ease-in-out infinite;
}

/**
 * Mobile adjustments
 */
@media (max-width: 768px) {
  .robots-noindex-warning {
    bottom: 14px;
    right: 14px;
    font-size: 10px;
  }
}
