/* Sandbox Mode Indicator */
.sandbox-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 600;
  margin-right: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.sandbox-label {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sandbox-timer {
  font-family: 'Courier New', monospace;
  opacity: 0.9;
}

/* Title Bar Sandbox Badge */
#sandbox-badge {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-index-sandbox-badge);
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  user-select: none;
  white-space: nowrap;
  max-width: var(--app-max-width);
  box-sizing: border-box;
}

#sandbox-badge.tour-mode {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  box-shadow: 0 4px 12px rgba(78, 205, 196, 0.5);
}
