/**
 * FreshClicks External Custom CSS
 * 
 * You can edit this file directly on Hostinger to customize styles,
 * animations, colors, and typography without rebuilding the application.
 */

/* Custom Smooth Scrolling & Selection */
::selection {
  background-color: #0f62fe;
  color: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Custom Brand Animations */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.animate-float-slow {
  animation: floatSlow 4s ease-in-out infinite;
}

/* Print Styles */
@media print {
  header, footer, .no-print {
    display: none !important;
  }
}
