/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Background Effects */
.s-curve-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background-image: radial-gradient(circle at 25% 30%, #fde047, transparent 50%),
                      radial-gradient(circle at 75% 70%, #facc15, transparent 50%);
}

/* Animations */
.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
    }
}
