/* Custom Desert Falconry Theme Styles */
@layer utilities {
  .bg-radial-vignette {
    background: radial-gradient(circle at center, transparent 40%, rgba(20, 10, 8, 0.6) 80%, rgba(10, 5, 4, 0.95) 100%);
  }
}

/* Sadu Carpet Pattern Accents */
.sadu-border {
  background-image: repeating-linear-gradient(45deg, #9E2A2B 0, #9E2A2B 10px, #1A181B 10px, #1A181B 20px, #FFF1D0 20px, #FFF1D0 30px);
}

/* Custom Scrollbar for Shop Modal */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: rgba(227, 168, 87, 0.4);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(227, 168, 87, 0.8);
}

/* Smooth active button compress */
button {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* Reticle Aiming Styles */
#hunting-reticle {
  box-shadow: 0 0 15px rgba(227, 168, 87, 0.15);
}

/* Subtle Heat Ripple Animation for Ambient */
@keyframes heat-wave {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-4px) scale(1.02); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.8; }
}

.heat-shimmer {
  animation: heat-wave 4s ease-in-out infinite;
}