@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@1,500;1,600;1,700&family=Playball&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- CUSTOM GLASSMORPHISM CONTAINERS --- */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-dark {
  background: rgba(8, 13, 28, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-blue {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(59, 130, 246, 0.12);
}

/* --- OPTIONAL SCROLLBAR RESET --- */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* --- BOOKPERSPECTIVE ANIMATION MESH DECORATION --- */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* --- BACKGROUND BACKDROP DEEP PULSES --- */
@keyframes pulseSlow {
  0%, 100% {
    transform: scale(1) translate(0px, 0px);
    opacity: 0.35;
  }
  33% {
    transform: scale(1.15) translate(30px, -50px);
    opacity: 0.45;
  }
  66% {
    transform: scale(0.9) translate(-20px, 40px);
    opacity: 0.3;
  }
}

.animate-pulse-slow {
  animation: pulseSlow 8s ease-in-out infinite;
}
