/* Islamic Patterns & Ornate Accents */
@layer utilities {
  .font-quran {
    font-family: "Amiri Quran", "Scheherazade New", Amiri, serif;
  }
}

/* Custom Scrollbar for Smooth Reading */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.7);
}

/* Islamic Ornate Corners */
.islamic-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #d4af37;
  pointer-events: none;
  opacity: 0.65;
}
.islamic-corner.top-left {
  top: 8px;
  left: 8px;
  border-top: 2px solid #d4af37;
  border-left: 2px solid #d4af37;
}
.islamic-corner.top-right {
  top: 8px;
  right: 8px;
  border-top: 2px solid #d4af37;
  border-right: 2px solid #d4af37;
}
.islamic-corner.bottom-left {
  bottom: 8px;
  left: 8px;
  border-bottom: 2px solid #d4af37;
  border-left: 2px solid #d4af37;
}
.islamic-corner.bottom-right {
  bottom: 8px;
  right: 8px;
  border-bottom: 2px solid #d4af37;
  border-right: 2px solid #d4af37;
}

/* Filter Tab Styles */
.filter-tab {
  background-color: transparent;
  color: #4a5568;
  border-color: rgba(15, 62, 52, 0.15);
}
.dark .filter-tab {
  color: #cbd5e0;
  border-color: rgba(212, 175, 55, 0.2);
}
.filter-tab.active {
  background-color: #0F3E34;
  color: #f7e7a9;
  border-color: #d4af37;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.dark .filter-tab.active {
  background-color: #082821;
  color: #f7e7a9;
  border-color: #d4af37;
}

/* Ayah End Symbol & Numbering Badge */
.ayah-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Amiri", serif;
  font-size: 0.72em;
  font-weight: 700;
  color: #805f0f;
  margin: 0 0.25rem;
  padding: 0 0.15rem;
  vertical-align: middle;
  cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease;
  user-select: none;
}
.dark .ayah-num-badge {
  color: #e5ca6d;
}
.ayah-num-badge:hover {
  transform: scale(1.15);
  color: #aa821a;
}
.ayah-num-badge::before {
  content: " ۝ ";
  font-size: 1.4em;
  margin-left: -0.1em;
  opacity: 0.85;
}

/* Active Highlighted Ayah during playback */
.active-ayah {
  background-color: rgba(212, 175, 55, 0.22);
  border-radius: 6px;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22);
  transition: background-color 0.3s ease;
}

/* Surah Card Hover & Transitions */
.surah-card {
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.surah-card:hover {
  transform: translateY(-2px);
  border-color: #d4af37;
  box-shadow: 0 8px 20px -4px rgba(15, 62, 52, 0.12);
}
.dark .surah-card:hover {
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.4);
}

/* Mushaf Themes */
.mushaf-card.theme-parchment {
  background-color: #FFFDF7 !important;
  color: #1a2e2b !important;
}
.mushaf-card.theme-emerald {
  background-color: #0d2822 !important;
  color: #edf5f1 !important;
}
.mushaf-card.theme-dark {
  background-color: #0b0f0e !important;
  color: #e2e8f0 !important;
}

/* Basmala Calligraphy Glow */
.basmala-text {
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
  letter-spacing: 0.02em;
}

/* Bottom Nav Active State */
.bottom-nav-item.active {
  color: #d4af37 !important;
}
.bottom-nav-item.active i {
  color: #d4af37 !important;
}

/* Gentle slow rotation for audio disc */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin-slow {
  animation: spin-slow 12s linear infinite;
}

/* Tasbeeh Ripple */
.tasbeeh-btn:active {
  transform: scale(0.96);
}