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

        .bg-gold {
            background-color: #fbbf24;
        }

        .text-gold {
            color: #fbbf24;
        }

        .border-gold {
            border-color: #fbbf24;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeIn 0.6s ease-out forwards;
            opacity: 0;
        }

        @keyframes pulseSlow {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

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