body {
  background-color: #FFFFFF;
  color: #2D3748;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Soft minimal pattern */
.bg-grid {
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
}

/* Base button */
.btn-primary {
  background-color: #f472b6; /* pink-400 */
  color: white;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(244, 114, 182, 0.4), 0 2px 4px -1px rgba(244, 114, 182, 0.2);
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #ec4899; /* pink-500 */
  box-shadow: 0 10px 15px -3px rgba(244, 114, 182, 0.5), 0 4px 6px -2px rgba(244, 114, 182, 0.3);
  transform: translateY(-2px);
}

/* Floating Animations for Hero Icons */
@keyframes float-icon {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -15px, 0) scale(1.05); }
}

.float-icon {
  animation: float-icon 4s ease-in-out infinite;
  will-change: transform;
}

.float-icon:nth-child(even) {
  animation-duration: 5s;
  animation-delay: 1.5s;
}

/* Scroll Hide Scrollbar */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Keyframes for simple animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate-fade-in { animation: fadeIn 0.5s ease forwards; }
.animate-slide-in-right { animation: slideInRight 0.5s ease forwards; }
.animate-zoom-in { animation: zoomIn 0.5s ease forwards; }