body {
  font-family: "Cairo", sans-serif;
}
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
.editorial-text-stroke {
  -webkit-text-stroke: 1px rgba(0, 17, 58, 0.2);
  color: transparent;
}
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}
.hover-pulse-gold:hover {
  animation: pulse-gold 1.5s infinite;
}
@keyframes pulse-slow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 20px 35px -5px rgba(37, 211, 102, 0.5);
  }
}
.animate-pulse-slow {
  animation: pulse-slow 2.5s infinite ease-in-out;
}
