/* Ad-style banner centered at bottom */
body::after {
  content: "🚀 Powered by Martin Michalec";
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  
  /* Ad styling */
  background: linear-gradient(135deg, #ff6b6b 0%, #f06595 100%);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  
  padding: 12px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(240, 101, 149, 0.4);
  
  z-index: 99999;
  pointer-events: none;
}

/* Mobile override */
@media (max-width: 768px) {
  body::after {
    font-size: 14px;
    padding: 8px 20px;  /* optional: slightly smaller padding too */
  }
}
