/* Golapika Theme Custom Styling */

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(219, 39, 119, 0.2); }
  50% { box-shadow: 0 0 30px rgba(244, 63, 94, 0.4); }
}

.pulse-glow {
  animation: pulseGlow 3s infinite ease-in-out;
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #fff8fa;
}
::-webkit-scrollbar-thumb {
  background: #fbcfe8;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f472b6;
}

/* Modal entry animations */
.modal-enter {
  animation: modalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Print styling */
@media print {
  header, footer, .modal-close, button, aside {
    display: none !important;
  }
  body {
    background: #fff !important;
  }
}
