body {
  margin: 0;
  background-color: #0F0F1A;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.font-cinzel {
  font-family: 'Cinzel', serif;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.glow-text {
  text-shadow: 0 0 20px rgba(127, 90, 240, 0.8);
}

.animate-pulse-glow {
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { 
    opacity: 0.9;
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(127, 90, 240, 0.3));
  }
  50% { 
    opacity: 1;
    transform: scale(1.03);
    filter: drop-shadow(0 0 30px rgba(127, 90, 240, 0.7));
  }
}

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

/* SOLID STYLES */
input {
  background-color: #1A1A2E !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.05) !important;
}

input:focus {
  border-color: #7F5AF0 !important;
  box-shadow: 0 0 20px rgba(127, 90, 240, 0.3);
}

.shadow-2xl {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.9);
}

.shadow-inner {
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Animations */
.animate-in {
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
}

.fade-in {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Custom Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Bottom Nav Styling */
nav {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Category grid active state */
button:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}