/* Spiritual Companion: Sacred Minimalist Aesthetic Styles */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&family=Sarabun:ital,wght@0,300;0,400;0,600;1,300&display=swap');

:root {
  --font-main: 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Sarabun', 'Times New Roman', serif;
  --color-gold-glow: rgba(245, 158, 11, 0.4);
  --color-sacred-bg: #030712;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-sacred-bg);
  color: #F3F4F6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.6);
}
::-webkit-scrollbar-thumb {
  background: rgba(100, 116, 139, 0.4);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 158, 11, 0.5);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sacredPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2), inset 0 0 15px rgba(245, 158, 11, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.45), inset 0 0 25px rgba(245, 158, 11, 0.2);
  }
}

.sacred-glow {
  animation: sacredPulse 3s infinite ease-in-out;
}

/* Karaoke Word Animations */
.karaoke-word {
  user-select: none;
  display: inline-block;
  will-change: transform, color, background-color;
}

/* Sliders */
input[type="range"] {
  height: 6px;
  border-radius: 9999px;
  cursor: pointer;
}
