body {
            font-family: 'Inter', sans-serif;
        }


        @keyframes bounce-wave {
            0%, 60%, 100% {
                transform: translateY(0);
            }
            30% {
                transform: translateY(-20px);
            }
        }


        .loader-dot {
            background-color: #ef4444; /* The main red color from your website */
            animation: bounce-wave 1.4s infinite ease-in-out;
        }

        .loader-dot:nth-child(2) {
            animation-delay: -0.2s;
        }

        .loader-dot:nth-child(3) {
            animation-delay: -0.4s;
        }