body {
    background-color: #0f172a; /* bg-slate-900 */
    scroll-behavior: smooth;
  }
  
  .glassmorphism {
    background: rgba(15, 23, 42, 0.4); /* bg-slate-900 with opacity */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .font-sarabun {
    font-family: "Sarabun", sans-serif;
  }
  
  .font-inter {
    font-family: "Inter", sans-serif;
  }
  
  .animate-blob {
    animation: blob 7s infinite;
  }
  
  .animation-delay-2000 {
    animation-delay: 2s;
  }
  
  @keyframes blob {
    0% {
      transform: translate(0px, 0px) scale(1);
    }
    33% {
      transform: translate(30px, -50px) scale(1.1);
    }
    66% {
      transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
      transform: translate(0px, 0px) scale(1);
    }
  }