@layer base {
  body {
    @apply bg-slate-50 text-slate-800 font-sans;
  }
}

.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.max-w-site {
  max-width: 1360px;
}

/* Page Loader: Aurora Core Design */
@keyframes aurora-spin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes aurora-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
    filter: blur(8px);
  }

  50% {
    transform: scale(1.5);
    opacity: 0.4;
    filter: blur(12px);
  }
}

@keyframes aurora-core {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  }

  50% {
    transform: scale(0.8);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
  }
}

.aurora-outer {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: aurora-spin 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.aurora-inner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-bottom: 2px solid #0ea5e9;
  border-radius: 50%;
  animation: aurora-spin 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite reverse;
}

.aurora-glow {
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  border-radius: 50%;
  animation: aurora-pulse 3s ease-in-out infinite;
}

.aurora-center {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #3b82f6;
  border-radius: 50%;
  z-index: 10;
  animation: aurora-core 2s ease-in-out infinite;
}