/* Night Sky & Islamic Aesthetic Styling */

html, body {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.select-text {
  user-select: text;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(217, 119, 6, 0.4);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Breathing animation for anxiety/urge relief */
@keyframes breathingPulse {
  0%, 100% {
    transform: scale(0.92);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 35px rgba(16, 185, 129, 0.5);
  }
}

.breathing-active {
  animation: breathingPulse 6s ease-in-out infinite;
}

/* Golden shimmer effect on key elements */
.gold-shimmer {
  background: linear-gradient(90deg, #d4af37 0%, #fef3c7 50%, #d4af37 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}